Skip to content

Instantly share code, notes, and snippets.

@nmathew
Last active June 28, 2022 14:28
Show Gist options
  • Select an option

  • Save nmathew/f93c72ed976490698c3f13850fc8b456 to your computer and use it in GitHub Desktop.

Select an option

Save nmathew/f93c72ed976490698c3f13850fc8b456 to your computer and use it in GitHub Desktop.
Nmstate ovs issue
boot configuration:
interfaces:
- name: bond0
state: up
type: bond
ipv4:
enabled: false
dhcp: false
link-aggregation:
mode: 802.3ad
slaves:
- enp175s0f0
- enp220s0f1
options:
miimon: "100"
- name: enp175s0f0
state: up
type: ethernet
mtu: 1500
- name: enp220s0f1
state: up
type: ethernet
mtu: 1500
- name: data_bridge
state: up
type: ovs-bridge
bridge:
port:
- name: bond0
- name: bm25c_ext_iface
vlan:
mode: access
tag: 4030
- name: traffic1_iface
vlan:
mode: access
tag: 4033
- name: traffic5_iface
vlan:
mode: access
tag: 4039
- name: nex_iface
vlan:
mode: access
tag: 4036
- name: nex_mgmt_iface
vlan:
mode: access
tag: 4037
options:
stp: false
rstp: false
- name: bm25c_ext_iface
state: up
type: ovs-interface
ipv4:
enabled: true
dhcp: false
address:
- ip: 10.221.150.99
prefix-length: 27
ipv6:
enabled: true
dhcp: false
autoconf: false
address:
- ip: fd00:eccd:b25c:a0a::4
prefix-length: 64
- name: traffic1_iface
state: up
type: ovs-interface
ipv4:
enabled: true
dhcp: false
address:
- ip: 16.16.1.2
prefix-length: 24
ipv6:
enabled: true
dhcp: false
autoconf: false
address:
- ip: 2001:db8:b25c:101::3
prefix-length: 64
- name: traffic5_iface
state: up
type: ovs-interface
ipv4:
enabled: true
dhcp: false
address:
- ip: 16.16.5.3
prefix-length: 24
ipv6:
enabled: true
dhcp: false
autoconf: false
address:
- ip: 2001:db8:b25c:105::4
prefix-length: 64
- name: nex_iface
state: up
type: ovs-interface
ipv4:
enabled: true
dhcp: false
address:
- ip: 17.17.1.2
prefix-length: 24
- name: nex_mgmt_iface
state: up
type: ovs-interface
ipv4:
enabled: true
dhcp: false
address:
- ip: 17.17.2.2
prefix-length: 24
routes:
config:
- table-id: 254
destination: 0.0.0.0/0
next-hop-interface: bm25c_ext_iface
next-hop-address: 10.221.150.97
- table-id: 200
destination: 0.0.0.0/0
next-hop-interface: traffic5_iface
next-hop-address: 16.16.5.129
- table-id: 254
destination: 16.16.5.0/24
next-hop-interface: traffic5_iface
next-hop-address: 16.16.5.129
route-rules:
config:
- ip-from: 5.4.3.0/24
route-table: 200
- ip-from: 5.4.3.0/24
ip-to: 192.168.0.0/24
priority: 29994
route-table: 254
# cat nmstate-cfg.yaml
routes:
config:
- table-id: 254
destination: 16.16.1.1/24
next-hop-interface: traffic1_iface
next-hop-address: 10.221.150.97
- table-id: 255
destination: 16.16.1.2/24
next-hop-interface: traffic5_iface
next-hop-address: 10.221.150.98
- table-id: 256
destination: 17.17.2.5/24
next-hop-interface: nex_mgmt_iface
next-hop-address: 10.221.150.99
- table-id: 257
destination: 17.17.1.4/24
next-hop-interface: nex_iface
next-hop-address: 10.221.150.100
Errors from nmstatectl set nmstate-cfg.yaml
# nmstatectl set nmstate-cfg.yaml
/usr/lib/python3.6/site-packages/nmstatectl/nmstatectl.py:337: UserWarning: Using 'set' is deprecated, use 'apply' instead.
warnings.warn("Using 'set' is deprecated, use 'apply' instead.")
2022-06-24 09:49:33,498 root DEBUG Nmstate version: 1.2.0
2022-06-24 09:49:33,499 root DEBUG Applying desire state: {'routes': {'config': [{'table-id': 254, 'destination': '16.16.1.1/24', 'next-hop-interface': 'traffic1_iface', 'next-hop-address': '10.221.150.97'}, {'table-id': 255, 'destination': '16.16.1.2/24', 'next-hop-interface': 'traffic5_iface', 'next-hop-address': '10.221.150.98'}, {'table-id': 256, 'destination': '17.17.2.5/24', 'next-hop-interface': 'nex_mgmt_iface', 'next-hop-address': '10.221.150.99'}, {'table-id': 257, 'destination': '17.17.1.4/24', 'next-hop-interface': 'nex_iface', 'next-hop-address': '10.221.150.100'}]}}
2022-06-24 09:49:33,783 root DEBUG NetworkManager version 1.34.0
2022-06-24 09:49:33,821 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:33,821 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:33,821 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:33,821 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:33,822 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:33,822 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:33,822 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:33,822 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:33,822 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:33,822 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:33,822 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:33,822 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:33,823 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:33,823 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:33,823 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:33,823 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:33,823 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:33,824 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:33,825 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:33,826 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:33,826 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:33,826 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:33,827 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:33,827 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:33,827 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:33,828 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:33,828 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:33,829 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:33,829 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:33,829 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:33,829 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:33,830 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:33,830 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:33,831 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:33,835 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:33,835 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:33,835 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:33,835 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:33,836 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:33,836 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:33,836 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:33,836 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:33,836 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:33,836 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:33,836 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:33,836 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:33,836 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:33,836 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:33,836 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:33,836 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:33,837 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:33,837 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:33,837 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:33,837 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:33,837 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:33,837 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:33,969 root DEBUG The current route {'table-id': 254, 'destination': '192.168.0.131/32', 'next-hop-interface': 'calida900316cc5', 'next-hop-address': '0.0.0.0', 'metric': 0} has been discarded due to Route {'table-id': 254, 'metric': 0, 'destination': '192.168.0.131/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'calida900316cc5'} next hop to down/absent interface
2022-06-24 09:49:33,969 root DEBUG The current route {'table-id': 254, 'destination': '192.168.0.132/32', 'next-hop-interface': 'cali926ab4dd007', 'next-hop-address': '0.0.0.0', 'metric': 0} has been discarded due to Route {'table-id': 254, 'metric': 0, 'destination': '192.168.0.132/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'cali926ab4dd007'} next hop to down/absent interface
2022-06-24 09:49:33,969 root DEBUG The current route {'table-id': 254, 'destination': '192.168.0.138/32', 'next-hop-interface': 'calif8b447fdf19', 'next-hop-address': '0.0.0.0', 'metric': 0} has been discarded due to Route {'table-id': 254, 'metric': 0, 'destination': '192.168.0.138/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'calif8b447fdf19'} next hop to down/absent interface
2022-06-24 09:49:33,969 root DEBUG The current route {'table-id': 254, 'destination': '192.168.0.139/32', 'next-hop-interface': 'calicc0a40c459a', 'next-hop-address': '0.0.0.0', 'metric': 0} has been discarded due to Route {'table-id': 254, 'metric': 0, 'destination': '192.168.0.139/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'calicc0a40c459a'} next hop to down/absent interface
2022-06-24 09:49:33,970 root DEBUG The current route {'table-id': 254, 'destination': '192.168.0.141/32', 'next-hop-interface': 'cali567a4fa3087', 'next-hop-address': '0.0.0.0', 'metric': 0} has been discarded due to Route {'table-id': 254, 'metric': 0, 'destination': '192.168.0.141/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'cali567a4fa3087'} next hop to down/absent interface
2022-06-24 09:49:33,970 root DEBUG The current route {'table-id': 254, 'destination': '192.168.0.151/32', 'next-hop-interface': 'calif53a9eb98a1', 'next-hop-address': '0.0.0.0', 'metric': 0} has been discarded due to Route {'table-id': 254, 'metric': 0, 'destination': '192.168.0.151/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'calif53a9eb98a1'} next hop to down/absent interface
2022-06-24 09:49:33,970 root DEBUG The current route {'table-id': 254, 'destination': '192.168.0.152/32', 'next-hop-interface': 'cali42864e06b62', 'next-hop-address': '0.0.0.0', 'metric': 0} has been discarded due to Route {'table-id': 254, 'metric': 0, 'destination': '192.168.0.152/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'cali42864e06b62'} next hop to down/absent interface
2022-06-24 09:49:33,970 root DEBUG The current route {'table-id': 254, 'destination': '192.168.0.153/32', 'next-hop-interface': 'calib96cc3302e7', 'next-hop-address': '0.0.0.0', 'metric': 0} has been discarded due to Route {'table-id': 254, 'metric': 0, 'destination': '192.168.0.153/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'calib96cc3302e7'} next hop to down/absent interface
2022-06-24 09:49:33,970 root DEBUG The current route {'table-id': 254, 'destination': '192.168.0.157/32', 'next-hop-interface': 'califc98bd11b92', 'next-hop-address': '0.0.0.0', 'metric': 0} has been discarded due to Route {'table-id': 254, 'metric': 0, 'destination': '192.168.0.157/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'califc98bd11b92'} next hop to down/absent interface
2022-06-24 09:49:33,970 root DEBUG The current route {'table-id': 254, 'destination': '192.168.0.158/32', 'next-hop-interface': 'calif23672b198d', 'next-hop-address': '0.0.0.0', 'metric': 0} has been discarded due to Route {'table-id': 254, 'metric': 0, 'destination': '192.168.0.158/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'calif23672b198d'} next hop to down/absent interface
2022-06-24 09:49:33,970 root DEBUG The current route {'table-id': 254, 'destination': '192.168.0.159/32', 'next-hop-interface': 'cali78a3d85bbf6', 'next-hop-address': '0.0.0.0', 'metric': 0} has been discarded due to Route {'table-id': 254, 'metric': 0, 'destination': '192.168.0.159/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'cali78a3d85bbf6'} next hop to down/absent interface
2022-06-24 09:49:33,970 root DEBUG The current route {'table-id': 254, 'destination': '192.168.0.161/32', 'next-hop-interface': 'cali2f5aa77a8f0', 'next-hop-address': '0.0.0.0', 'metric': 0} has been discarded due to Route {'table-id': 254, 'metric': 0, 'destination': '192.168.0.161/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'cali2f5aa77a8f0'} next hop to down/absent interface
2022-06-24 09:49:33,970 root DEBUG The current route {'table-id': 254, 'destination': '192.168.0.162/32', 'next-hop-interface': 'calif82fefdcfb0', 'next-hop-address': '0.0.0.0', 'metric': 0} has been discarded due to Route {'table-id': 254, 'metric': 0, 'destination': '192.168.0.162/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'calif82fefdcfb0'} next hop to down/absent interface
2022-06-24 09:49:33,971 root DEBUG The current route {'table-id': 254, 'destination': '192.168.0.166/32', 'next-hop-interface': 'cali8c2b09b676c', 'next-hop-address': '0.0.0.0', 'metric': 0} has been discarded due to Route {'table-id': 254, 'metric': 0, 'destination': '192.168.0.166/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'cali8c2b09b676c'} next hop to down/absent interface
2022-06-24 09:49:33,971 root DEBUG The current route {'table-id': 254, 'destination': '192.168.0.187/32', 'next-hop-interface': 'calia99a1bb8ee9', 'next-hop-address': '0.0.0.0', 'metric': 0} has been discarded due to Route {'table-id': 254, 'metric': 0, 'destination': '192.168.0.187/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'calia99a1bb8ee9'} next hop to down/absent interface
2022-06-24 09:49:33,978 root DEBUG Async action: Create checkpoint started
2022-06-24 09:49:33,985 root DEBUG Checkpoint /org/freedesktop/NetworkManager/Checkpoint/2 created for all devices
2022-06-24 09:49:33,985 root DEBUG Async action: Create checkpoint finished
2022-06-24 09:49:34,021 root DEBUG Nispor: current network state {'ifaces': {'lo': {'name': 'lo', 'iface_type': 'loopback', 'state': 'unknown', 'mtu': 65536, 'flags': ['loopback', 'lower_up', 'running', 'up'], 'ipv4': {'addresses': [{'address': '127.0.0.1', 'prefix_len': 8, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'ipv6': {'addresses': [{'address': '::1', 'prefix_len': 128, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': '00:00:00:00:00:00', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'highdma': True, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': True, 'macsec-hw-offload': False, 'netns-local': True, 'rx-all': False, 'rx-checksum': True, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-hw-parse': False, 'rx-vlan-stag-filter': False, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ip-generic': True, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-checksum-sctp': True, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gre-csum-segmentation': False, 'tx-gre-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-ipxip4-segmentation': False, 'tx-ipxip6-segmentation': False, 'tx-lockless': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'tx-udp_tnl-csum-segmentation': False, 'tx-udp_tnl-segmentation': False, 'tx-vlan-hw-insert': False, 'tx-vlan-stag-hw-insert': False, 'vlan-challenged': True}, 'changeable': {'rx-gro': True, 'tx-generic-segmentation': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True}}}}, 'enp175s10f3': {'name': 'enp175s10f3', 'iface_type': 'ethernet', 'state': 'down', 'mtu': 1500, 'flags': ['broadcast', 'multicast'], 'mac_address': '8a:5c:62:d6:b2:bc', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': True, 'rx-vlan-stag-filter': False, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ip-generic': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-robust': False, 'tx-lockless': False, 'tx-scatter-gather-fraglist': False, 'tx-sctp-segmentation': False, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'tx-vlan-stag-hw-insert': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'hw-tc-offload': True, 'rx-checksum': True, 'rx-gro': True, 'rx-hashing': True, 'rx-vlan-hw-parse': True, 'tx-checksum-ipv4': True, 'tx-checksum-ipv6': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-gso-partial': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': False, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True}}, 'coalesce': {'rx_max_frames': 256, 'rx_max_frames_irq': 0, 'rx_usecs': 50, 'tx_max_frames': 256, 'tx_max_frames_irq': 0, 'tx_usecs': 50, 'use_adaptive_rx': True, 'use_adaptive_tx': True}, 'ring': {'rx': 512, 'rx_max': 4096, 'tx': 512, 'tx_max': 4096}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}}, 'enp175s0f1': {'name': 'enp175s0f1', 'iface_type': 'ethernet', 'state': 'up', 'mtu': 9000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'mac_address': '3c:fd:fe:d4:0e:2d', 'permanent_mac_address': '3c:fd:fe:d4:0e:2d', 'ethtool': {'pause': {'rx': False, 'tx': False, 'auto_negotiate': False}, 'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-lro': False, 'rx-vlan-filter': True, 'rx-vlan-stag-filter': True, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ip-generic': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-robust': False, 'tx-lockless': False, 'tx-scatter-gather-fraglist': False, 'tx-sctp-segmentation': False, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'tx-vlan-stag-hw-insert': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'hw-tc-offload': True, 'rx-checksum': True, 'rx-gro': False, 'rx-hashing': True, 'rx-ntuple-filter': True, 'rx-udp_tunnel-port-offload': True, 'rx-vlan-hw-parse': True, 'tx-checksum-ipv4': True, 'tx-checksum-ipv6': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-gso-partial': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': False, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True}}, 'coalesce': {'pkt_rate_high': 0, 'pkt_rate_low': 0, 'rate_sample_interval': 0, 'rx_max_frames': 0, 'rx_max_frames_high': 0, 'rx_max_frames_irq': 256, 'rx_max_frames_low': 0, 'rx_usecs': 50, 'rx_usecs_high': 0, 'rx_usecs_irq': 0, 'rx_usecs_low': 0, 'stats_block_usecs': 0, 'tx_max_frames': 0, 'tx_max_frames_high': 0, 'tx_max_frames_irq': 256, 'tx_max_frames_low': 0, 'tx_usecs': 50, 'tx_usecs_high': 0, 'tx_usecs_irq': 0, 'tx_usecs_low': 0, 'use_adaptive_rx': True, 'use_adaptive_tx': True}, 'ring': {'rx': 512, 'rx_max': 4096, 'tx': 512, 'tx_max': 4096}, 'link_mode': {'auto_negotiate': False, 'ours': ['FIBRE', '10000baseT/Full', 'Pause', 'Asym_Pause', 'None', 'RS', 'BASER'], 'speed': 10000, 'duplex': 'full'}}, 'sriov': {'vfs': [{'iface_name': 'enp175s10', 'id': 0, 'mac': '00:00:00:00:00:00', 'broadcast': 'ff:ff:ff:ff:ff:ff', 'vlan_id': 0, 'qos': 0, 'tx_rate': 0, 'spoof_check': True, 'link_state': 'auto', 'min_tx_rate': 0, 'max_tx_rate': 0, 'query_rss': False, 'state': {'rx_packets': 0, 'tx_packets': 0, 'rx_bytes': 0, 'tx_bytes': 0, 'broadcast': 0, 'multicast': 0, 'rx_dropped': 0, 'tx_dropped': 0}, 'trust': False}, {'iface_name': 'enp175s10f1', 'id': 1, 'mac': '00:00:00:00:00:00', 'broadcast': 'ff:ff:ff:ff:ff:ff', 'vlan_id': 0, 'qos': 0, 'tx_rate': 0, 'spoof_check': True, 'link_state': 'auto', 'min_tx_rate': 0, 'max_tx_rate': 0, 'query_rss': False, 'state': {'rx_packets': 0, 'tx_packets': 0, 'rx_bytes': 0, 'tx_bytes': 0, 'broadcast': 0, 'multicast': 0, 'rx_dropped': 0, 'tx_dropped': 0}, 'trust': False}, {'iface_name': 'enp175s10f2', 'id': 2, 'mac': '00:00:00:00:00:00', 'broadcast': 'ff:ff:ff:ff:ff:ff', 'vlan_id': 0, 'qos': 0, 'tx_rate': 0, 'spoof_check': True, 'link_state': 'auto', 'min_tx_rate': 0, 'max_tx_rate': 0, 'query_rss': False, 'state': {'rx_packets': 0, 'tx_packets': 0, 'rx_bytes': 0, 'tx_bytes': 0, 'broadcast': 0, 'multicast': 0, 'rx_dropped': 0, 'tx_dropped': 0}, 'trust': False}, {'iface_name': 'enp175s10f3', 'id': 3, 'mac': '00:00:00:00:00:00', 'broadcast': 'ff:ff:ff:ff:ff:ff', 'vlan_id': 0, 'qos': 0, 'tx_rate': 0, 'spoof_check': True, 'link_state': 'auto', 'min_tx_rate': 0, 'max_tx_rate': 0, 'query_rss': False, 'state': {'rx_packets': 0, 'tx_packets': 0, 'rx_bytes': 0, 'tx_bytes': 0, 'broadcast': 0, 'multicast': 0, 'rx_dropped': 0, 'tx_dropped': 0}, 'trust': False}]}}, 'enp175s10': {'name': 'enp175s10', 'iface_type': 'ethernet', 'state': 'down', 'mtu': 1500, 'flags': ['broadcast', 'multicast'], 'mac_address': '62:1a:3b:fa:27:52', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': True, 'rx-vlan-stag-filter': False, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ip-generic': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-robust': False, 'tx-lockless': False, 'tx-scatter-gather-fraglist': False, 'tx-sctp-segmentation': False, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'tx-vlan-stag-hw-insert': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'hw-tc-offload': True, 'rx-checksum': True, 'rx-gro': True, 'rx-hashing': True, 'rx-vlan-hw-parse': True, 'tx-checksum-ipv4': True, 'tx-checksum-ipv6': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-gso-partial': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': False, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True}}, 'coalesce': {'rx_max_frames': 256, 'rx_max_frames_irq': 0, 'rx_usecs': 50, 'tx_max_frames': 256, 'tx_max_frames_irq': 0, 'tx_usecs': 50, 'use_adaptive_rx': True, 'use_adaptive_tx': True}, 'ring': {'rx': 512, 'rx_max': 4096, 'tx': 512, 'tx_max': 4096}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}}, 'nodelocaldns': {'name': 'nodelocaldns', 'iface_type': 'dummy', 'state': 'down', 'mtu': 1500, 'flags': ['broadcast', 'no_arp'], 'ipv4': {'addresses': [{'address': '169.254.20.10', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'f2:20:00:66:a8:d5', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-checksum': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-hw-parse': False, 'rx-vlan-stag-filter': False, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-checksum-sctp': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-sctp-segmentation': False, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'tx-vlan-hw-insert': False, 'tx-vlan-stag-hw-insert': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-gro': True, 'tx-checksum-ip-generic': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True}}}}, 'calif23672b198d': {'name': 'calif23672b198d', 'iface_type': 'veth', 'state': 'up', 'mtu': 2000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv6': {'addresses': [{'address': 'fe80::ecee:eeff:feee:eeee', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'ee:ee:ee:ee:ee:ee', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-stag-filter': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-checksum': True, 'rx-gro': True, 'rx-vlan-hw-parse': True, 'rx-vlan-stag-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}, 'veth': {'peer': 'enp61s0f1'}}, 'cali8c2b09b676c': {'name': 'cali8c2b09b676c', 'iface_type': 'veth', 'state': 'up', 'mtu': 2000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv6': {'addresses': [{'address': 'fe80::ecee:eeff:feee:eeee', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'ee:ee:ee:ee:ee:ee', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-stag-filter': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-checksum': True, 'rx-gro': True, 'rx-vlan-hw-parse': True, 'rx-vlan-stag-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}, 'veth': {'peer': 'enp61s0f1'}}, 'cali926ab4dd007': {'name': 'cali926ab4dd007', 'iface_type': 'veth', 'state': 'up', 'mtu': 2000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv6': {'addresses': [{'address': 'fe80::ecee:eeff:feee:eeee', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'ee:ee:ee:ee:ee:ee', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-stag-filter': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-checksum': True, 'rx-gro': True, 'rx-vlan-hw-parse': True, 'rx-vlan-stag-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}, 'veth': {'peer': 'enp61s0f1'}}, 'calia99a1bb8ee9': {'name': 'calia99a1bb8ee9', 'iface_type': 'veth', 'state': 'up', 'mtu': 2000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv6': {'addresses': [{'address': 'fe80::ecee:eeff:feee:eeee', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'ee:ee:ee:ee:ee:ee', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-stag-filter': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-checksum': True, 'rx-gro': True, 'rx-vlan-hw-parse': True, 'rx-vlan-stag-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}, 'veth': {'peer': 'enp61s0f1'}}, 'enp61s0f0': {'name': 'enp61s0f0', 'iface_type': 'ethernet', 'state': 'down', 'mtu': 1500, 'flags': ['broadcast', 'multicast'], 'mac_address': '98:a4:04:22:2d:cd', 'permanent_mac_address': '98:a4:04:22:2d:cd', 'ethtool': {'pause': {'rx': False, 'tx': False, 'auto_negotiate': True}, 'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-lro': False, 'rx-vlan-filter': True, 'rx-vlan-stag-filter': True, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ip-generic': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-robust': False, 'tx-lockless': False, 'tx-scatter-gather-fraglist': False, 'tx-sctp-segmentation': False, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'tx-vlan-stag-hw-insert': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'hw-tc-offload': True, 'rx-checksum': True, 'rx-gro': False, 'rx-hashing': True, 'rx-ntuple-filter': True, 'rx-udp_tunnel-port-offload': True, 'rx-vlan-hw-parse': True, 'tx-checksum-ipv4': True, 'tx-checksum-ipv6': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-gso-partial': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': False, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True}}, 'coalesce': {'pkt_rate_high': 0, 'pkt_rate_low': 0, 'rate_sample_interval': 0, 'rx_max_frames': 0, 'rx_max_frames_high': 0, 'rx_max_frames_irq': 256, 'rx_max_frames_low': 0, 'rx_usecs': 50, 'rx_usecs_high': 0, 'rx_usecs_irq': 0, 'rx_usecs_low': 0, 'stats_block_usecs': 0, 'tx_max_frames': 0, 'tx_max_frames_high': 0, 'tx_max_frames_irq': 256, 'tx_max_frames_low': 0, 'tx_usecs': 50, 'tx_usecs_high': 0, 'tx_usecs_irq': 0, 'tx_usecs_low': 0, 'use_adaptive_rx': True, 'use_adaptive_tx': True}, 'ring': {'rx': 512, 'rx_max': 4096, 'tx': 512, 'tx_max': 4096}, 'link_mode': {'auto_negotiate': True, 'ours': ['1000baseT/Full', 'Autoneg', 'TP', 'Pause', 'Asym_Pause'], 'speed': 1000, 'duplex': 'full'}}, 'sriov': {'vfs': []}}, 'traffic1_iface': {'name': 'traffic1_iface', 'iface_type': 'openv_switch', 'state': 'unknown', 'mtu': 1500, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv4': {'addresses': [{'address': '16.16.1.2', 'prefix_len': 24, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'ipv6': {'addresses': [{'address': '2001:db8:b25c:101::3', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': 'fe80::3ce7:c6ff:fe80:b397', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': '3e:e7:c6:80:b3:97', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-checksum': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-hw-parse': False, 'rx-vlan-stag-filter': False, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-checksum-sctp': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-gro': True, 'tx-checksum-ip-generic': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}}}, 'traffic5_iface': {'name': 'traffic5_iface', 'iface_type': 'openv_switch', 'state': 'unknown', 'mtu': 1500, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv4': {'addresses': [{'address': '16.16.5.3', 'prefix_len': 24, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'ipv6': {'addresses': [{'address': '2001:db8:b25c:105::4', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': 'fe80::5cc6:f1ff:fe6c:916a', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': '5e:c6:f1:6c:91:6a', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-checksum': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-hw-parse': False, 'rx-vlan-stag-filter': False, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-checksum-sctp': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-gro': True, 'tx-checksum-ip-generic': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}}}, 'bm25c_ext_iface': {'name': 'bm25c_ext_iface', 'iface_type': 'openv_switch', 'state': 'unknown', 'mtu': 1500, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv4': {'addresses': [{'address': '10.221.150.99', 'prefix_len': 27, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'ipv6': {'addresses': [{'address': 'fd00:eccd:b25c:a0a::4', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': 'fe80::68:ffff:fe01:de78', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': '02:68:ff:01:de:78', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-checksum': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-hw-parse': False, 'rx-vlan-stag-filter': False, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-checksum-sctp': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-gro': True, 'tx-checksum-ip-generic': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}}}, 'calif8b447fdf19': {'name': 'calif8b447fdf19', 'iface_type': 'veth', 'state': 'up', 'mtu': 2000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv6': {'addresses': [{'address': 'fe80::ecee:eeff:feee:eeee', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'ee:ee:ee:ee:ee:ee', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-stag-filter': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-checksum': True, 'rx-gro': True, 'rx-vlan-hw-parse': True, 'rx-vlan-stag-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}, 'veth': {'peer': 'enp61s0f1'}}, 'calib96cc3302e7': {'name': 'calib96cc3302e7', 'iface_type': 'veth', 'state': 'up', 'mtu': 2000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv6': {'addresses': [{'address': 'fe80::ecee:eeff:feee:eeee', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'ee:ee:ee:ee:ee:ee', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-stag-filter': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-checksum': True, 'rx-gro': True, 'rx-vlan-hw-parse': True, 'rx-vlan-stag-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}, 'veth': {'peer': 'enp61s0f1'}}, 'nex_mgmt_iface': {'name': 'nex_mgmt_iface', 'iface_type': 'openv_switch', 'state': 'unknown', 'mtu': 1500, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv4': {'addresses': [{'address': '17.17.2.2', 'prefix_len': 24, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': '7a:33:07:62:79:5c', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-checksum': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-hw-parse': False, 'rx-vlan-stag-filter': False, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-checksum-sctp': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-gro': True, 'tx-checksum-ip-generic': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}}}, 'cali567a4fa3087': {'name': 'cali567a4fa3087', 'iface_type': 'veth', 'state': 'up', 'mtu': 2000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv6': {'addresses': [{'address': 'fe80::ecee:eeff:feee:eeee', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'ee:ee:ee:ee:ee:ee', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-stag-filter': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-checksum': True, 'rx-gro': True, 'rx-vlan-hw-parse': True, 'rx-vlan-stag-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}, 'veth': {'peer': 'enp61s0f1'}}, 'docker0': {'name': 'docker0', 'iface_type': 'bridge', 'state': 'down', 'mtu': 1500, 'flags': ['broadcast', 'multicast', 'up'], 'ipv4': {'addresses': [{'address': '169.254.0.1', 'prefix_len': 16, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': '02:42:a7:5c:8d:09', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': True, 'rx-all': False, 'rx-checksum': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-hw-parse': False, 'rx-vlan-stag-filter': False, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-checksum-sctp': False, 'tx-lockless': True, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-gro': True, 'tx-checksum-ip-generic': True, 'tx-esp-segmentation': True, 'tx-fcoe-segmentation': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-gso-list': True, 'tx-gso-partial': True, 'tx-gso-robust': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-tunnel-remcsum-segmentation': True, 'tx-udp-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 0, 'duplex': 'unknown'}}, 'bridge': {'ports': [], 'ageing_time': 30000, 'bridge_id': '8000.0242a75c8d09', 'group_fwd_mask': 0, 'root_id': '8000.0242a75c8d09', 'root_port': 0, 'root_path_cost': 0, 'topology_change': False, 'topology_change_detected': False, 'tcn_timer': 0, 'topology_change_timer': 0, 'gc_timer': 26986, 'group_addr': '01:80:c2:00:00:00', 'nf_call_iptables': False, 'nf_call_ip6tables': False, 'nf_call_arptables': False, 'vlan_filtering': False, 'vlan_protocol': '802.1q', 'default_pvid': 1, 'vlan_stats_enabled': False, 'vlan_stats_per_host': False, 'stp_state': 'disabled', 'hello_time': 200, 'hello_timer': 0, 'forward_delay': 1500, 'max_age': 2000, 'priority': 32768, 'multi_bool_opt': 4294967296, 'multicast_router': 'temp_query', 'multicast_snooping': True, 'multicast_query_use_ifaddr': False, 'multicast_querier': False, 'multicast_stats_enabled': False, 'multicast_hash_elasticity': 16, 'multicast_hash_max': 4096, 'multicast_last_member_count': 2, 'multicast_last_member_interval': 100, 'multicast_startup_query_count': 2, 'multicast_membership_interval': 26000, 'multicast_querier_interval': 25500, 'multicast_query_interval': 12500, 'multicast_query_response_interval': 1000, 'multicast_startup_query_interval': 3124, 'multicast_igmp_version': 2, 'multicast_mld_version': 1}}, 'enp220s0f0': {'name': 'enp220s0f0', 'iface_type': 'ethernet', 'state': 'down', 'mtu': 1500, 'flags': ['broadcast', 'multicast'], 'mac_address': '3c:fd:fe:d4:0d:04', 'permanent_mac_address': '3c:fd:fe:d4:0d:04', 'ethtool': {'pause': {'rx': False, 'tx': False, 'auto_negotiate': False}, 'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-lro': False, 'rx-vlan-filter': True, 'rx-vlan-stag-filter': True, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ip-generic': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-robust': False, 'tx-lockless': False, 'tx-scatter-gather-fraglist': False, 'tx-sctp-segmentation': False, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'tx-vlan-stag-hw-insert': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'hw-tc-offload': True, 'rx-checksum': True, 'rx-gro': False, 'rx-hashing': True, 'rx-ntuple-filter': True, 'rx-udp_tunnel-port-offload': True, 'rx-vlan-hw-parse': True, 'tx-checksum-ipv4': True, 'tx-checksum-ipv6': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-gso-partial': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': False, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True}}, 'coalesce': {'pkt_rate_high': 0, 'pkt_rate_low': 0, 'rate_sample_interval': 0, 'rx_max_frames': 0, 'rx_max_frames_high': 0, 'rx_max_frames_irq': 256, 'rx_max_frames_low': 0, 'rx_usecs': 50, 'rx_usecs_high': 0, 'rx_usecs_irq': 0, 'rx_usecs_low': 0, 'stats_block_usecs': 0, 'tx_max_frames': 0, 'tx_max_frames_high': 0, 'tx_max_frames_irq': 256, 'tx_max_frames_low': 0, 'tx_usecs': 50, 'tx_usecs_high': 0, 'tx_usecs_irq': 0, 'tx_usecs_low': 0, 'use_adaptive_rx': True, 'use_adaptive_tx': True}, 'ring': {'rx': 512, 'rx_max': 4096, 'tx': 512, 'tx_max': 4096}, 'link_mode': {'auto_negotiate': False, 'ours': ['FIBRE', '10000baseT/Full', 'Pause', 'Asym_Pause', 'None', 'RS', 'BASER'], 'speed': 10000, 'duplex': 'full'}}, 'sriov': {'vfs': []}}, 'enp220s0f1': {'name': 'enp220s0f1', 'iface_type': 'ethernet', 'state': 'up', 'mtu': 1500, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'subordinate', 'up'], 'mac_address': '3c:fd:fe:d4:0e:2c', 'permanent_mac_address': '3c:fd:fe:d4:0d:05', 'controller': 'bond0', 'controller_type': 'bond', 'ethtool': {'pause': {'rx': False, 'tx': False, 'auto_negotiate': False}, 'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-lro': False, 'rx-vlan-filter': True, 'rx-vlan-stag-filter': True, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ip-generic': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-robust': False, 'tx-lockless': False, 'tx-scatter-gather-fraglist': False, 'tx-sctp-segmentation': False, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'tx-vlan-stag-hw-insert': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'hw-tc-offload': True, 'rx-checksum': True, 'rx-gro': False, 'rx-hashing': True, 'rx-ntuple-filter': True, 'rx-udp_tunnel-port-offload': True, 'rx-vlan-hw-parse': True, 'tx-checksum-ipv4': True, 'tx-checksum-ipv6': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-gso-partial': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': False, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True}}, 'coalesce': {'pkt_rate_high': 0, 'pkt_rate_low': 0, 'rate_sample_interval': 0, 'rx_max_frames': 0, 'rx_max_frames_high': 0, 'rx_max_frames_irq': 256, 'rx_max_frames_low': 0, 'rx_usecs': 50, 'rx_usecs_high': 0, 'rx_usecs_irq': 0, 'rx_usecs_low': 0, 'stats_block_usecs': 0, 'tx_max_frames': 0, 'tx_max_frames_high': 0, 'tx_max_frames_irq': 256, 'tx_max_frames_low': 0, 'tx_usecs': 50, 'tx_usecs_high': 0, 'tx_usecs_irq': 0, 'tx_usecs_low': 0, 'use_adaptive_rx': True, 'use_adaptive_tx': True}, 'ring': {'rx': 512, 'rx_max': 4096, 'tx': 512, 'tx_max': 4096}, 'link_mode': {'auto_negotiate': False, 'ours': ['FIBRE', '10000baseT/Full', 'Pause', 'Asym_Pause', 'None', 'RS', 'BASER'], 'speed': 10000, 'duplex': 'full'}}, 'bond_subordinate': {'subordinate_state': 'active', 'mii_status': 'link_up', 'link_failure_count': 0, 'perm_hwaddr': '3c:fd:fe:d4:0d:05', 'queue_id': 0, 'ad_aggregator_id': 3, 'ad_actor_oper_port_state': 61, 'ad_partner_oper_port_state': 63}, 'sriov': {'vfs': []}}, 'enp175s0f0': {'name': 'enp175s0f0', 'iface_type': 'ethernet', 'state': 'up', 'mtu': 1500, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'subordinate', 'up'], 'mac_address': '3c:fd:fe:d4:0e:2c', 'permanent_mac_address': '3c:fd:fe:d4:0e:2c', 'controller': 'bond0', 'controller_type': 'bond', 'ethtool': {'pause': {'rx': False, 'tx': False, 'auto_negotiate': False}, 'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-lro': False, 'rx-vlan-filter': True, 'rx-vlan-stag-filter': True, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ip-generic': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-robust': False, 'tx-lockless': False, 'tx-scatter-gather-fraglist': False, 'tx-sctp-segmentation': False, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'tx-vlan-stag-hw-insert': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'hw-tc-offload': True, 'rx-checksum': True, 'rx-gro': False, 'rx-hashing': True, 'rx-ntuple-filter': True, 'rx-udp_tunnel-port-offload': True, 'rx-vlan-hw-parse': True, 'tx-checksum-ipv4': True, 'tx-checksum-ipv6': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-gso-partial': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': False, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True}}, 'coalesce': {'pkt_rate_high': 0, 'pkt_rate_low': 0, 'rate_sample_interval': 0, 'rx_max_frames': 0, 'rx_max_frames_high': 0, 'rx_max_frames_irq': 256, 'rx_max_frames_low': 0, 'rx_usecs': 50, 'rx_usecs_high': 0, 'rx_usecs_irq': 0, 'rx_usecs_low': 0, 'stats_block_usecs': 0, 'tx_max_frames': 0, 'tx_max_frames_high': 0, 'tx_max_frames_irq': 256, 'tx_max_frames_low': 0, 'tx_usecs': 50, 'tx_usecs_high': 0, 'tx_usecs_irq': 0, 'tx_usecs_low': 0, 'use_adaptive_rx': True, 'use_adaptive_tx': True}, 'ring': {'rx': 512, 'rx_max': 4096, 'tx': 512, 'tx_max': 4096}, 'link_mode': {'auto_negotiate': False, 'ours': ['FIBRE', '10000baseT/Full', 'Pause', 'Asym_Pause', 'None', 'RS', 'BASER'], 'speed': 10000, 'duplex': 'full'}}, 'bond_subordinate': {'subordinate_state': 'active', 'mii_status': 'link_up', 'link_failure_count': 0, 'perm_hwaddr': '3c:fd:fe:d4:0e:2c', 'queue_id': 0, 'ad_aggregator_id': 3, 'ad_actor_oper_port_state': 61, 'ad_partner_oper_port_state': 63}, 'sriov': {'vfs': []}}, 'califc98bd11b92': {'name': 'califc98bd11b92', 'iface_type': 'veth', 'state': 'up', 'mtu': 2000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv6': {'addresses': [{'address': 'fe80::ecee:eeff:feee:eeee', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'ee:ee:ee:ee:ee:ee', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-stag-filter': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-checksum': True, 'rx-gro': True, 'rx-vlan-hw-parse': True, 'rx-vlan-stag-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}, 'veth': {'peer': 'enp61s0f1'}}, 'nex_iface': {'name': 'nex_iface', 'iface_type': 'openv_switch', 'state': 'unknown', 'mtu': 1500, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv4': {'addresses': [{'address': '17.17.1.2', 'prefix_len': 24, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': '46:cf:2c:81:24:1f', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-checksum': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-hw-parse': False, 'rx-vlan-stag-filter': False, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-checksum-sctp': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-gro': True, 'tx-checksum-ip-generic': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}}}, 'bond0': {'name': 'bond0', 'iface_type': 'bond', 'state': 'up', 'mtu': 1500, 'flags': ['broadcast', 'lower_up', 'controller', 'multicast', 'running', 'up'], 'mac_address': '3c:fd:fe:d4:0e:2c', 'controller': 'ovs-system', 'controller_type': 'openv_switch', 'ethtool': {'features': {'fixed': {'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': True, 'rx-all': False, 'rx-checksum': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-stag-filter': False, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-checksum-sctp': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-sctp-segmentation': False, 'tx-tunnel-remcsum-segmentation': False, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True, 'vlan-challenged': False}, 'changeable': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'highdma': True, 'rx-gro': True, 'rx-lro': False, 'rx-vlan-filter': True, 'rx-vlan-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-esp-segmentation': False, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': False, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 20000, 'duplex': 'full'}}, 'bond': {'subordinates': ['enp175s0f0', 'enp220s0f1'], 'mode': '802.3ad', 'miimon': 100, 'updelay': 0, 'downdelay': 0, 'use_carrier': True, 'arp_interval': 0, 'arp_all_targets': 'any', 'arp_validate': 'none', 'xmit_hash_policy': 'layer2', 'all_subordinates_active': 'dropped', 'min_links': 0, 'lacp_rate': 'slow', 'ad_select': 'stable', 'ad_actor_sys_prio': 65535, 'ad_user_port_key': 0, 'ad_actor_system': '00:00:00:00:00:00', 'peer_notif_delay': 0}}, 'enp175s10f1': {'name': 'enp175s10f1', 'iface_type': 'ethernet', 'state': 'down', 'mtu': 1500, 'flags': ['broadcast', 'multicast'], 'mac_address': '16:a0:9e:8f:10:86', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': True, 'rx-vlan-stag-filter': False, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ip-generic': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-robust': False, 'tx-lockless': False, 'tx-scatter-gather-fraglist': False, 'tx-sctp-segmentation': False, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'tx-vlan-stag-hw-insert': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'hw-tc-offload': True, 'rx-checksum': True, 'rx-gro': True, 'rx-hashing': True, 'rx-vlan-hw-parse': True, 'tx-checksum-ipv4': True, 'tx-checksum-ipv6': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-gso-partial': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': False, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True}}, 'coalesce': {'rx_max_frames': 256, 'rx_max_frames_irq': 0, 'rx_usecs': 50, 'tx_max_frames': 256, 'tx_max_frames_irq': 0, 'tx_usecs': 50, 'use_adaptive_rx': True, 'use_adaptive_tx': True}, 'ring': {'rx': 512, 'rx_max': 4096, 'tx': 512, 'tx_max': 4096}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}}, 'calida900316cc5': {'name': 'calida900316cc5', 'iface_type': 'veth', 'state': 'up', 'mtu': 2000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv6': {'addresses': [{'address': 'fe80::ecee:eeff:feee:eeee', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'ee:ee:ee:ee:ee:ee', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-stag-filter': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-checksum': True, 'rx-gro': True, 'rx-vlan-hw-parse': True, 'rx-vlan-stag-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}, 'veth': {'peer': 'enp61s0f1'}}, 'cali42864e06b62': {'name': 'cali42864e06b62', 'iface_type': 'veth', 'state': 'up', 'mtu': 2000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv6': {'addresses': [{'address': 'fe80::ecee:eeff:feee:eeee', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'ee:ee:ee:ee:ee:ee', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-stag-filter': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-checksum': True, 'rx-gro': True, 'rx-vlan-hw-parse': True, 'rx-vlan-stag-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}, 'veth': {'peer': 'enp61s0f1'}}, 'ovs-system': {'name': 'ovs-system', 'iface_type': 'openv_switch', 'state': 'down', 'mtu': 1500, 'flags': ['broadcast', 'multicast'], 'mac_address': '22:68:68:e6:11:9a', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': True, 'rx-all': False, 'rx-checksum': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-hw-parse': False, 'rx-vlan-stag-filter': False, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-checksum-sctp': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-gro': True, 'tx-checksum-ip-generic': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}}}, 'kube-ipvs0': {'name': 'kube-ipvs0', 'iface_type': 'dummy', 'state': 'down', 'mtu': 1500, 'flags': ['broadcast', 'no_arp'], 'ipv4': {'addresses': [{'address': '10.105.9.28', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.100.225.132', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.96.0.10', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.98.15.33', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.100.216.137', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.99.221.124', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.96.0.1', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.99.103.53', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.109.140.77', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.99.200.238', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.98.246.21', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.107.199.206', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.98.87.98', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.100.114.37', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.104.224.64', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.96.255.200', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.108.74.19', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.98.191.114', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.107.12.165', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.102.13.225', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '4.3.2.0', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.98.72.206', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.110.164.89', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.100.161.125', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.97.125.77', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.110.55.11', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.108.227.100', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.96.185.223', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.102.118.208', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.98.250.87', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.101.27.252', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.107.128.52', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.101.193.47', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.103.27.218', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.102.108.39', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.103.188.0', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.111.204.221', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.111.152.192', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}, {'address': '10.100.170.223', 'prefix_len': 32, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': '86:be:91:2c:a0:28', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-checksum': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-hw-parse': False, 'rx-vlan-stag-filter': False, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-checksum-sctp': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-sctp-segmentation': False, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'tx-vlan-hw-insert': False, 'tx-vlan-stag-hw-insert': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-gro': True, 'tx-checksum-ip-generic': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True}}}}, 'cali2f5aa77a8f0': {'name': 'cali2f5aa77a8f0', 'iface_type': 'veth', 'state': 'up', 'mtu': 2000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv6': {'addresses': [{'address': 'fe80::ecee:eeff:feee:eeee', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'ee:ee:ee:ee:ee:ee', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-stag-filter': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-checksum': True, 'rx-gro': True, 'rx-vlan-hw-parse': True, 'rx-vlan-stag-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}, 'veth': {'peer': 'enp61s0f1'}}, 'calicc0a40c459a': {'name': 'calicc0a40c459a', 'iface_type': 'veth', 'state': 'up', 'mtu': 2000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv6': {'addresses': [{'address': 'fe80::ecee:eeff:feee:eeee', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'ee:ee:ee:ee:ee:ee', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-stag-filter': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-checksum': True, 'rx-gro': True, 'rx-vlan-hw-parse': True, 'rx-vlan-stag-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}, 'veth': {'peer': 'enp61s0f1'}}, 'enp61s0f1': {'name': 'enp61s0f1', 'iface_type': 'ethernet', 'state': 'down', 'mtu': 1500, 'flags': ['broadcast', 'multicast'], 'mac_address': '98:a4:04:22:2d:ce', 'permanent_mac_address': '98:a4:04:22:2d:ce', 'ethtool': {'pause': {'rx': False, 'tx': False, 'auto_negotiate': True}, 'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-lro': False, 'rx-vlan-filter': True, 'rx-vlan-stag-filter': True, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ip-generic': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-robust': False, 'tx-lockless': False, 'tx-scatter-gather-fraglist': False, 'tx-sctp-segmentation': False, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'tx-vlan-stag-hw-insert': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'hw-tc-offload': True, 'rx-checksum': True, 'rx-gro': False, 'rx-hashing': True, 'rx-ntuple-filter': True, 'rx-udp_tunnel-port-offload': True, 'rx-vlan-hw-parse': True, 'tx-checksum-ipv4': True, 'tx-checksum-ipv6': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-gso-partial': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': False, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True}}, 'coalesce': {'pkt_rate_high': 0, 'pkt_rate_low': 0, 'rate_sample_interval': 0, 'rx_max_frames': 0, 'rx_max_frames_high': 0, 'rx_max_frames_irq': 256, 'rx_max_frames_low': 0, 'rx_usecs': 50, 'rx_usecs_high': 0, 'rx_usecs_irq': 0, 'rx_usecs_low': 0, 'stats_block_usecs': 0, 'tx_max_frames': 0, 'tx_max_frames_high': 0, 'tx_max_frames_irq': 256, 'tx_max_frames_low': 0, 'tx_usecs': 50, 'tx_usecs_high': 0, 'tx_usecs_irq': 0, 'tx_usecs_low': 0, 'use_adaptive_rx': True, 'use_adaptive_tx': True}, 'ring': {'rx': 512, 'rx_max': 4096, 'tx': 512, 'tx_max': 4096}, 'link_mode': {'auto_negotiate': True, 'ours': ['1000baseT/Full', 'Autoneg', 'TP', 'Pause', 'Asym_Pause'], 'speed': 1000, 'duplex': 'full'}}, 'sriov': {'vfs': []}}, 'calif53a9eb98a1': {'name': 'calif53a9eb98a1', 'iface_type': 'veth', 'state': 'up', 'mtu': 2000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv6': {'addresses': [{'address': 'fe80::ecee:eeff:feee:eeee', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'ee:ee:ee:ee:ee:ee', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-stag-filter': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-checksum': True, 'rx-gro': True, 'rx-vlan-hw-parse': True, 'rx-vlan-stag-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}, 'veth': {'peer': 'enp61s0f1'}}, 'cali78a3d85bbf6': {'name': 'cali78a3d85bbf6', 'iface_type': 'veth', 'state': 'up', 'mtu': 2000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv6': {'addresses': [{'address': 'fe80::ecee:eeff:feee:eeee', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'ee:ee:ee:ee:ee:ee', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-stag-filter': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-checksum': True, 'rx-gro': True, 'rx-vlan-hw-parse': True, 'rx-vlan-stag-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}, 'veth': {'peer': 'enp61s0f1'}}, 'enp175s10f2': {'name': 'enp175s10f2', 'iface_type': 'ethernet', 'state': 'down', 'mtu': 1500, 'flags': ['broadcast', 'multicast'], 'mac_address': '0e:f9:64:73:af:50', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': True, 'rx-vlan-stag-filter': False, 'rx-vlan-stag-hw-parse': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ip-generic': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-robust': False, 'tx-lockless': False, 'tx-scatter-gather-fraglist': False, 'tx-sctp-segmentation': False, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'tx-vlan-stag-hw-insert': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'hw-tc-offload': True, 'rx-checksum': True, 'rx-gro': True, 'rx-hashing': True, 'rx-vlan-hw-parse': True, 'tx-checksum-ipv4': True, 'tx-checksum-ipv6': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-gso-partial': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': False, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True}}, 'coalesce': {'rx_max_frames': 256, 'rx_max_frames_irq': 0, 'rx_usecs': 50, 'tx_max_frames': 256, 'tx_max_frames_irq': 0, 'tx_usecs': 50, 'use_adaptive_rx': True, 'use_adaptive_tx': True}, 'ring': {'rx': 512, 'rx_max': 4096, 'tx': 512, 'tx_max': 4096}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}}, 'calif82fefdcfb0': {'name': 'calif82fefdcfb0', 'iface_type': 'veth', 'state': 'up', 'mtu': 2000, 'flags': ['broadcast', 'lower_up', 'multicast', 'running', 'up'], 'ipv6': {'addresses': [{'address': 'fe80::ecee:eeff:feee:eeee', 'prefix_len': 64, 'valid_lft': 'forever', 'preferred_lft': 'forever'}]}, 'mac_address': 'ee:ee:ee:ee:ee:ee', 'ethtool': {'features': {'fixed': {'esp-hw-offload': False, 'esp-tx-csum-hw-offload': False, 'fcoe-mtu': False, 'hw-tc-offload': False, 'l2-fwd-offload': False, 'loopback': False, 'macsec-hw-offload': False, 'netns-local': False, 'rx-all': False, 'rx-fcs': False, 'rx-gro-hw': False, 'rx-gro-list': False, 'rx-hashing': False, 'rx-lro': False, 'rx-ntuple-filter': False, 'rx-udp_tunnel-port-offload': False, 'rx-vlan-filter': False, 'rx-vlan-stag-filter': False, 'tls-hw-record': False, 'tls-hw-rx-offload': False, 'tls-hw-tx-offload': False, 'tx-checksum-fcoe-crc': False, 'tx-checksum-ipv4': False, 'tx-checksum-ipv6': False, 'tx-esp-segmentation': False, 'tx-fcoe-segmentation': False, 'tx-gso-list': False, 'tx-gso-partial': False, 'tx-gso-robust': False, 'tx-lockless': True, 'tx-tunnel-remcsum-segmentation': False, 'tx-udp-segmentation': False, 'vlan-challenged': False}, 'changeable': {'highdma': True, 'rx-checksum': True, 'rx-gro': True, 'rx-vlan-hw-parse': True, 'rx-vlan-stag-hw-parse': True, 'tx-checksum-ip-generic': True, 'tx-checksum-sctp': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, 'link_mode': {'auto_negotiate': False, 'ours': [], 'speed': 10000, 'duplex': 'full'}}, 'veth': {'peer': 'enp61s0f1'}}}, 'routes': [{'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': '::1/128', 'oif': 'lo', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': '2001:db8:b25c:101::/64', 'oif': 'traffic1_iface', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 801, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': '2001:db8:b25c:105::/64', 'oif': 'traffic5_iface', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 804, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fd00:eccd:b25c:a0a::/64', 'oif': 'bm25c_ext_iface', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 800, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'calida900316cc5', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'cali926ab4dd007', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'calif8b447fdf19', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'calicc0a40c459a', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'cali567a4fa3087', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'calif53a9eb98a1', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'cali42864e06b62', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'calib96cc3302e7', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'califc98bd11b92', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'calif23672b198d', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'cali78a3d85bbf6', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'cali2f5aa77a8f0', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'calif82fefdcfb0', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'calia99a1bb8ee9', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'cali8c2b09b676c', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'bm25c_ext_iface', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 800, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'traffic1_iface', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 801, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'fe80::/64', 'oif': 'traffic5_iface', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 804, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': '::1/128', 'oif': 'lo', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': '2001:db8:b25c:101::3/128', 'oif': 'traffic1_iface', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': '2001:db8:b25c:105::4/128', 'oif': 'traffic5_iface', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fd00:eccd:b25c:a0a::4/128', 'oif': 'bm25c_ext_iface', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::68:ffff:fe01:de78/128', 'oif': 'bm25c_ext_iface', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::3ce7:c6ff:fe80:b397/128', 'oif': 'traffic1_iface', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::5cc6:f1ff:fe6c:916a/128', 'oif': 'traffic5_iface', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::ecee:eeff:feee:eeee/128', 'oif': 'calida900316cc5', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::ecee:eeff:feee:eeee/128', 'oif': 'cali926ab4dd007', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::ecee:eeff:feee:eeee/128', 'oif': 'calif8b447fdf19', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::ecee:eeff:feee:eeee/128', 'oif': 'calicc0a40c459a', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::ecee:eeff:feee:eeee/128', 'oif': 'cali567a4fa3087', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::ecee:eeff:feee:eeee/128', 'oif': 'calif53a9eb98a1', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::ecee:eeff:feee:eeee/128', 'oif': 'cali42864e06b62', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::ecee:eeff:feee:eeee/128', 'oif': 'calib96cc3302e7', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::ecee:eeff:feee:eeee/128', 'oif': 'califc98bd11b92', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::ecee:eeff:feee:eeee/128', 'oif': 'calif23672b198d', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::ecee:eeff:feee:eeee/128', 'oif': 'cali78a3d85bbf6', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::ecee:eeff:feee:eeee/128', 'oif': 'cali2f5aa77a8f0', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::ecee:eeff:feee:eeee/128', 'oif': 'calif82fefdcfb0', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::ecee:eeff:feee:eeee/128', 'oif': 'calia99a1bb8ee9', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'universe', 'route_type': 'local', 'flags': 0, 'dst': 'fe80::ecee:eeff:feee:eeee/128', 'oif': 'cali8c2b09b676c', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 0, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'bond0', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'bm25c_ext_iface', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'traffic1_iface', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'traffic5_iface', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'calida900316cc5', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'cali926ab4dd007', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'calif8b447fdf19', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'calicc0a40c459a', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'cali567a4fa3087', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'calif53a9eb98a1', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'cali42864e06b62', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'calib96cc3302e7', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'califc98bd11b92', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'calif23672b198d', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'cali78a3d85bbf6', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'cali2f5aa77a8f0', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'calif82fefdcfb0', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'calia99a1bb8ee9', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv6', 'tos': 0, 'table': 255, 'protocol': 'boot', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': 'ff00::/8', 'oif': 'cali8c2b09b676c', 'cache_clntref': 0, 'cache_last_use': 0, 'cache_expires': 0, 'cache_error': 0, 'cache_used': 0, 'cache_id': 0, 'cache_ts': 0, 'cache_ts_age': 0, 'metric': 256, 'perf': 0}, {'address_family': 'ipv4', 'tos': 0, 'table': 200, 'protocol': 'static', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'oif': 'traffic5_iface', 'gateway': '16.16.5.129', 'metric': 804}, {'address_family': 'ipv4', 'tos': 0, 'table': 200, 'protocol': 'static', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '16.16.5.129/32', 'oif': 'traffic5_iface', 'metric': 804}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'static', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'oif': 'bm25c_ext_iface', 'gateway': '10.221.150.97', 'metric': 800}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '10.221.150.96/27', 'oif': 'bm25c_ext_iface', 'prefered_src': '10.221.150.99', 'metric': 800}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '16.16.1.0/24', 'oif': 'traffic1_iface', 'prefered_src': '16.16.1.2', 'metric': 801}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '16.16.5.0/24', 'oif': 'traffic5_iface', 'prefered_src': '16.16.5.3', 'metric': 804}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'static', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': '16.16.5.0/24', 'oif': 'traffic5_iface', 'gateway': '16.16.5.129', 'metric': 804}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '17.17.1.0/24', 'oif': 'nex_iface', 'prefered_src': '17.17.1.2', 'metric': 803}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '17.17.2.0/24', 'oif': 'nex_mgmt_iface', 'prefered_src': '17.17.2.2', 'metric': 802}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '169.254.0.0/16', 'oif': 'docker0', 'prefered_src': '169.254.0.1'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'bird', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.0/26', 'oif': 'bm25c_ext_iface', 'gateway': '10.221.150.100'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'bird', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.64/26', 'oif': 'bm25c_ext_iface', 'gateway': '10.221.150.105'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'bird', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.128/26', 'oif': 'bm25c_ext_iface', 'gateway': '10.221.150.106'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'boot', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.131/32', 'oif': 'calida900316cc5'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'boot', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.132/32', 'oif': 'cali926ab4dd007'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'boot', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.138/32', 'oif': 'calif8b447fdf19'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'boot', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.139/32', 'oif': 'calicc0a40c459a'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'boot', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.141/32', 'oif': 'cali567a4fa3087'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'boot', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.151/32', 'oif': 'calif53a9eb98a1'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'boot', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.152/32', 'oif': 'cali42864e06b62'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'boot', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.153/32', 'oif': 'calib96cc3302e7'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'boot', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.157/32', 'oif': 'califc98bd11b92'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'boot', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.158/32', 'oif': 'calif23672b198d'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'boot', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.159/32', 'oif': 'cali78a3d85bbf6'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'boot', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.161/32', 'oif': 'cali2f5aa77a8f0'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'boot', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.162/32', 'oif': 'calif82fefdcfb0'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'boot', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.166/32', 'oif': 'cali8c2b09b676c'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'boot', 'scope': 'link', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.187/32', 'oif': 'calia99a1bb8ee9'}, {'address_family': 'ipv4', 'tos': 0, 'table': 254, 'protocol': 'bird', 'scope': 'universe', 'route_type': 'unicast', 'flags': 0, 'dst': '192.168.0.192/26', 'oif': 'bm25c_ext_iface', 'gateway': '10.221.150.104'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '4.3.2.0/32', 'oif': 'kube-ipvs0', 'prefered_src': '4.3.2.0'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.96.0.1/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.96.0.1'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.96.0.10/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.96.0.10'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.96.185.223/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.96.185.223'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.96.255.200/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.96.255.200'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.97.125.77/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.97.125.77'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.98.15.33/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.98.15.33'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.98.72.206/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.98.72.206'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.98.87.98/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.98.87.98'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.98.191.114/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.98.191.114'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.98.246.21/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.98.246.21'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.98.250.87/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.98.250.87'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.99.103.53/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.99.103.53'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.99.200.238/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.99.200.238'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.99.221.124/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.99.221.124'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.100.114.37/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.100.114.37'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.100.161.125/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.100.161.125'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.100.170.223/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.100.170.223'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.100.216.137/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.100.216.137'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.100.225.132/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.100.225.132'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.101.27.252/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.101.27.252'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.101.193.47/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.101.193.47'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.102.13.225/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.102.13.225'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.102.108.39/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.102.108.39'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.102.118.208/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.102.118.208'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.103.27.218/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.103.27.218'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.103.188.0/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.103.188.0'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.104.224.64/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.104.224.64'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.105.9.28/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.105.9.28'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.107.12.165/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.107.12.165'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.107.128.52/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.107.128.52'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.107.199.206/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.107.199.206'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.108.74.19/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.108.74.19'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.108.227.100/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.108.227.100'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.109.140.77/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.109.140.77'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.110.55.11/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.110.55.11'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.110.164.89/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.110.164.89'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.111.152.192/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.111.152.192'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.111.204.221/32', 'oif': 'kube-ipvs0', 'prefered_src': '10.111.204.221'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'broadcast', 'flags': 0, 'dst': '10.221.150.96/32', 'oif': 'bm25c_ext_iface', 'prefered_src': '10.221.150.99'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '10.221.150.99/32', 'oif': 'bm25c_ext_iface', 'prefered_src': '10.221.150.99'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'broadcast', 'flags': 0, 'dst': '10.221.150.127/32', 'oif': 'bm25c_ext_iface', 'prefered_src': '10.221.150.99'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'broadcast', 'flags': 0, 'dst': '16.16.1.0/32', 'oif': 'traffic1_iface', 'prefered_src': '16.16.1.2'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '16.16.1.2/32', 'oif': 'traffic1_iface', 'prefered_src': '16.16.1.2'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'broadcast', 'flags': 0, 'dst': '16.16.1.255/32', 'oif': 'traffic1_iface', 'prefered_src': '16.16.1.2'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'broadcast', 'flags': 0, 'dst': '16.16.5.0/32', 'oif': 'traffic5_iface', 'prefered_src': '16.16.5.3'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '16.16.5.3/32', 'oif': 'traffic5_iface', 'prefered_src': '16.16.5.3'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'broadcast', 'flags': 0, 'dst': '16.16.5.255/32', 'oif': 'traffic5_iface', 'prefered_src': '16.16.5.3'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'broadcast', 'flags': 0, 'dst': '17.17.1.0/32', 'oif': 'nex_iface', 'prefered_src': '17.17.1.2'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '17.17.1.2/32', 'oif': 'nex_iface', 'prefered_src': '17.17.1.2'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'broadcast', 'flags': 0, 'dst': '17.17.1.255/32', 'oif': 'nex_iface', 'prefered_src': '17.17.1.2'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'broadcast', 'flags': 0, 'dst': '17.17.2.0/32', 'oif': 'nex_mgmt_iface', 'prefered_src': '17.17.2.2'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '17.17.2.2/32', 'oif': 'nex_mgmt_iface', 'prefered_src': '17.17.2.2'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'broadcast', 'flags': 0, 'dst': '17.17.2.255/32', 'oif': 'nex_mgmt_iface', 'prefered_src': '17.17.2.2'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'broadcast', 'flags': 0, 'dst': '127.0.0.0/32', 'oif': 'lo', 'prefered_src': '127.0.0.1'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '127.0.0.0/8', 'oif': 'lo', 'prefered_src': '127.0.0.1'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '127.0.0.1/32', 'oif': 'lo', 'prefered_src': '127.0.0.1'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'broadcast', 'flags': 0, 'dst': '127.255.255.255/32', 'oif': 'lo', 'prefered_src': '127.0.0.1'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'broadcast', 'flags': 0, 'dst': '169.254.0.0/32', 'oif': 'docker0', 'prefered_src': '169.254.0.1'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '169.254.0.1/32', 'oif': 'docker0', 'prefered_src': '169.254.0.1'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'host', 'route_type': 'local', 'flags': 0, 'dst': '169.254.20.10/32', 'oif': 'nodelocaldns', 'prefered_src': '169.254.20.10'}, {'address_family': 'ipv4', 'tos': 0, 'table': 255, 'protocol': 'kernel', 'scope': 'link', 'route_type': 'broadcast', 'flags': 0, 'dst': '169.254.255.255/32', 'oif': 'docker0', 'prefered_src': '169.254.0.1'}], 'rules': [{'action': 'table', 'address_family': 'ipv6', 'flags': 0, 'tos': 0, 'table': 255, 'protocol': 'kernel'}, {'action': 'table', 'address_family': 'ipv6', 'flags': 0, 'tos': 0, 'table': 254, 'priority': 32766, 'protocol': 'kernel'}, {'action': 'table', 'address_family': 'ipv4', 'flags': 0, 'tos': 0, 'table': 255, 'protocol': 'kernel'}, {'action': 'table', 'address_family': 'ipv4', 'flags': 0, 'tos': 0, 'table': 254, 'dst': '192.168.0.0/24', 'src': '5.4.3.0/24', 'priority': 29994, 'protocol': 'unspec'}, {'action': 'table', 'address_family': 'ipv4', 'flags': 0, 'tos': 0, 'table': 200, 'src': '5.4.3.0/24', 'priority': 30000, 'protocol': 'unspec'}, {'action': 'table', 'address_family': 'ipv4', 'flags': 0, 'tos': 0, 'table': 254, 'priority': 32766, 'protocol': 'kernel'}, {'action': 'table', 'address_family': 'ipv4', 'flags': 0, 'tos': 0, 'table': 253, 'priority': 32767, 'protocol': 'kernel'}]}
2022-06-24 09:49:34,022 root DEBUG Nispor: Interface cali2f5aa77a8f0 veth ignored
2022-06-24 09:49:34,023 root DEBUG Nispor: Interface cali42864e06b62 veth ignored
2022-06-24 09:49:34,023 root DEBUG Nispor: Interface cali567a4fa3087 veth ignored
2022-06-24 09:49:34,023 root DEBUG Nispor: Interface cali78a3d85bbf6 veth ignored
2022-06-24 09:49:34,023 root DEBUG Nispor: Interface cali8c2b09b676c veth ignored
2022-06-24 09:49:34,023 root DEBUG Nispor: Interface cali926ab4dd007 veth ignored
2022-06-24 09:49:34,023 root DEBUG Nispor: Interface calia99a1bb8ee9 veth ignored
2022-06-24 09:49:34,023 root DEBUG Nispor: Interface calib96cc3302e7 veth ignored
2022-06-24 09:49:34,023 root DEBUG Nispor: Interface calicc0a40c459a veth ignored
2022-06-24 09:49:34,023 root DEBUG Nispor: Interface calida900316cc5 veth ignored
2022-06-24 09:49:34,023 root DEBUG Nispor: Interface calif23672b198d veth ignored
2022-06-24 09:49:34,023 root DEBUG Nispor: Interface calif53a9eb98a1 veth ignored
2022-06-24 09:49:34,023 root DEBUG Nispor: Interface calif82fefdcfb0 veth ignored
2022-06-24 09:49:34,023 root DEBUG Nispor: Interface calif8b447fdf19 veth ignored
2022-06-24 09:49:34,023 root DEBUG Nispor: Interface califc98bd11b92 veth ignored
2022-06-24 09:49:34,023 root DEBUG Nispor: Interface kube-ipvs0 dummy ignored
2022-06-24 09:49:34,024 root DEBUG Nispor: changed network state {'name': 'nex_iface', 'type': 'ovs-interface', 'ovs-db': {'external_ids': {}}, 'state': 'up', 'ipv4': {'enabled': True, 'dhcp': False, 'address': [{'ip': '17.17.1.2', 'prefix-length': 24}], '_routes': [{'table-id': 257, 'destination': '17.17.1.0/24', 'next-hop-address': '10.221.150.100', 'next-hop-interface': 'nex_iface'}]}, 'ipv6': {'enabled': False, 'dhcp': False, 'autoconf': False, 'address': [], '_routes': []}, 'lldp': {'enabled': False}, 'mac-address': '46:CF:2C:81:24:1F', 'accept-all-mac-addresses': False, 'mtu': 1500, 'ethtool': {'feature': {'highdma': True, 'rx-gro': True, 'tx-checksum-ip-generic': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, '_brport_options': {'name': 'nex_iface', 'vlan': {'mode': 'access', 'tag': 4036}}, '_controller': 'data_bridge', '_controller_type': 'ovs-bridge'}
2022-06-24 09:49:34,024 root DEBUG Nispor: changed network state {'name': 'nex_mgmt_iface', 'type': 'ovs-interface', 'ovs-db': {'external_ids': {}}, 'state': 'up', 'ipv4': {'enabled': True, 'dhcp': False, 'address': [{'ip': '17.17.2.2', 'prefix-length': 24}], '_routes': [{'table-id': 256, 'destination': '17.17.2.0/24', 'next-hop-address': '10.221.150.99', 'next-hop-interface': 'nex_mgmt_iface'}]}, 'ipv6': {'enabled': False, 'dhcp': False, 'autoconf': False, 'address': [], '_routes': []}, 'lldp': {'enabled': False}, 'mac-address': '7A:33:07:62:79:5C', 'accept-all-mac-addresses': False, 'mtu': 1500, 'ethtool': {'feature': {'highdma': True, 'rx-gro': True, 'tx-checksum-ip-generic': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, '_brport_options': {'name': 'nex_mgmt_iface', 'vlan': {'mode': 'access', 'tag': 4037}}, '_controller': 'data_bridge', '_controller_type': 'ovs-bridge'}
2022-06-24 09:49:34,024 root DEBUG Nispor: Interface nodelocaldns dummy ignored
2022-06-24 09:49:34,024 root DEBUG Nispor: changed network state {'name': 'traffic1_iface', 'type': 'ovs-interface', 'ovs-db': {'external_ids': {}}, 'state': 'up', 'ipv4': {'enabled': True, 'dhcp': False, 'address': [{'ip': '16.16.1.2', 'prefix-length': 24}], '_routes': [{'table-id': 254, 'destination': '16.16.1.0/24', 'next-hop-address': '10.221.150.97', 'next-hop-interface': 'traffic1_iface'}]}, 'ipv6': {'enabled': True, 'dhcp': False, 'autoconf': False, 'address': [{'ip': '2001:db8:b25c:101::3', 'prefix-length': 64}, {'ip': 'fe80::3ce7:c6ff:fe80:b397', 'prefix-length': 64}], '_routes': []}, 'lldp': {'enabled': False}, 'mac-address': '3E:E7:C6:80:B3:97', 'accept-all-mac-addresses': False, 'mtu': 1500, 'ethtool': {'feature': {'highdma': True, 'rx-gro': True, 'tx-checksum-ip-generic': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, '_brport_options': {'name': 'traffic1_iface', 'vlan': {'mode': 'access', 'tag': 4033}}, '_controller': 'data_bridge', '_controller_type': 'ovs-bridge'}
2022-06-24 09:49:34,025 root DEBUG Nispor: changed network state {'name': 'traffic5_iface', 'type': 'ovs-interface', 'ovs-db': {'external_ids': {}}, 'state': 'up', 'ipv4': {'enabled': True, 'dhcp': False, 'address': [{'ip': '16.16.5.3', 'prefix-length': 24}], '_routes': [{'table-id': 200, 'metric': 804, 'destination': '0.0.0.0/0', 'next-hop-address': '16.16.5.129', 'next-hop-interface': 'traffic5_iface'}, {'table-id': 254, 'metric': 804, 'destination': '16.16.5.0/24', 'next-hop-address': '16.16.5.129', 'next-hop-interface': 'traffic5_iface'}, {'table-id': 200, 'metric': 804, 'destination': '16.16.5.129/32', 'next-hop-address': '0.0.0.0', 'next-hop-interface': 'traffic5_iface'}, {'table-id': 255, 'destination': '16.16.1.0/24', 'next-hop-address': '10.221.150.98', 'next-hop-interface': 'traffic5_iface'}], '_route_rules': [{'ip-from': '5.4.3.0/24', 'ip-to': '', 'priority': 30000, 'route-table': 200}]}, 'ipv6': {'enabled': True, 'dhcp': False, 'autoconf': False, 'address': [{'ip': '2001:db8:b25c:105::4', 'prefix-length': 64}, {'ip': 'fe80::5cc6:f1ff:fe6c:916a', 'prefix-length': 64}], '_routes': [], '_route_rules': []}, 'lldp': {'enabled': False}, 'mac-address': '5E:C6:F1:6C:91:6A', 'accept-all-mac-addresses': False, 'mtu': 1500, 'ethtool': {'feature': {'highdma': True, 'rx-gro': True, 'tx-checksum-ip-generic': True, 'tx-generic-segmentation': True, 'tx-gre-csum-segmentation': True, 'tx-gre-segmentation': True, 'tx-ipxip4-segmentation': True, 'tx-ipxip6-segmentation': True, 'tx-nocache-copy': False, 'tx-scatter-gather-fraglist': True, 'tx-sctp-segmentation': True, 'tx-tcp-ecn-segmentation': True, 'tx-tcp-mangleid-segmentation': True, 'tx-tcp-segmentation': True, 'tx-tcp6-segmentation': True, 'tx-udp_tnl-csum-segmentation': True, 'tx-udp_tnl-segmentation': True, 'tx-vlan-hw-insert': True, 'tx-vlan-stag-hw-insert': True}}, '_brport_options': {'name': 'traffic5_iface', 'vlan': {'mode': 'access', 'tag': 4039}}, '_controller': 'data_bridge', '_controller_type': 'ovs-bridge'}
2022-06-24 09:49:34,030 root WARNING IPv6 link local address fe80::68:ffff:fe01:de78/64 is ignored when applying desired state
2022-06-24 09:49:34,033 root WARNING IPv6 link local address fe80::ecee:eeff:feee:eeee/64 is ignored when applying desired state
2022-06-24 09:49:34,034 root WARNING IPv6 link local address fe80::ecee:eeff:feee:eeee/64 is ignored when applying desired state
2022-06-24 09:49:34,034 root WARNING IPv6 link local address fe80::ecee:eeff:feee:eeee/64 is ignored when applying desired state
2022-06-24 09:49:34,035 root WARNING IPv6 link local address fe80::ecee:eeff:feee:eeee/64 is ignored when applying desired state
2022-06-24 09:49:34,036 root WARNING IPv6 link local address fe80::ecee:eeff:feee:eeee/64 is ignored when applying desired state
2022-06-24 09:49:34,037 root WARNING IPv6 link local address fe80::ecee:eeff:feee:eeee/64 is ignored when applying desired state
2022-06-24 09:49:34,037 root WARNING IPv6 link local address fe80::ecee:eeff:feee:eeee/64 is ignored when applying desired state
2022-06-24 09:49:34,038 root WARNING IPv6 link local address fe80::ecee:eeff:feee:eeee/64 is ignored when applying desired state
2022-06-24 09:49:34,039 root WARNING IPv6 link local address fe80::ecee:eeff:feee:eeee/64 is ignored when applying desired state
2022-06-24 09:49:34,039 root WARNING IPv6 link local address fe80::ecee:eeff:feee:eeee/64 is ignored when applying desired state
2022-06-24 09:49:34,040 root WARNING IPv6 link local address fe80::ecee:eeff:feee:eeee/64 is ignored when applying desired state
2022-06-24 09:49:34,041 root WARNING IPv6 link local address fe80::ecee:eeff:feee:eeee/64 is ignored when applying desired state
2022-06-24 09:49:34,042 root WARNING IPv6 link local address fe80::ecee:eeff:feee:eeee/64 is ignored when applying desired state
2022-06-24 09:49:34,042 root WARNING IPv6 link local address fe80::ecee:eeff:feee:eeee/64 is ignored when applying desired state
2022-06-24 09:49:34,043 root WARNING IPv6 link local address fe80::ecee:eeff:feee:eeee/64 is ignored when applying desired state
2022-06-24 09:49:34,053 root WARNING IPv6 link local address fe80::3ce7:c6ff:fe80:b397/64 is ignored when applying desired state
2022-06-24 09:49:34,055 root WARNING IPv6 link local address fe80::5cc6:f1ff:fe6c:916a/64 is ignored when applying desired state
2022-06-24 09:49:34,056 root DEBUG Async action: Update profile uuid:6f3ebd6a-966a-42e9-a46b-42e6b5b12716 iface:nex_iface type:ovs-interface started
2022-06-24 09:49:34,057 root DEBUG Async action: Update profile uuid:696cabd0-dc32-46af-9b15-077da796fa9d iface:nex_iface type:ovs-port started
2022-06-24 09:49:34,057 root DEBUG Async action: Update profile uuid:d4cc9a95-51bc-4918-b061-325a3204469d iface:nex_mgmt_iface type:ovs-interface started
2022-06-24 09:49:34,057 root DEBUG Async action: Update profile uuid:76506ad3-35a1-482a-9b20-6f0bed32360f iface:nex_mgmt_iface type:ovs-port started
2022-06-24 09:49:34,058 root DEBUG Async action: Update profile uuid:b38c394a-50b4-45f0-86c5-d36963d6d64f iface:traffic1_iface type:ovs-interface started
2022-06-24 09:49:34,058 root DEBUG Async action: Update profile uuid:03f1c766-d4d9-4390-aaf8-a91a925b767c iface:traffic1_iface type:ovs-port started
2022-06-24 09:49:34,058 root DEBUG Async action: Update profile uuid:c95cf4fa-cdc2-406c-a332-2d41d33e7622 iface:traffic5_iface type:ovs-interface started
2022-06-24 09:49:34,059 root DEBUG Async action: Update profile uuid:3b929159-0624-4b11-951e-038b5bd5209d iface:traffic5_iface type:ovs-port started
2022-06-24 09:49:34,067 root DEBUG Async action: Update profile uuid:6f3ebd6a-966a-42e9-a46b-42e6b5b12716 iface:nex_iface type:ovs-interface finished
2022-06-24 09:49:34,068 root DEBUG Async action: Update profile uuid:696cabd0-dc32-46af-9b15-077da796fa9d iface:nex_iface type:ovs-port finished
2022-06-24 09:49:34,071 root DEBUG Async action: Update profile uuid:d4cc9a95-51bc-4918-b061-325a3204469d iface:nex_mgmt_iface type:ovs-interface finished
2022-06-24 09:49:34,073 root DEBUG Async action: Update profile uuid:76506ad3-35a1-482a-9b20-6f0bed32360f iface:nex_mgmt_iface type:ovs-port finished
2022-06-24 09:49:34,076 root DEBUG Async action: Update profile uuid:b38c394a-50b4-45f0-86c5-d36963d6d64f iface:traffic1_iface type:ovs-interface finished
2022-06-24 09:49:34,077 root DEBUG Async action: Update profile uuid:03f1c766-d4d9-4390-aaf8-a91a925b767c iface:traffic1_iface type:ovs-port finished
2022-06-24 09:49:34,080 root DEBUG Async action: Update profile uuid:c95cf4fa-cdc2-406c-a332-2d41d33e7622 iface:traffic5_iface type:ovs-interface finished
2022-06-24 09:49:34,082 root DEBUG Async action: Update profile uuid:3b929159-0624-4b11-951e-038b5bd5209d iface:traffic5_iface type:ovs-port finished
2022-06-24 09:49:34,083 root DEBUG Async action: Reapply device config: nex_iface ovs-port 696cabd0-dc32-46af-9b15-077da796fa9d started
2022-06-24 09:49:34,083 root DEBUG Async action: Reapply device config: nex_mgmt_iface ovs-port 76506ad3-35a1-482a-9b20-6f0bed32360f started
2022-06-24 09:49:34,084 root DEBUG Async action: Reapply device config: traffic1_iface ovs-port 03f1c766-d4d9-4390-aaf8-a91a925b767c started
2022-06-24 09:49:34,085 root DEBUG Async action: Reapply device config: traffic5_iface ovs-port 3b929159-0624-4b11-951e-038b5bd5209d started
2022-06-24 09:49:34,090 root DEBUG Async action: Reapply device config: nex_iface ovs-port 696cabd0-dc32-46af-9b15-077da796fa9d finished
2022-06-24 09:49:34,090 root DEBUG Async action: Reapply device config: nex_mgmt_iface ovs-port 76506ad3-35a1-482a-9b20-6f0bed32360f finished
2022-06-24 09:49:34,090 root DEBUG Async action: Reapply device config: traffic1_iface ovs-port 03f1c766-d4d9-4390-aaf8-a91a925b767c finished
2022-06-24 09:49:34,090 root DEBUG Async action: Reapply device config: traffic5_iface ovs-port 3b929159-0624-4b11-951e-038b5bd5209d finished
2022-06-24 09:49:34,090 root DEBUG Async action: Reapply device config: nex_iface ovs-interface 6f3ebd6a-966a-42e9-a46b-42e6b5b12716 started
2022-06-24 09:49:34,091 root DEBUG Async action: Reapply device config: nex_mgmt_iface ovs-interface d4cc9a95-51bc-4918-b061-325a3204469d started
2022-06-24 09:49:34,092 root DEBUG Async action: Reapply device config: traffic1_iface ovs-interface b38c394a-50b4-45f0-86c5-d36963d6d64f started
2022-06-24 09:49:34,092 root DEBUG Async action: Reapply device config: traffic5_iface ovs-interface c95cf4fa-cdc2-406c-a332-2d41d33e7622 started
2022-06-24 09:49:34,096 root DEBUG Async action: Reapply device config: nex_iface ovs-interface 6f3ebd6a-966a-42e9-a46b-42e6b5b12716 finished
2022-06-24 09:49:34,097 root DEBUG Async action: Reapply device config: nex_mgmt_iface ovs-interface d4cc9a95-51bc-4918-b061-325a3204469d finished
2022-06-24 09:49:34,100 root DEBUG Async action: Reapply device config: traffic1_iface ovs-interface b38c394a-50b4-45f0-86c5-d36963d6d64f finished
2022-06-24 09:49:34,104 root DEBUG Async action: Reapply device config: traffic5_iface ovs-interface c95cf4fa-cdc2-406c-a332-2d41d33e7622 finished
2022-06-24 09:49:34,156 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:34,156 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:34,156 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:34,157 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:34,157 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:34,157 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:34,157 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:34,157 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:34,157 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:34,157 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:34,158 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:34,158 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:34,158 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:34,158 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:34,158 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:34,158 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:34,158 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:34,159 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:34,159 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:34,159 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:34,160 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:34,160 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:34,161 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:34,161 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:34,161 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:34,161 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:34,162 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:34,162 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:34,163 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:34,163 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:34,163 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:34,164 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:34,164 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:34,165 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:34,167 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:34,167 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:34,167 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:34,167 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:34,167 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:34,167 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:34,167 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:34,167 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:34,167 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:34,167 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:34,167 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:34,167 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:34,168 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:34,168 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:34,168 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:34,168 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:34,168 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:34,168 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:34,168 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:34,168 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:34,169 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:34,169 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:35,351 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:35,351 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:35,351 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:35,351 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:35,352 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:35,352 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:35,352 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:35,352 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:35,352 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:35,352 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:35,352 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:35,352 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:35,353 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:35,353 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:35,353 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:35,353 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:35,353 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:35,355 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:35,355 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:35,356 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:35,356 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:35,356 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:35,357 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:35,357 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:35,358 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:35,358 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:35,358 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:35,359 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:35,359 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:35,359 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:35,360 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:35,360 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:35,361 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:35,361 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:35,363 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:35,363 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:35,363 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:35,363 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:35,363 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:35,363 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:35,364 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:35,364 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:35,364 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:35,364 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:35,364 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:35,364 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:35,364 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:35,364 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:35,364 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:35,364 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:35,365 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:35,365 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:35,365 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:35,365 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:35,365 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:35,365 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:36,548 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:36,549 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:36,549 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:36,549 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:36,549 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:36,549 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:36,549 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:36,550 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:36,550 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:36,550 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:36,550 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:36,550 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:36,550 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:36,550 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:36,550 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:36,550 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:36,551 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:36,552 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:36,553 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:36,553 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:36,554 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:36,554 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:36,555 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:36,555 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:36,555 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:36,555 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:36,556 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:36,556 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:36,557 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:36,557 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:36,557 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:36,558 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:36,558 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:36,559 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:36,561 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:36,561 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:36,561 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:36,561 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:36,561 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:36,561 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:36,561 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:36,561 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:36,561 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:36,561 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:36,561 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:36,562 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:36,562 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:36,562 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:36,562 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:36,562 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:36,562 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:36,562 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:36,562 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:36,563 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:36,563 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:36,563 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:37,747 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:37,747 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:37,747 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:37,747 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:37,747 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:37,747 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:37,748 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:37,748 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:37,748 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:37,748 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:37,748 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:37,748 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:37,748 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:37,748 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:37,749 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:37,749 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:37,749 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:37,750 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:37,751 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:37,751 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:37,752 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:37,752 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:37,753 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:37,753 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:37,753 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:37,753 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:37,754 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:37,754 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:37,755 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:37,755 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:37,755 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:37,756 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:37,756 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:37,757 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:37,759 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:37,759 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:37,759 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:37,759 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:37,759 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:37,759 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:37,759 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:37,759 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:37,760 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:37,760 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:37,760 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:37,760 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:37,760 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:37,761 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:37,761 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:37,761 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:37,761 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:37,761 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:37,762 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:37,762 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:37,762 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:37,762 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:38,963 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:38,963 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:38,963 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:38,963 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:38,963 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:38,963 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:38,964 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:38,964 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:38,964 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:38,964 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:38,964 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:38,964 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:38,964 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:38,964 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:38,965 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:38,965 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:38,965 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:38,966 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:38,967 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:38,967 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:38,968 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:38,968 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:38,969 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:38,969 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:38,969 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:38,969 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:38,970 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:38,970 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:38,970 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:38,971 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:38,971 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:38,972 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:38,972 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:38,973 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:38,975 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:38,975 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:38,975 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:38,975 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:38,975 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:38,975 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:38,975 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:38,975 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:38,975 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:38,975 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:38,975 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:38,975 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:38,976 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:38,976 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:38,976 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:38,976 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:38,976 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:38,976 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:38,976 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:38,977 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:38,977 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:38,977 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:40,162 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:40,162 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:40,162 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:40,162 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:40,162 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:40,163 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:40,163 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:40,163 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:40,163 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:40,163 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:40,163 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:40,163 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:40,163 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:40,163 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:40,164 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:40,164 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:40,164 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:40,165 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:40,166 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:40,166 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:40,167 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:40,167 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:40,168 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:40,168 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:40,168 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:40,168 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:40,169 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:40,169 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:40,169 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:40,170 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:40,170 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:40,171 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:40,171 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:40,172 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:40,174 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:40,174 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:40,174 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:40,174 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:40,174 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:40,174 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:40,174 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:40,174 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:40,174 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:40,174 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:40,174 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:40,174 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:40,175 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:40,175 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:40,175 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:40,175 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:40,175 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:40,175 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:40,175 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:40,175 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:40,176 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:40,176 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:41,362 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:41,362 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:41,362 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:41,362 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:41,363 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:41,363 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:41,363 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:41,363 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:41,363 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:41,363 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:41,363 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:41,363 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:41,364 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:41,364 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:41,364 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:41,364 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:41,364 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:41,365 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:41,366 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:41,366 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:41,367 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:41,367 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:41,368 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:41,368 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:41,368 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:41,368 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:41,369 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:41,369 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:41,370 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:41,370 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:41,370 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:41,371 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:41,371 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:41,372 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:41,374 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:41,374 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:41,374 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:41,374 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:41,374 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:41,374 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:41,374 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:41,374 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:41,374 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:41,374 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:41,374 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:41,375 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:41,375 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:41,375 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:41,375 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:41,375 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:41,375 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:41,375 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:41,376 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:41,376 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:41,376 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:41,376 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:42,564 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:42,564 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:42,564 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:42,564 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:42,564 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:42,564 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:42,565 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:42,565 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:42,565 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:42,565 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:42,565 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:42,565 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:42,565 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:42,565 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:42,566 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:42,566 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:42,566 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:42,567 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:42,568 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:42,568 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:42,569 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:42,569 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:42,570 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:42,570 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:42,570 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:42,570 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:42,571 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:42,571 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:42,572 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:42,572 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:42,572 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:42,573 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:42,573 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:42,574 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:42,576 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:42,576 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:42,576 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:42,576 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:42,576 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:42,576 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:42,576 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:42,576 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:42,576 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:42,576 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:42,577 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:42,577 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:42,577 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:42,577 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:42,577 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:42,577 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:42,577 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:42,577 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:42,578 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:42,578 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:42,578 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:42,578 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:43,762 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:43,762 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:43,762 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:43,762 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:43,762 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:43,762 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:43,762 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:43,763 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:43,763 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:43,763 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:43,763 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:43,763 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:43,763 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:43,763 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:43,763 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:43,764 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:43,764 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:43,765 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:43,766 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:43,766 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:43,766 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:43,767 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:43,767 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:43,768 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:43,768 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:43,768 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:43,769 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:43,769 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:43,769 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:43,770 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:43,770 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:43,771 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:43,771 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:43,772 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:43,773 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:43,774 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:43,774 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:43,774 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:43,774 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:43,774 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:43,774 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:43,774 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:43,774 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:43,774 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:43,774 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:43,774 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:43,774 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:43,774 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:43,775 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:43,775 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:43,775 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:43,775 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:43,775 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:43,775 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:43,775 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:43,775 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:44,960 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:44,960 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:44,960 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:44,961 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:44,961 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:44,961 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:44,961 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:44,961 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:44,961 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:44,961 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:44,961 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:44,962 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:44,962 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:44,962 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:44,962 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:44,962 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:44,962 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:44,964 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:44,964 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:44,964 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:44,965 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:44,965 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:44,966 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:44,966 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:44,966 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:44,967 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:44,967 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:44,968 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:44,968 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:44,968 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:44,969 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:44,969 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:44,970 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:44,970 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:44,972 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:44,972 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:44,972 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:44,972 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:44,972 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:44,972 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:44,973 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:44,973 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:44,973 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:44,973 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:44,973 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:44,973 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:44,973 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:44,973 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:44,973 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:44,973 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:44,974 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:44,974 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:44,974 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:44,974 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:44,974 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:44,974 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:46,158 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:46,158 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:46,158 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:46,158 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:46,158 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:46,159 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:46,159 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:46,159 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:46,159 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:46,159 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:46,159 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:46,159 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:46,159 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:46,160 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:46,160 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:46,160 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:46,160 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:46,161 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:46,162 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:46,162 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:46,163 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:46,163 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:46,164 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:46,164 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:46,164 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:46,164 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:46,165 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:46,165 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:46,166 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:46,166 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:46,166 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:46,167 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:46,167 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:46,168 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:46,170 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:46,170 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:46,170 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:46,170 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:46,170 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:46,170 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:46,170 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:46,170 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:46,170 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:46,171 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:46,171 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:46,171 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:46,171 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:46,171 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:46,171 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:46,171 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:46,171 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:46,172 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:46,172 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:46,172 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:46,172 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:46,172 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:47,356 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:47,357 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:47,357 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:47,357 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:47,357 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:47,357 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:47,357 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:47,357 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:47,358 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:47,358 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:47,358 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:47,358 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:47,358 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:47,358 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:47,358 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:47,358 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:47,359 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:47,360 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:47,361 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:47,361 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:47,361 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:47,362 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:47,362 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:47,363 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:47,363 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:47,363 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:47,364 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:47,364 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:47,364 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:47,365 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:47,365 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:47,366 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:47,366 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:47,367 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:47,368 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:47,369 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:47,369 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:47,369 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:47,369 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:47,369 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:47,369 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:47,369 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:47,369 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:47,369 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:47,369 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:47,369 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:47,369 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:47,369 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:47,369 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:47,370 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:47,370 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:47,370 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:47,370 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:47,370 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:47,370 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:47,370 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:48,555 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:48,555 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:48,555 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:48,555 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:48,556 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:48,556 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:48,556 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:48,556 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:48,556 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:48,556 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:48,556 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:48,556 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:48,557 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:48,557 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:48,557 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:48,557 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:48,557 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:48,559 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:48,560 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:48,560 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:48,561 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:48,561 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:48,562 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:48,562 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:48,562 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:48,563 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:48,563 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:48,563 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:48,564 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:48,564 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:48,565 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:48,565 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:48,565 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:48,566 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:48,568 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:48,568 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:48,568 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:48,568 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:48,568 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:48,568 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:48,568 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:48,568 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:48,568 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:48,568 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:48,568 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:48,569 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:48,569 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:48,569 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:48,569 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:48,569 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:48,569 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:48,569 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:48,570 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:48,570 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:48,570 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:48,570 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:49,755 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:49,755 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:49,755 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:49,756 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:49,756 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:49,756 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:49,756 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:49,756 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:49,756 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:49,756 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:49,757 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:49,757 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:49,757 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:49,757 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:49,757 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:49,757 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:49,757 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:49,759 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:49,760 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:49,761 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:49,761 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:49,762 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:49,762 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:49,762 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:49,763 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:49,763 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:49,763 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:49,764 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:49,764 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:49,765 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:49,765 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:49,766 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:49,766 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:49,767 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:49,769 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:49,769 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:49,769 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:49,769 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:49,769 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:49,769 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:49,769 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:49,769 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:49,769 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:49,769 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:49,769 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:49,769 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:49,769 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:49,770 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:49,770 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:49,770 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:49,770 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:49,770 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:49,770 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:49,770 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:49,771 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:49,771 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:50,953 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:50,954 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:50,954 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:50,954 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:50,954 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:50,954 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:50,954 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:50,955 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:50,955 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:50,955 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:50,955 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:50,956 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:50,956 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:50,956 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:50,956 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:50,956 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:50,956 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:50,957 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:50,958 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:50,958 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:50,959 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:50,959 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:50,960 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:50,960 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:50,960 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:50,960 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:50,961 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:50,961 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:50,962 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:50,962 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:50,963 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:50,963 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:50,963 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:50,964 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:50,966 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:50,966 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:50,966 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:50,966 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:50,966 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:50,966 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:50,966 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:50,966 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:50,966 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:50,967 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:50,967 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:50,967 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:50,967 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:50,967 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:50,967 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:50,967 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:50,967 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:50,968 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:50,968 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:50,968 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:50,968 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:50,968 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:52,154 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:52,154 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:52,154 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:52,154 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:52,154 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:52,154 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:52,155 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:52,155 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:52,155 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:52,155 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:52,155 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:52,155 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:52,155 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:52,155 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:52,155 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:52,156 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:52,156 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:52,157 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:52,158 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:52,158 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:52,158 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:52,159 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:52,160 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:52,160 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:52,160 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:52,160 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:52,161 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:52,161 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:52,162 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:52,162 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:52,162 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:52,163 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:52,163 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:52,164 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:52,166 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:52,166 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:52,166 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:52,166 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:52,166 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:52,166 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:52,166 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:52,166 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:52,166 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:52,166 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:52,166 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:52,166 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:52,166 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:52,167 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:52,167 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:52,167 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:52,167 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:52,167 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:52,167 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:52,167 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:52,168 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:52,168 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:53,351 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:53,351 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:53,351 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:53,351 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:53,352 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:53,352 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:53,352 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:53,352 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:53,352 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:53,352 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:53,352 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:53,352 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:53,353 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:53,353 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:53,353 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:53,353 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:53,353 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:53,354 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:53,355 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:53,355 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:53,356 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:53,356 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:53,357 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:53,357 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:53,357 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:53,357 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:53,358 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:53,358 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:53,359 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:53,359 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:53,359 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:53,360 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:53,360 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:53,361 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:53,363 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:53,363 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:53,363 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:53,363 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:53,363 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:53,363 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:53,363 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:53,363 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:53,363 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:53,364 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:53,364 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:53,364 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:53,364 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:53,364 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:53,364 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:53,364 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:53,364 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:53,365 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:53,365 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:53,365 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:53,365 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:53,365 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:54,548 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:54,549 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:54,549 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:54,549 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:54,549 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:54,549 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:54,549 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:54,550 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:54,550 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:54,550 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:54,550 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:54,550 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:54,550 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:54,550 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:54,550 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:54,551 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:54,551 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:54,552 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:54,553 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:54,553 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:54,553 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:54,554 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:54,554 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:54,555 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:54,555 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:54,555 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:54,555 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:54,556 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:54,556 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:54,557 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:54,557 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:54,557 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:54,558 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:54,558 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:54,560 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:54,560 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:54,560 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:54,561 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:54,561 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:54,561 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:54,561 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:54,561 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:54,561 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:54,561 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:54,561 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:54,561 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:54,561 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:54,561 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:54,561 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:54,561 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:54,562 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:54,562 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:54,562 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:54,562 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:54,562 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:54,562 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:55,743 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:55,743 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:55,744 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:55,744 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:55,744 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:55,744 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:55,744 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:55,744 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:55,744 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:55,745 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:55,745 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:55,745 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:55,745 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:55,745 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:55,745 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:55,745 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:55,745 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:55,747 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:55,747 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:55,747 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:55,748 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:55,748 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:55,749 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:55,749 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:55,749 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:55,749 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:55,750 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:55,750 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:55,751 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:55,751 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:55,751 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:55,752 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:55,752 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:55,753 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:55,754 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:55,755 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:55,755 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:55,755 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:55,755 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:55,755 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:55,755 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:55,755 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:55,755 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:55,755 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:55,755 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:55,755 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:55,755 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:55,756 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:55,756 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:55,756 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:55,756 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:55,756 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:55,756 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:55,756 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:55,756 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:55,757 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:56,939 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:56,940 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:56,940 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:56,940 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:56,940 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:56,940 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:56,940 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:56,940 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:56,940 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:56,941 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:56,941 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:56,941 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:56,941 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:56,941 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:56,941 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:56,941 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:56,941 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:56,942 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:56,943 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:56,943 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:56,944 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:56,944 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:56,945 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:56,945 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:56,945 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:56,945 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:56,946 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:56,946 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:56,946 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:56,947 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:56,947 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:56,948 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:56,948 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:56,949 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:56,950 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:56,950 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:56,950 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:56,951 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:56,951 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:56,951 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:56,951 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:56,951 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:56,951 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:56,951 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:56,951 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:56,951 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:56,951 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:56,951 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:56,951 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:56,951 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:56,952 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:56,952 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:56,952 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:56,952 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:56,952 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:56,952 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:58,148 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:58,149 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:58,149 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:58,149 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:58,149 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:58,149 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:58,149 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:58,149 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:58,150 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:58,150 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:58,150 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:58,150 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:58,150 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:58,150 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:58,150 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:58,150 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:58,150 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:58,152 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:58,152 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:58,153 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:58,153 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:58,153 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:58,154 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:58,154 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:58,154 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:58,155 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:58,155 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:58,156 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:58,156 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:58,156 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:58,157 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:58,157 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:58,157 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:58,158 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:58,160 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:58,160 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:58,160 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:58,160 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:58,160 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:58,160 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:58,160 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:58,160 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:58,160 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:58,160 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:58,160 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:58,161 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:58,161 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:58,161 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:58,161 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:58,161 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:58,161 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:58,161 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:58,162 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:58,162 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:58,162 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:58,162 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:49:59,345 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:49:59,346 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:49:59,346 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:49:59,346 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:49:59,346 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:49:59,346 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:49:59,346 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:49:59,346 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:49:59,347 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:49:59,347 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:49:59,347 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:49:59,347 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:49:59,347 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:49:59,347 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:49:59,347 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:49:59,347 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:49:59,347 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:49:59,348 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:49:59,349 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:49:59,349 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:49:59,350 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:49:59,350 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:49:59,351 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:49:59,351 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:49:59,351 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:49:59,351 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:49:59,352 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:49:59,352 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:49:59,353 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:49:59,353 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:49:59,353 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:49:59,354 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:49:59,354 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:49:59,355 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:49:59,356 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:59,357 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:49:59,357 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:49:59,357 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:49:59,357 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:49:59,357 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:49:59,357 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:49:59,357 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:49:59,357 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:49:59,357 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:49:59,357 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:49:59,357 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:49:59,357 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:59,357 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:59,358 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:59,358 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:59,358 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:49:59,358 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:49:59,358 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:49:59,358 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:49:59,358 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:49:59,358 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:00,539 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:00,539 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:00,539 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:00,540 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:00,540 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:00,540 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:00,540 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:00,540 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:00,540 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:00,540 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:00,541 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:00,541 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:00,541 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:00,541 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:00,541 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:00,541 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:00,541 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:00,542 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:00,543 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:00,543 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:00,543 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:00,544 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:00,544 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:00,545 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:00,545 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:00,545 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:00,545 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:00,546 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:00,546 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:00,547 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:00,547 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:00,547 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:00,548 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:00,549 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:00,550 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:00,551 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:00,551 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:00,551 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:00,551 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:00,551 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:00,551 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:00,551 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:00,551 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:00,551 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:00,551 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:00,551 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:00,551 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:00,551 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:00,552 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:00,552 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:00,552 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:00,552 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:00,552 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:00,552 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:00,552 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:00,552 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:01,736 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:01,736 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:01,736 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:01,737 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:01,737 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:01,737 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:01,737 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:01,737 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:01,737 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:01,737 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:01,737 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:01,737 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:01,738 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:01,738 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:01,738 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:01,738 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:01,738 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:01,739 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:01,740 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:01,740 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:01,741 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:01,741 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:01,742 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:01,742 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:01,742 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:01,742 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:01,743 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:01,743 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:01,743 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:01,744 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:01,744 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:01,745 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:01,745 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:01,746 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:01,747 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:01,747 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:01,748 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:01,748 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:01,748 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:01,748 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:01,748 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:01,748 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:01,748 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:01,748 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:01,748 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:01,748 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:01,748 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:01,748 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:01,748 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:01,749 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:01,749 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:01,749 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:01,749 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:01,749 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:01,749 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:01,749 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:02,935 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:02,935 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:02,935 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:02,935 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:02,935 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:02,935 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:02,936 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:02,936 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:02,936 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:02,936 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:02,936 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:02,936 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:02,936 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:02,936 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:02,937 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:02,937 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:02,937 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:02,938 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:02,939 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:02,939 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:02,939 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:02,940 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:02,940 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:02,941 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:02,941 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:02,941 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:02,941 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:02,942 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:02,942 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:02,943 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:02,943 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:02,943 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:02,944 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:02,944 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:02,946 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:02,946 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:02,946 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:02,946 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:02,946 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:02,946 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:02,946 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:02,947 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:02,947 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:02,947 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:02,947 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:02,947 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:02,947 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:02,947 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:02,947 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:02,947 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:02,948 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:02,948 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:02,948 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:02,948 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:02,948 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:02,948 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:04,133 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:04,133 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:04,133 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:04,133 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:04,134 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:04,134 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:04,134 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:04,134 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:04,134 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:04,134 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:04,134 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:04,134 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:04,135 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:04,135 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:04,135 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:04,135 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:04,135 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:04,135 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:04,136 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:04,136 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:04,137 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:04,137 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:04,137 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:04,138 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:04,138 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:04,138 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:04,139 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:04,139 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:04,139 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:04,140 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:04,140 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:04,141 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:04,141 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:04,142 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:04,143 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:04,143 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:04,143 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:04,143 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:04,144 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:04,144 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:04,144 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:04,144 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:04,144 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:04,144 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:04,144 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:04,144 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:04,144 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:04,144 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:04,144 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:04,144 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:04,145 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:04,145 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:04,145 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:04,145 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:04,145 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:04,145 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:05,326 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:05,327 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:05,327 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:05,327 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:05,327 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:05,327 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:05,327 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:05,328 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:05,328 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:05,328 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:05,328 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:05,328 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:05,328 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:05,328 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:05,328 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:05,329 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:05,329 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:05,330 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:05,330 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:05,331 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:05,331 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:05,332 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:05,332 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:05,332 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:05,333 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:05,333 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:05,333 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:05,334 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:05,334 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:05,335 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:05,335 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:05,335 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:05,336 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:05,336 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:05,338 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:05,338 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:05,338 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:05,338 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:05,338 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:05,338 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:05,338 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:05,338 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:05,339 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:05,339 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:05,339 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:05,339 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:05,339 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:05,339 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:05,339 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:05,339 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:05,340 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:05,340 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:05,340 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:05,340 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:05,340 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:05,340 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:06,524 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:06,524 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:06,525 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:06,525 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:06,525 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:06,525 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:06,525 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:06,525 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:06,525 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:06,525 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:06,526 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:06,526 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:06,526 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:06,526 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:06,526 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:06,526 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:06,526 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:06,528 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:06,528 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:06,529 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:06,529 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:06,529 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:06,530 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:06,530 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:06,530 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:06,531 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:06,531 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:06,532 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:06,532 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:06,532 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:06,533 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:06,533 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:06,533 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:06,534 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:06,536 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:06,536 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:06,536 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:06,536 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:06,536 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:06,536 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:06,536 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:06,536 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:06,537 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:06,537 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:06,537 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:06,537 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:06,537 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:06,537 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:06,537 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:06,537 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:06,538 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:06,538 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:06,538 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:06,538 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:06,538 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:06,538 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:07,724 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:07,724 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:07,724 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:07,724 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:07,724 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:07,724 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:07,725 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:07,725 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:07,725 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:07,725 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:07,725 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:07,725 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:07,725 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:07,725 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:07,726 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:07,726 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:07,726 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:07,727 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:07,728 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:07,728 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:07,729 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:07,729 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:07,730 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:07,730 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:07,730 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:07,730 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:07,731 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:07,731 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:07,731 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:07,732 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:07,732 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:07,733 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:07,733 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:07,734 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:07,735 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:07,735 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:07,735 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:07,736 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:07,736 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:07,736 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:07,736 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:07,736 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:07,736 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:07,736 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:07,736 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:07,736 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:07,736 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:07,736 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:07,736 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:07,736 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:07,737 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:07,737 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:07,737 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:07,737 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:07,737 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:07,737 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:08,923 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:08,923 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:08,923 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:08,923 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:08,923 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:08,924 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:08,924 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:08,924 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:08,924 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:08,924 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:08,924 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:08,924 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:08,924 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:08,925 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:08,925 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:08,925 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:08,925 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:08,926 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:08,927 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:08,927 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:08,927 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:08,928 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:08,928 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:08,929 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:08,929 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:08,929 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:08,929 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:08,930 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:08,930 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:08,931 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:08,931 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:08,932 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:08,932 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:08,932 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:08,934 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:08,934 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:08,934 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:08,934 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:08,934 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:08,935 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:08,935 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:08,935 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:08,935 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:08,935 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:08,935 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:08,935 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:08,935 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:08,935 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:08,935 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:08,935 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:08,936 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:08,936 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:08,936 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:08,936 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:08,936 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:08,936 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:10,121 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:10,121 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:10,121 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:10,121 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:10,122 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:10,122 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:10,122 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:10,122 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:10,122 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:10,122 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:10,122 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:10,122 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:10,123 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:10,123 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:10,123 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:10,123 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:10,123 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:10,124 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:10,125 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:10,125 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:10,125 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:10,126 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:10,126 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:10,127 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:10,127 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:10,127 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:10,127 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:10,128 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:10,128 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:10,129 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:10,129 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:10,129 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:10,130 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:10,130 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:10,132 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:10,132 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:10,132 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:10,132 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:10,132 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:10,133 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:10,133 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:10,133 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:10,133 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:10,133 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:10,133 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:10,133 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:10,133 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:10,133 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:10,133 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:10,133 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:10,134 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:10,134 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:10,134 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:10,134 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:10,134 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:10,134 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:11,320 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:11,320 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:11,321 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:11,321 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:11,321 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:11,321 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:11,321 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:11,321 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:11,321 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:11,321 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:11,322 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:11,322 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:11,322 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:11,322 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:11,322 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:11,322 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:11,322 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:11,323 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:11,324 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:11,324 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:11,325 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:11,325 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:11,326 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:11,326 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:11,326 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:11,326 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:11,327 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:11,327 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:11,327 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:11,328 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:11,328 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:11,329 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:11,329 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:11,330 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:11,331 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:11,331 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:11,332 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:11,332 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:11,332 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:11,332 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:11,332 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:11,332 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:11,332 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:11,332 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:11,332 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:11,332 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:11,332 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:11,332 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:11,332 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:11,332 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:11,333 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:11,333 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:11,333 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:11,333 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:11,333 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:11,333 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:12,518 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:12,518 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:12,518 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:12,518 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:12,518 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:12,519 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:12,519 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:12,519 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:12,519 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:12,519 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:12,519 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:12,519 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:12,519 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:12,520 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:12,520 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:12,520 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:12,520 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:12,521 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:12,522 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:12,522 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:12,522 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:12,523 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:12,523 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:12,524 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:12,524 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:12,524 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:12,524 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:12,525 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:12,525 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:12,526 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:12,526 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:12,526 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:12,527 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:12,527 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:12,529 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:12,529 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:12,529 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:12,529 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:12,529 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:12,529 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:12,530 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:12,530 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:12,530 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:12,530 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:12,530 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:12,530 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:12,530 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:12,530 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:12,530 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:12,530 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:12,531 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:12,531 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:12,531 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:12,531 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:12,531 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:12,531 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:13,712 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:13,712 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:13,712 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:13,712 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:13,712 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:13,713 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:13,713 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:13,713 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:13,713 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:13,713 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:13,713 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:13,713 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:13,713 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:13,713 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:13,714 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:13,714 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:13,714 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:13,715 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:13,715 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:13,715 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:13,716 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:13,716 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:13,717 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:13,717 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:13,717 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:13,718 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:13,718 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:13,719 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:13,719 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:13,719 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:13,720 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:13,720 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:13,720 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:13,721 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:13,723 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:13,723 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:13,723 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:13,723 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:13,723 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:13,723 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:13,723 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:13,723 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:13,723 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:13,723 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:13,723 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:13,724 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:13,724 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:13,724 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:13,724 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:13,724 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:13,724 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:13,724 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:13,724 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:13,725 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:13,725 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:13,725 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:14,908 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:14,908 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:14,908 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:14,909 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:14,909 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:14,909 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:14,909 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:14,909 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:14,909 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:14,909 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:14,909 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:14,910 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:14,910 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:14,910 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:14,910 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:14,910 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:14,910 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:14,911 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:14,912 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:14,912 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:14,913 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:14,913 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:14,914 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:14,914 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:14,914 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:14,914 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:14,915 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:14,915 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:14,916 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:14,916 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:14,916 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:14,917 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:14,917 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:14,918 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:14,919 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:14,919 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:14,920 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:14,920 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:14,920 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:14,920 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:14,920 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:14,920 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:14,920 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:14,920 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:14,920 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:14,920 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:14,920 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:14,920 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:14,920 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:14,921 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:14,921 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:14,921 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:14,921 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:14,921 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:14,921 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:14,921 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:16,106 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:16,106 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:16,107 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:16,107 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:16,107 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:16,107 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:16,107 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:16,107 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:16,107 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:16,107 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:16,108 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:16,108 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:16,108 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:16,108 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:16,108 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:16,108 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:16,108 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:16,109 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:16,110 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:16,110 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:16,111 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:16,111 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:16,112 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:16,112 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:16,112 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:16,112 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:16,113 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:16,113 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:16,114 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:16,114 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:16,114 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:16,115 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:16,115 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:16,116 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:16,117 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:16,117 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:16,118 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:16,118 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:16,118 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:16,118 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:16,118 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:16,118 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:16,118 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:16,118 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:16,118 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:16,118 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:16,118 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:16,118 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:16,118 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:16,119 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:16,119 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:16,119 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:16,119 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:16,119 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:16,119 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:16,119 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:17,302 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:17,302 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:17,302 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:17,302 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:17,303 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:17,303 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:17,303 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:17,303 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:17,303 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:17,303 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:17,303 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:17,303 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:17,303 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:17,304 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:17,304 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:17,304 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:17,304 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:17,305 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:17,306 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:17,306 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:17,307 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:17,307 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:17,308 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:17,308 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:17,308 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:17,308 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:17,309 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:17,309 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:17,310 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:17,310 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:17,310 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:17,311 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:17,311 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:17,312 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:17,313 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:17,313 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:17,314 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:17,314 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:17,314 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:17,314 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:17,314 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:17,314 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:17,314 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:17,314 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:17,314 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:17,314 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:17,314 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:17,314 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:17,314 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:17,315 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:17,315 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:17,315 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:17,315 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:17,315 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:17,315 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:17,315 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:18,498 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:18,498 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:18,498 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:18,498 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:18,499 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:18,499 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:18,499 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:18,499 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:18,499 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:18,499 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:18,499 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:18,499 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:18,500 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:18,500 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:18,500 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:18,500 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:18,500 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:18,501 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:18,502 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:18,502 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:18,503 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:18,503 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:18,504 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:18,504 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:18,504 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:18,504 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:18,505 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:18,505 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:18,505 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:18,506 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:18,506 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:18,507 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:18,507 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:18,508 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:18,509 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:18,509 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:18,510 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:18,510 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:18,510 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:18,510 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:18,510 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:18,510 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:18,510 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:18,510 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:18,510 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:18,510 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:18,510 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:18,510 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:18,510 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:18,510 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:18,511 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:18,511 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:18,511 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:18,511 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:18,511 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:18,511 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:19,696 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:19,696 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:19,696 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:19,696 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:19,696 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:19,696 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:19,696 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:19,697 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:19,697 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:19,697 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:19,697 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:19,697 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:19,697 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:19,697 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:19,697 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:19,698 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:19,698 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:19,699 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:19,700 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:19,700 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:19,700 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:19,701 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:19,701 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:19,702 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:19,702 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:19,702 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:19,702 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:19,703 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:19,703 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:19,704 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:19,704 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:19,704 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:19,705 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:19,705 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:19,707 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:19,707 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:19,707 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:19,707 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:19,707 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:19,707 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:19,708 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:19,708 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:19,708 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:19,708 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:19,708 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:19,708 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:19,708 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:19,708 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:19,708 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:19,708 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:19,709 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:19,709 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:19,709 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:19,709 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:19,709 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:19,709 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:20,894 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:20,894 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:20,894 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:20,894 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:20,894 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:20,894 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:20,895 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:20,895 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:20,895 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:20,895 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:20,895 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:20,895 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:20,895 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:20,895 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:20,895 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:20,896 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:20,896 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:20,897 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:20,897 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:20,898 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:20,898 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:20,898 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:20,899 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:20,899 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:20,900 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:20,900 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:20,900 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:20,901 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:20,901 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:20,901 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:20,902 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:20,902 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:20,902 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:20,903 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:20,905 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:20,905 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:20,905 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:20,905 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:20,905 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:20,905 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:20,905 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:20,905 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:20,905 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:20,905 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:20,905 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:20,906 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:20,906 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:20,906 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:20,906 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:20,906 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:20,906 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:20,906 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:20,906 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:20,907 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:20,907 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:20,907 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:22,096 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:22,096 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:22,096 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:22,096 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:22,097 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:22,097 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:22,097 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:22,097 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:22,097 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:22,097 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:22,097 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:22,097 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:22,098 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:22,098 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:22,098 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:22,098 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:22,098 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:22,099 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:22,100 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:22,100 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:22,101 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:22,101 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:22,102 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:22,102 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:22,102 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:22,102 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:22,103 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:22,103 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:22,103 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:22,104 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:22,104 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:22,105 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:22,105 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:22,106 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:22,107 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:22,107 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:22,108 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:22,108 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:22,108 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:22,108 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:22,108 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:22,108 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:22,108 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:22,108 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:22,108 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:22,108 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:22,108 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:22,108 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:22,108 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:22,108 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:22,109 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:22,109 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:22,109 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:22,109 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:22,109 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:22,109 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:23,293 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:23,293 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:23,293 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:23,293 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:23,294 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:23,294 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:23,294 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:23,294 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:23,294 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:23,294 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:23,294 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:23,294 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:23,295 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:23,295 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:23,295 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:23,295 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:23,295 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:23,296 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:23,297 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:23,297 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:23,298 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:23,298 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:23,299 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:23,299 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:23,300 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:23,300 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:23,301 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:23,301 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:23,302 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:23,302 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:23,302 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:23,303 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:23,303 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:23,304 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:23,305 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:23,305 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:23,306 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:23,306 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:23,306 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:23,306 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:23,306 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:23,306 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:23,306 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:23,306 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:23,306 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:23,306 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:23,306 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:23,306 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:23,306 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:23,307 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:23,307 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:23,307 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:23,307 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:23,307 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:23,307 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:23,307 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:24,492 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:24,492 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:24,492 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:24,492 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:24,492 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:24,493 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:24,493 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:24,493 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:24,493 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:24,493 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:24,493 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:24,493 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:24,493 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:24,493 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:24,494 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:24,494 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:24,494 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:24,495 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:24,496 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:24,496 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:24,496 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:24,497 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:24,497 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:24,498 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:24,498 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:24,498 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:24,499 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:24,499 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:24,499 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:24,500 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:24,500 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:24,501 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:24,501 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:24,501 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:24,503 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:24,503 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:24,503 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:24,503 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:24,503 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:24,504 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:24,504 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:24,504 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:24,504 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:24,504 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:24,504 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:24,504 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:24,504 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:24,504 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:24,504 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:24,504 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:24,505 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:24,505 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:24,505 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:24,505 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:24,505 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:24,505 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:25,691 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:25,691 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:25,692 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:25,692 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:25,692 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:25,692 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:25,692 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:25,692 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:25,692 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:25,693 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:25,693 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:25,693 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:25,693 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:25,693 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:25,693 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:25,693 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:25,693 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:25,695 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:25,696 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:25,696 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:25,697 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:25,697 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:25,698 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:25,698 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:25,698 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:25,698 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:25,699 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:25,699 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:25,699 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:25,700 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:25,700 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:25,701 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:25,701 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:25,702 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:25,703 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:25,703 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:25,703 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:25,704 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:25,704 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:25,704 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:25,704 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:25,704 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:25,704 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:25,704 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:25,704 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:25,704 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:25,704 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:25,704 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:25,704 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:25,704 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:25,705 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:25,705 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:25,705 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:25,705 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:25,705 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:25,705 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:26,890 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:26,890 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:26,891 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:26,891 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:26,891 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:26,891 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:26,891 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:26,891 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:26,891 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:26,891 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:26,892 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:26,892 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:26,892 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:26,892 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:26,892 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:26,892 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:26,892 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:26,894 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:26,894 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:26,895 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:26,895 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:26,895 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:26,896 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:26,896 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:26,896 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:26,897 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:26,897 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:26,898 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:26,898 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:26,898 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:26,899 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:26,899 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:26,899 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:26,900 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:26,902 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:26,902 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:26,902 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:26,902 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:26,902 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:26,902 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:26,902 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:26,902 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:26,902 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:26,902 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:26,902 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:26,903 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:26,903 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:26,903 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:26,903 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:26,903 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:26,903 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:26,903 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:26,904 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:26,904 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:26,904 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:26,904 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:28,088 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:28,089 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:28,089 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:28,089 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:28,089 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:28,089 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:28,089 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:28,089 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:28,089 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:28,090 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:28,090 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:28,090 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:28,090 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:28,090 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:28,090 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:28,090 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:28,090 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:28,092 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:28,092 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:28,093 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:28,093 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:28,093 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:28,094 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:28,094 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:28,094 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:28,095 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:28,095 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:28,096 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:28,096 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:28,096 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:28,097 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:28,097 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:28,097 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:28,098 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:28,100 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:28,100 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:28,100 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:28,100 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:28,100 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:28,100 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:28,100 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:28,100 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:28,100 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:28,100 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:28,100 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:28,101 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:28,101 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:28,101 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:28,101 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:28,101 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:28,101 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:28,101 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:28,102 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:28,102 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:28,102 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:28,102 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:29,286 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:29,286 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:29,287 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:29,287 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:29,287 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:29,287 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:29,287 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:29,287 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:29,287 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:29,287 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:29,288 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:29,288 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:29,288 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:29,288 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:29,288 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:29,288 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:29,288 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:29,290 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:29,290 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:29,290 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:29,291 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:29,291 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:29,292 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:29,292 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:29,292 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:29,292 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:29,293 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:29,293 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:29,294 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:29,294 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:29,294 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:29,295 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:29,295 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:29,296 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:29,297 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:29,298 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:29,298 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:29,298 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:29,298 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:29,298 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:29,298 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:29,298 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:29,298 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:29,298 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:29,298 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:29,298 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:29,298 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:29,299 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:29,299 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:29,299 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:29,299 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:29,299 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:29,299 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:29,299 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:29,299 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:29,300 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:30,482 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:30,482 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:30,482 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:30,482 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:30,482 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:30,482 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:30,483 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:30,483 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:30,483 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:30,483 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:30,483 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:30,483 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:30,483 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:30,483 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:30,483 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:30,484 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:30,484 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:30,485 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:30,485 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:30,486 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:30,486 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:30,486 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:30,487 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:30,487 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:30,488 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:30,488 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:30,488 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:30,489 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:30,489 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:30,490 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:30,490 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:30,490 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:30,491 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:30,491 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:30,493 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:30,493 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:30,493 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:30,493 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:30,493 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:30,493 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:30,493 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:30,493 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:30,494 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:30,494 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:30,494 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:30,494 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:30,494 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:30,494 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:30,494 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:30,494 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:30,495 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:30,495 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:30,495 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:30,495 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:30,495 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:30,495 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:31,679 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:31,679 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:31,679 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:31,680 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:31,680 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:31,680 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:31,680 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:31,680 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:31,680 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:31,680 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:31,680 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:31,681 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:31,681 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:31,681 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:31,681 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:31,681 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:31,681 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:31,682 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:31,683 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:31,683 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:31,684 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:31,684 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:31,685 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:31,685 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:31,685 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:31,685 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:31,686 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:31,686 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:31,687 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:31,687 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:31,687 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:31,688 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:31,688 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:31,689 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:31,690 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:31,691 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:31,691 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:31,691 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:31,691 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:31,691 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:31,691 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:31,691 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:31,691 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:31,691 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:31,691 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:31,691 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:31,691 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:31,691 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:31,692 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:31,692 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:31,692 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:31,692 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:31,692 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:31,692 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:31,692 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:31,693 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:32,876 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:32,877 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:32,877 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:32,877 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:32,877 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:32,877 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:32,877 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:32,878 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:32,878 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:32,878 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:32,878 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:32,878 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:32,878 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:32,878 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:32,878 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:32,878 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:32,879 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:32,880 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:32,880 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:32,881 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:32,881 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:32,882 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:32,882 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:32,882 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:32,883 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:32,883 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:32,883 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:32,884 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:32,884 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:32,885 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:32,885 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:32,885 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:32,886 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:32,886 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:32,888 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:32,888 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:32,888 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:32,888 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:32,888 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:32,888 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:32,888 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:32,889 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:32,889 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:32,889 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:32,889 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:32,889 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:32,889 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:32,889 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:32,889 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:32,889 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:32,890 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:32,890 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:32,890 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:32,890 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:32,890 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:32,890 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:34,073 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:34,074 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:34,074 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:34,074 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:34,074 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:34,074 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:34,074 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:34,074 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:34,074 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:34,075 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:34,075 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:34,075 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:34,075 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:34,075 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:34,075 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:34,075 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:34,075 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:34,077 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:34,077 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:34,078 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:34,078 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:34,078 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:34,079 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:34,079 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:34,079 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:34,080 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:34,080 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:34,080 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:34,081 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:34,081 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:34,081 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:34,082 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:34,082 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:34,083 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:34,085 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:34,085 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:34,085 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:34,085 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:34,085 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:34,085 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:34,085 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:34,085 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:34,085 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:34,085 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:34,085 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:34,085 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:34,086 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:34,086 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:34,086 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:34,086 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:34,086 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:34,086 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:34,086 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:34,086 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:34,087 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:34,087 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:35,271 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:35,272 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:35,272 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:35,272 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:35,272 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:35,272 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:35,272 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:35,272 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:35,273 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:35,273 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:35,273 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:35,273 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:35,273 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:35,273 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:35,273 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:35,273 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:35,274 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:35,274 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:35,274 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:35,275 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:35,275 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:35,276 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:35,276 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:35,276 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:35,277 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:35,277 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:35,277 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:35,278 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:35,278 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:35,278 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:35,279 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:35,279 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:35,279 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:35,280 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:35,282 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:35,282 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:35,282 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:35,282 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:35,282 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:35,282 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:35,282 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:35,282 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:35,282 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:35,282 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:35,283 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:35,283 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:35,283 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:35,283 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:35,283 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:35,283 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:35,283 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:35,284 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:35,284 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:35,284 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:35,284 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:35,284 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:36,466 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:36,466 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:36,466 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:36,466 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:36,467 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:36,467 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:36,467 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:36,467 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:36,467 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:36,467 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:36,467 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:36,467 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:36,468 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:36,468 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:36,468 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:36,468 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:36,468 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:36,469 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:36,470 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:36,470 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:36,471 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:36,471 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:36,471 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:36,472 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:36,472 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:36,472 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:36,472 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:36,473 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:36,473 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:36,474 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:36,474 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:36,475 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:36,475 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:36,475 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:36,477 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:36,477 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:36,477 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:36,477 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:36,477 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:36,478 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:36,478 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:36,478 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:36,478 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:36,478 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:36,478 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:36,478 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:36,478 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:36,478 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:36,478 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:36,478 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:36,479 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:36,479 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:36,479 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:36,479 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:36,479 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:36,479 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:37,661 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:37,662 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:37,662 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:37,662 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:37,662 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:37,662 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:37,662 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:37,662 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:37,663 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:37,663 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:37,663 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:37,663 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:37,663 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:37,663 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:37,663 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:37,663 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:37,664 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:37,666 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:37,667 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:37,667 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:37,668 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:37,668 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:37,668 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:37,669 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:37,669 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:37,669 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:37,670 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:37,670 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:37,670 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:37,671 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:37,671 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:37,672 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:37,672 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:37,672 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:37,674 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:37,674 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:37,674 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:37,674 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:37,675 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:37,675 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:37,675 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:37,675 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:37,675 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:37,675 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:37,675 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:37,675 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:37,675 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:37,675 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:37,675 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:37,675 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:37,676 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:37,676 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:37,676 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:37,676 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:37,676 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:37,676 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:38,859 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:38,860 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:38,860 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:38,860 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:38,860 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:38,860 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:38,860 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:38,860 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:38,861 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:38,861 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:38,861 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:38,861 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:38,861 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:38,861 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:38,861 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:38,861 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:38,862 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:38,864 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:38,864 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:38,865 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:38,865 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:38,865 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:38,866 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:38,866 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:38,866 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:38,867 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:38,867 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:38,868 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:38,868 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:38,868 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:38,868 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:38,869 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:38,869 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:38,870 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:38,872 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:38,872 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:38,872 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:38,872 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:38,872 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:38,872 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:38,872 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:38,872 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:38,872 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:38,872 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:38,872 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:38,873 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:38,873 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:38,873 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:38,873 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:38,873 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:38,873 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:38,873 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:38,873 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:38,874 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:38,874 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:38,874 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:40,058 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:40,058 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:40,058 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:40,058 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:40,059 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:40,059 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:40,059 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:40,059 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:40,059 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:40,059 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:40,059 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:40,059 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:40,060 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:40,060 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:40,060 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:40,060 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:40,060 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:40,062 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:40,062 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:40,063 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:40,063 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:40,063 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:40,064 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:40,064 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:40,064 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:40,065 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:40,065 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:40,066 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:40,066 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:40,066 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:40,067 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:40,067 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:40,067 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:40,068 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:40,070 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:40,070 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:40,070 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:40,070 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:40,070 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:40,070 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:40,070 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:40,070 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:40,070 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:40,070 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:40,070 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:40,070 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:40,071 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:40,071 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:40,071 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:40,071 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:40,071 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:40,071 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:40,071 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:40,072 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:40,072 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:40,072 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:41,268 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:41,269 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:41,269 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:41,269 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:41,269 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:41,269 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:41,269 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:41,269 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:41,270 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:41,270 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:41,270 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:41,270 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:41,270 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:41,270 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:41,270 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:41,270 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:41,270 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:41,272 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:41,272 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:41,273 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:41,273 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:41,273 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:41,274 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:41,274 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:41,274 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:41,275 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:41,275 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:41,276 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:41,276 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:41,276 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:41,277 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:41,277 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:41,277 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:41,278 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:41,280 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:41,280 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:41,280 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:41,280 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:41,280 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:41,280 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:41,280 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:41,280 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:41,280 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:41,280 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:41,280 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:41,281 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:41,281 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:41,281 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:41,281 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:41,281 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:41,281 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:41,281 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:41,281 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:41,282 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:41,282 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:41,282 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:42,467 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:42,467 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:42,467 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:42,467 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:42,467 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:42,467 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:42,468 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:42,468 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:42,468 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:42,468 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:42,468 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:42,468 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:42,468 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:42,468 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:42,469 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:42,469 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:42,469 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:42,470 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:42,470 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:42,471 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:42,471 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:42,472 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:42,472 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:42,472 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:42,473 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:42,473 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:42,473 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:42,474 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:42,474 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:42,474 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:42,475 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:42,475 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:42,475 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:42,476 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:42,478 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:42,478 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:42,478 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:42,478 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:42,478 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:42,478 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:42,478 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:42,478 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:42,478 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:42,479 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:42,479 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:42,479 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:42,479 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:42,479 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:42,479 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:42,479 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:42,480 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:42,480 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:42,480 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:42,480 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:42,480 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:42,480 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:43,660 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:43,660 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:43,661 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:43,661 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:43,661 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:43,661 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:43,661 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:43,661 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:43,661 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:43,661 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:43,662 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:43,662 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:43,662 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:43,662 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:43,662 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:43,662 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:43,662 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:43,663 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:43,664 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:43,664 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:43,665 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:43,665 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:43,666 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:43,666 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:43,666 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:43,666 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:43,667 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:43,667 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:43,668 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:43,668 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:43,668 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:43,669 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:43,669 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:43,670 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:43,671 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:43,672 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:43,672 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:43,672 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:43,672 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:43,672 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:43,672 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:43,672 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:43,672 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:43,672 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:43,672 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:43,672 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:43,672 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:43,672 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:43,673 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:43,673 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:43,673 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:43,673 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:43,673 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:43,673 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:43,673 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:43,673 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:44,858 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:44,858 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:44,858 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:44,858 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:44,858 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:44,858 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:44,859 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:44,859 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:44,859 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:44,859 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:44,859 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:44,859 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:44,859 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:44,859 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:44,860 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:44,860 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:44,860 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:44,861 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:44,862 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:44,862 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:44,863 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:44,863 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:44,864 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:44,864 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:44,864 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:44,865 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:44,865 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:44,866 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:44,866 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:44,866 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:44,867 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:44,867 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:44,867 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:44,868 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:44,870 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:44,870 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:44,870 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:44,870 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:44,870 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:44,870 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:44,870 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:44,870 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:44,870 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:44,870 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:44,870 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:44,871 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:44,871 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:44,871 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:44,871 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:44,871 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:44,871 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:44,871 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:44,872 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:44,872 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:44,872 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:44,872 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:46,056 root DEBUG Async action: Retrieve applied config: bridge docker0 started
2022-06-24 09:50:46,057 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 started
2022-06-24 09:50:46,057 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 started
2022-06-24 09:50:46,057 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 started
2022-06-24 09:50:46,057 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface started
2022-06-24 09:50:46,057 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface started
2022-06-24 09:50:46,057 root DEBUG Async action: Retrieve applied config: bond bond0 started
2022-06-24 09:50:46,057 root DEBUG Async action: Retrieve applied config: ovs-port bond0 started
2022-06-24 09:50:46,057 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge started
2022-06-24 09:50:46,058 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface started
2022-06-24 09:50:46,058 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface started
2022-06-24 09:50:46,058 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface started
2022-06-24 09:50:46,058 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface started
2022-06-24 09:50:46,058 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface started
2022-06-24 09:50:46,058 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface started
2022-06-24 09:50:46,058 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface started
2022-06-24 09:50:46,058 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface started
2022-06-24 09:50:46,059 root DEBUG Async action: Retrieve applied config: bridge docker0 finished
2022-06-24 09:50:46,060 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f0 finished
2022-06-24 09:50:46,060 root DEBUG Async action: Retrieve applied config: ethernet enp175s0f1 finished
2022-06-24 09:50:46,061 root DEBUG Async action: Retrieve applied config: ethernet enp220s0f1 finished
2022-06-24 09:50:46,061 root DEBUG Async action: Retrieve applied config: ovs-interface bm25c_ext_iface finished
2022-06-24 09:50:46,062 root DEBUG Async action: Retrieve applied config: ovs-port bm25c_ext_iface finished
2022-06-24 09:50:46,062 root DEBUG Async action: Retrieve applied config: bond bond0 finished
2022-06-24 09:50:46,062 root DEBUG Async action: Retrieve applied config: ovs-port bond0 finished
2022-06-24 09:50:46,062 root DEBUG Async action: Retrieve applied config: ovs-bridge data_bridge finished
2022-06-24 09:50:46,063 root DEBUG Async action: Retrieve applied config: ovs-interface nex_iface finished
2022-06-24 09:50:46,063 root DEBUG Async action: Retrieve applied config: ovs-port nex_iface finished
2022-06-24 09:50:46,064 root DEBUG Async action: Retrieve applied config: ovs-interface nex_mgmt_iface finished
2022-06-24 09:50:46,064 root DEBUG Async action: Retrieve applied config: ovs-port nex_mgmt_iface finished
2022-06-24 09:50:46,064 root DEBUG Async action: Retrieve applied config: ovs-interface traffic1_iface finished
2022-06-24 09:50:46,065 root DEBUG Async action: Retrieve applied config: ovs-port traffic1_iface finished
2022-06-24 09:50:46,065 root DEBUG Async action: Retrieve applied config: ovs-interface traffic5_iface finished
2022-06-24 09:50:46,066 root DEBUG Async action: Retrieve applied config: ovs-port traffic5_iface finished
2022-06-24 09:50:46,068 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:46,068 root DEBUG Interface bond.bond0 found. Merging the interface information.
2022-06-24 09:50:46,068 root DEBUG Interface ethernet.enp175s0f0 found. Merging the interface information.
2022-06-24 09:50:46,068 root DEBUG Interface ethernet.enp175s0f1 found. Merging the interface information.
2022-06-24 09:50:46,068 root DEBUG Interface ethernet.enp175s10 found. Merging the interface information.
2022-06-24 09:50:46,068 root DEBUG Interface ethernet.enp175s10f1 found. Merging the interface information.
2022-06-24 09:50:46,068 root DEBUG Interface ethernet.enp175s10f2 found. Merging the interface information.
2022-06-24 09:50:46,068 root DEBUG Interface ethernet.enp175s10f3 found. Merging the interface information.
2022-06-24 09:50:46,068 root DEBUG Interface ethernet.enp220s0f0 found. Merging the interface information.
2022-06-24 09:50:46,068 root DEBUG Interface ethernet.enp220s0f1 found. Merging the interface information.
2022-06-24 09:50:46,068 root DEBUG Interface ethernet.enp61s0f0 found. Merging the interface information.
2022-06-24 09:50:46,068 root DEBUG Interface ethernet.enp61s0f1 found. Merging the interface information.
2022-06-24 09:50:46,068 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:46,069 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:46,069 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:46,069 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:46,069 root DEBUG Interface ovs-interface.traffic1_iface found. Merging the interface information.
2022-06-24 09:50:46,069 root DEBUG Interface ovs-interface.nex_mgmt_iface found. Merging the interface information.
2022-06-24 09:50:46,069 root DEBUG Interface ovs-interface.traffic5_iface found. Merging the interface information.
2022-06-24 09:50:46,069 root DEBUG Interface ovs-interface.bm25c_ext_iface found. Merging the interface information.
2022-06-24 09:50:46,070 root DEBUG Interface ovs-interface.nex_iface found. Merging the interface information.
2022-06-24 09:50:46,070 root DEBUG Interface ovs-bridge.data_bridge found. Merging the interface information.
2022-06-24 09:50:46,206 root DEBUG Async action: Rollback to checkpoint /org/freedesktop/NetworkManager/Checkpoint/2 started
2022-06-24 09:50:46,229 root DEBUG Checkpoint /org/freedesktop/NetworkManager/Checkpoint/2 rollback executed
2022-06-24 09:50:46,230 root DEBUG Interface calif53a9eb98a1 rollback succeeded
2022-06-24 09:50:46,230 root DEBUG Interface calida900316cc5 rollback succeeded
2022-06-24 09:50:46,230 root DEBUG Interface enp175s10f3 rollback succeeded
2022-06-24 09:50:46,230 root DEBUG Interface calia99a1bb8ee9 rollback succeeded
2022-06-24 09:50:46,230 root DEBUG Interface enp61s0f1 rollback succeeded
2022-06-24 09:50:46,230 root DEBUG Async action: Waiting activation of traffic5_iface ovs-interface started
2022-06-24 09:50:46,231 root DEBUG Interface traffic5_iface rollback succeeded
2022-06-24 09:50:46,231 root DEBUG Interface bond0 rollback succeeded
2022-06-24 09:50:46,231 root DEBUG Async action: Waiting activation of nex_iface ovs-interface started
2022-06-24 09:50:46,231 root DEBUG Interface nex_iface rollback succeeded
2022-06-24 09:50:46,231 root DEBUG Interface enp220s0f0 rollback succeeded
2022-06-24 09:50:46,231 root DEBUG Interface enp175s10f2 rollback succeeded
2022-06-24 09:50:46,232 root DEBUG Interface calib96cc3302e7 rollback succeeded
2022-06-24 09:50:46,232 root DEBUG Interface cali8c2b09b676c rollback succeeded
2022-06-24 09:50:46,232 root DEBUG Interface enp175s10f1 rollback succeeded
2022-06-24 09:50:46,232 root DEBUG Interface docker0 rollback succeeded
2022-06-24 09:50:46,232 root DEBUG Interface enp175s0f1 rollback succeeded
2022-06-24 09:50:46,232 root DEBUG Interface calif23672b198d rollback succeeded
2022-06-24 09:50:46,232 root DEBUG Async action: Waiting activation of traffic5_iface ovs-port started
2022-06-24 09:50:46,232 root DEBUG Interface traffic5_iface rollback succeeded
2022-06-24 09:50:46,233 root DEBUG Interface enp175s0f0 rollback succeeded
2022-06-24 09:50:46,233 root DEBUG Interface bond0 rollback succeeded
2022-06-24 09:50:46,233 root DEBUG Interface lo rollback succeeded
2022-06-24 09:50:46,233 root DEBUG Async action: Waiting activation of nex_iface ovs-port started
2022-06-24 09:50:46,233 root DEBUG Interface nex_iface rollback succeeded
2022-06-24 09:50:46,233 root DEBUG Async action: Waiting activation of traffic1_iface ovs-interface started
2022-06-24 09:50:46,234 root DEBUG Interface traffic1_iface rollback succeeded
2022-06-24 09:50:46,234 root DEBUG Interface cali42864e06b62 rollback succeeded
2022-06-24 09:50:46,234 root DEBUG Interface bm25c_ext_iface rollback succeeded
2022-06-24 09:50:46,234 root DEBUG Interface enp220s0f1 rollback succeeded
2022-06-24 09:50:46,234 root DEBUG Interface nodelocaldns rollback succeeded
2022-06-24 09:50:46,234 root DEBUG Interface bm25c_ext_iface rollback succeeded
2022-06-24 09:50:46,234 root DEBUG Interface califc98bd11b92 rollback succeeded
2022-06-24 09:50:46,234 root DEBUG Interface enp175s10 rollback succeeded
2022-06-24 09:50:46,234 root DEBUG Interface cali2f5aa77a8f0 rollback succeeded
2022-06-24 09:50:46,235 root DEBUG Interface calicc0a40c459a rollback succeeded
2022-06-24 09:50:46,235 root DEBUG Interface calif82fefdcfb0 rollback succeeded
2022-06-24 09:50:46,235 root DEBUG Interface cali926ab4dd007 rollback succeeded
2022-06-24 09:50:46,235 root DEBUG Interface cali567a4fa3087 rollback succeeded
2022-06-24 09:50:46,235 root DEBUG Interface kube-ipvs0 rollback succeeded
2022-06-24 09:50:46,235 root DEBUG Async action: Waiting activation of nex_mgmt_iface ovs-interface started
2022-06-24 09:50:46,235 root DEBUG Interface nex_mgmt_iface rollback succeeded
2022-06-24 09:50:46,236 root DEBUG Interface cali78a3d85bbf6 rollback succeeded
2022-06-24 09:50:46,236 root DEBUG Interface enp61s0f0 rollback succeeded
2022-06-24 09:50:46,236 root DEBUG Interface data_bridge rollback succeeded
2022-06-24 09:50:46,236 root DEBUG Async action: Waiting activation of traffic1_iface ovs-port started
2022-06-24 09:50:46,236 root DEBUG Interface traffic1_iface rollback succeeded
2022-06-24 09:50:46,236 root DEBUG Async action: Waiting activation of nex_mgmt_iface ovs-port started
2022-06-24 09:50:46,236 root DEBUG Interface nex_mgmt_iface rollback succeeded
2022-06-24 09:50:46,237 root DEBUG Interface calif8b447fdf19 rollback succeeded
2022-06-24 09:50:46,237 root DEBUG Async action: Rollback to checkpoint /org/freedesktop/NetworkManager/Checkpoint/2 finished
2022-06-24 09:50:46,260 root DEBUG Active connection of device nex_iface has been replaced
2022-06-24 09:50:46,262 root DEBUG Active connection of device nex_mgmt_iface has been replaced
2022-06-24 09:50:46,295 root DEBUG Active connection of device traffic5_iface has been replaced
2022-06-24 09:50:46,297 root DEBUG Active connection of device traffic1_iface has been replaced
2022-06-24 09:50:46,299 root DEBUG Connection activation succeeded: iface=nex_iface, type=ovs-port, con_state=<enum NM_ACTIVE_CONNECTION_STATE_ACTIVATING of type NM.ActiveConnectionState>, dev_state=<enum NM_DEVICE_STATE_IP_CONFIG of type NM.DeviceState>, state_flags=<flags NM_ACTIVATION_STATE_FLAG_IS_MASTER | NM_ACTIVATION_STATE_FLAG_IS_SLAVE | NM_ACTIVATION_STATE_FLAG_LAYER2_READY of type NM.ActivationStateFlags>
2022-06-24 09:50:46,299 root DEBUG Async action: Waiting activation of nex_iface ovs-port finished
2022-06-24 09:50:46,300 root DEBUG Connection activation succeeded: iface=nex_mgmt_iface, type=ovs-port, con_state=<enum NM_ACTIVE_CONNECTION_STATE_ACTIVATING of type NM.ActiveConnectionState>, dev_state=<enum NM_DEVICE_STATE_IP_CONFIG of type NM.DeviceState>, state_flags=<flags NM_ACTIVATION_STATE_FLAG_IS_MASTER | NM_ACTIVATION_STATE_FLAG_IS_SLAVE | NM_ACTIVATION_STATE_FLAG_LAYER2_READY of type NM.ActivationStateFlags>
2022-06-24 09:50:46,300 root DEBUG Async action: Waiting activation of nex_mgmt_iface ovs-port finished
2022-06-24 09:50:46,301 root DEBUG Active connection of device nex_iface has been replaced
2022-06-24 09:50:46,303 root DEBUG Connection activation succeeded: iface=traffic5_iface, type=ovs-port, con_state=<enum NM_ACTIVE_CONNECTION_STATE_ACTIVATING of type NM.ActiveConnectionState>, dev_state=<enum NM_DEVICE_STATE_IP_CONFIG of type NM.DeviceState>, state_flags=<flags NM_ACTIVATION_STATE_FLAG_IS_MASTER | NM_ACTIVATION_STATE_FLAG_IS_SLAVE | NM_ACTIVATION_STATE_FLAG_LAYER2_READY of type NM.ActivationStateFlags>
2022-06-24 09:50:46,303 root DEBUG Async action: Waiting activation of traffic5_iface ovs-port finished
2022-06-24 09:50:46,305 root DEBUG Connection activation succeeded: iface=traffic1_iface, type=ovs-port, con_state=<enum NM_ACTIVE_CONNECTION_STATE_ACTIVATING of type NM.ActiveConnectionState>, dev_state=<enum NM_DEVICE_STATE_IP_CONFIG of type NM.DeviceState>, state_flags=<flags NM_ACTIVATION_STATE_FLAG_IS_MASTER | NM_ACTIVATION_STATE_FLAG_IS_SLAVE | NM_ACTIVATION_STATE_FLAG_LAYER2_READY of type NM.ActivationStateFlags>
2022-06-24 09:50:46,305 root DEBUG Async action: Waiting activation of traffic1_iface ovs-port finished
2022-06-24 09:50:46,468 root DEBUG Active connection of device traffic5_iface has been replaced
2022-06-24 09:50:46,496 root DEBUG Active connection of device traffic1_iface has been replaced
2022-06-24 09:50:46,498 root ERROR Rollback failed with error Waiting activation of traffic1_iface ovs-interface failed: reason=<enum NM_ACTIVE_CONNECTION_STATE_REASON_DEVICE_DISCONNECTED of type NM.ActiveConnectionStateReason><enum NM_DEVICE_STATE_REASON_DEPENDENCY_FAILED of type NM.DeviceStateReason>
Traceback (most recent call last):
File "/usr/bin/nmstatectl", line 11, in <module>
load_entry_point('nmstate==1.2.0', 'console_scripts', 'nmstatectl')()
File "/usr/lib/python3.6/site-packages/nmstatectl/nmstatectl.py", line 74, in main
return args.func(args)
File "/usr/lib/python3.6/site-packages/nmstatectl/nmstatectl.py", line 338, in set
return apply(args)
File "/usr/lib/python3.6/site-packages/nmstatectl/nmstatectl.py", line 355, in apply
args.save_to_disk,
File "/usr/lib/python3.6/site-packages/nmstatectl/nmstatectl.py", line 419, in apply_state
save_to_disk=save_to_disk,
File "/usr/lib/python3.6/site-packages/libnmstate/netapplier.py", line 89, in apply
_apply_ifaces_state(plugins, net_state, verify_change, save_to_disk)
File "/usr/lib/python3.6/site-packages/libnmstate/netapplier.py", line 140, in _apply_ifaces_state
_verify_change(plugins, net_state)
File "/usr/lib/python3.6/site-packages/libnmstate/netapplier.py", line 155, in _verify_change
net_state.verify(current_state)
File "/usr/lib/python3.6/site-packages/libnmstate/net_state.py", line 88, in verify
self._route.verify(current_state.get(Route.KEY))
File "/usr/lib/python3.6/site-packages/libnmstate/route.py", line 299, in verify
{Route.KEY: {Route.CONFIG: cur_routes_info}},
libnmstate.error.NmstateVerificationError:
desired
=======
---
routes:
config:
- destination: 0.0.0.0/0
metric: 804
next-hop-address: 16.16.5.129
next-hop-interface: traffic5_iface
table-id: 200
- destination: 16.16.5.129/32
metric: 804
next-hop-address: 0.0.0.0
next-hop-interface: traffic5_iface
table-id: 200
- destination: 16.16.5.0/24
metric: 804
next-hop-address: 16.16.5.129
next-hop-interface: traffic5_iface
table-id: 254
- destination: 16.16.1.0/24
next-hop-address: 10.221.150.98
next-hop-interface: traffic5_iface
table-id: 255
current
=======
---
routes:
config:
- destination: 0.0.0.0/0
metric: 804
next-hop-address: 16.16.5.129
next-hop-interface: traffic5_iface
table-id: 200
- destination: 16.16.5.129/32
metric: 804
next-hop-address: 0.0.0.0
next-hop-interface: traffic5_iface
table-id: 200
- destination: 16.16.5.0/24
metric: 804
next-hop-address: 16.16.5.129
next-hop-interface: traffic5_iface
table-id: 254
difference
==========
--- desired
+++ current
@@ -16,7 +16,3 @@
next-hop-address: 16.16.5.129
next-hop-interface: traffic5_iface
table-id: 254
- - destination: 16.16.1.0/24
- next-hop-address: 10.221.150.98
- next-hop-interface: traffic5_iface
- table-id: 255
ovs-vswitchd logs:
2022-06-23T09:52:05.242Z|00052|ofproto_dpif|INFO|system@ovs-system: Datapath does not support IPv6 ND Extensions
2022-06-23T09:52:05.329Z|00053|bridge|INFO|bridge data_bridge: added interface bm25c_ext_iface on port 1
2022-06-23T09:52:05.330Z|00054|bridge|INFO|bridge data_bridge: using datapath ID 0000b6f14cb4d746
2022-06-23T09:52:05.330Z|00055|connmgr|INFO|data_bridge: added service controller "punix:/run/openvswitch/data_bridge.mgmt"
2022-06-23T09:52:05.422Z|00056|bridge|INFO|bridge data_bridge: added interface traffic1_iface on port 2
2022-06-23T09:52:05.429Z|00057|bridge|INFO|bridge data_bridge: added interface nex_mgmt_iface on port 3
2022-06-23T09:52:05.433Z|00001|ofproto_dpif_upcall(handler162)|INFO|received packet on unassociated datapath port 2
2022-06-23T09:52:05.436Z|00058|bridge|INFO|bridge data_bridge: added interface nex_iface on port 4
2022-06-23T09:52:05.463Z|00059|bridge|INFO|bridge data_bridge: added interface traffic5_iface on port 5
2022-06-23T09:52:05.464Z|00060|bridge|INFO|bridge data_bridge: added interface bond0 on port 6
2022-06-23T09:52:05.465Z|00061|bridge|INFO|bridge data_bridge: using datapath ID 00003cfdfed40e2c
2022-06-23T09:52:05.724Z|00062|bridge|INFO|bridge data_bridge: using datapath ID 0000b6f14cb4d746
2022-06-23T09:52:06.100Z|00063|bridge|INFO|bridge data_bridge: using datapath ID 00003cfdfed40e2c
2022-06-23T09:52:12.139Z|00064|memory|INFO|196296 kB peak resident set size after 10.0 seconds
2022-06-23T09:52:12.139Z|00065|memory|INFO|handlers:59 ports:6 revalidators:21 rules:5 udpif keys:14
2022-06-24T09:50:46.214Z|00066|bridge|INFO|bridge data_bridge: deleted interface nex_iface on port 4
2022-06-24T09:50:46.307Z|00067|bridge|INFO|bridge data_bridge: deleted interface traffic5_iface on port 5
2022-06-24T09:50:46.307Z|00068|bridge|INFO|bridge data_bridge: deleted interface traffic1_iface on port 2
2022-06-24T09:50:46.307Z|00069|bridge|INFO|bridge data_bridge: deleted interface nex_mgmt_iface on port 3
2022-06-24T09:50:46.573Z|00070|bridge|INFO|bridge data_bridge: added interface nex_iface on port 7
2022-06-24T09:50:46.610Z|00071|bridge|INFO|bridge data_bridge: added interface traffic5_iface on port 8
2022-06-24T09:50:46.619Z|00072|bridge|INFO|bridge data_bridge: added interface nex_mgmt_iface on port 9
2022-06-24T09:50:46.621Z|00001|ofproto_dpif_upcall(handler163)|INFO|received packet on unassociated datapath port 3
NetworkManager logs:
2022-06-24T09:50:46.207924+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2071] checkpoint[0xd474f0]: rollback of /org/freedesktop/NetworkManager/Checkpoint/2
2022-06-24T09:50:46.208730+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2086] device (nex_iface): state change: activated -> deactivating (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.209110+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2089] device (nex_iface): released from master device data_bridge
2022-06-24T09:50:46.210446+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2103] device (nex_mgmt_iface): state change: activated -> deactivating (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.211852+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2107] device (nex_mgmt_iface): released from master device data_bridge
2022-06-24T09:50:46.212417+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2123] device (nex_iface): state change: activated -> deactivating (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.212780+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2126] device (nex_iface): releasing ovs interface nex_iface
2022-06-24T09:50:46.213077+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2129] device (nex_iface): released from master device nex_iface
2022-06-24T09:50:46.214752+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2146] device (traffic5_iface): state change: activated -> deactivating (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.215169+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2150] device (traffic5_iface): released from master device data_bridge
2022-06-24T09:50:46.217922+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2167] device (traffic1_iface): state change: activated -> deactivating (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.218330+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2170] device (traffic1_iface): releasing ovs interface traffic1_iface
2022-06-24T09:50:46.218804+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2172] device (traffic1_iface): released from master device traffic1_iface
2022-06-24T09:50:46.219326+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2192] device (traffic5_iface): state change: activated -> deactivating (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.219684+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2196] device (traffic5_iface): releasing ovs interface traffic5_iface
2022-06-24T09:50:46.219930+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2197] device (traffic5_iface): released from master device traffic5_iface
2022-06-24T09:50:46.221463+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2213] device (traffic1_iface): state change: activated -> deactivating (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.221791+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2217] device (traffic1_iface): released from master device data_bridge
2022-06-24T09:50:46.223367+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2232] device (nex_mgmt_iface): state change: activated -> deactivating (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.223720+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2236] device (nex_mgmt_iface): releasing ovs interface nex_mgmt_iface
2022-06-24T09:50:46.223982+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2238] device (nex_mgmt_iface): released from master device nex_mgmt_iface
2022-06-24T09:50:46.225163+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2250] audit: op="checkpoint-rollback" arg="/org/freedesktop/NetworkManager/Checkpoint/2" pid=44802 uid=0 result="success"
2022-06-24T09:50:46.248073+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2479] device (nex_iface): disconnecting for new activation request.
2022-06-24T09:50:46.248353+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2481] device (nex_mgmt_iface): disconnecting for new activation request.
2022-06-24T09:50:46.248637+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2484] device (nex_iface): disconnecting for new activation request.
2022-06-24T09:50:46.248930+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2486] device (traffic5_iface): disconnecting for new activation request.
2022-06-24T09:50:46.249575+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2488] device (traffic1_iface): disconnecting for new activation request.
2022-06-24T09:50:46.249855+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2491] device (traffic5_iface): disconnecting for new activation request.
2022-06-24T09:50:46.250125+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2493] device (traffic1_iface): disconnecting for new activation request.
2022-06-24T09:50:46.250391+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2496] device (nex_mgmt_iface): disconnecting for new activation request.
2022-06-24T09:50:46.250681+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2496] device (nex_iface): state change: deactivating -> disconnected (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.250951+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2500] device (nex_iface): Activation: starting connection 'nex_iface-port' (696cabd0-dc32-46af-9b15-077da796fa9d)
2022-06-24T09:50:46.251235+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2504] device (nex_mgmt_iface): state change: deactivating -> disconnected (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.251510+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2509] device (nex_mgmt_iface): Activation: starting connection 'nex_mgmt_iface-port' (76506ad3-35a1-482a-9b20-6f0bed32360f)
2022-06-24T09:50:46.251776+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2513] device (traffic5_iface): state change: deactivating -> disconnected (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.252057+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2517] device (traffic5_iface): Activation: starting connection 'traffic5_iface-port' (3b929159-0624-4b11-951e-038b5bd5209d)
2022-06-24T09:50:46.252350+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2521] device (traffic1_iface): state change: deactivating -> disconnected (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.252666+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2525] device (traffic1_iface): Activation: starting connection 'traffic1_iface-port' (03f1c766-d4d9-4390-aaf8-a91a925b767c)
2022-06-24T09:50:46.253646+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2535] device (nex_iface): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.253973+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2538] device (nex_iface): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.254229+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2540] device (nex_mgmt_iface): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.254489+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2544] device (nex_mgmt_iface): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.254767+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2545] device (nex_iface): state change: deactivating -> disconnected (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.293513+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2933] device (nex_iface): Activation: starting connection 'nex_iface-if' (6f3ebd6a-966a-42e9-a46b-42e6b5b12716)
2022-06-24T09:50:46.294513+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2943] device (traffic5_iface): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.295145+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2950] device (traffic5_iface): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.295494+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2953] device (traffic1_iface): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.296092+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2959] device (traffic1_iface): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.296799+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2966] device (nex_iface): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.297085+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2969] device (nex_iface): Activation: connection 'nex_iface-port' enslaved, continuing activation
2022-06-24T09:50:46.297382+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2971] device (nex_iface): state change: ip-config -> secondaries (reason 'ip-config-unavailable', sys-iface-state: 'managed')
2022-06-24T09:50:46.297646+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2975] device (nex_mgmt_iface): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.297919+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2977] device (nex_mgmt_iface): Activation: connection 'nex_mgmt_iface-port' enslaved, continuing activation
2022-06-24T09:50:46.298205+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2980] device (nex_mgmt_iface): state change: ip-config -> secondaries (reason 'ip-config-unavailable', sys-iface-state: 'managed')
2022-06-24T09:50:46.298771+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2986] device (nex_iface): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.299431+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2993] device (nex_iface): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.299782+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2996] device (traffic5_iface): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.300083+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.2999] device (traffic5_iface): Activation: connection 'traffic5_iface-port' enslaved, continuing activation
2022-06-24T09:50:46.300374+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.3001] device (traffic5_iface): state change: ip-config -> secondaries (reason 'ip-config-unavailable', sys-iface-state: 'managed')
2022-06-24T09:50:46.300639+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.3004] device (traffic1_iface): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.300897+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.3007] device (traffic1_iface): Activation: connection 'traffic1_iface-port' enslaved, continuing activation
2022-06-24T09:50:46.301179+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.3009] device (traffic1_iface): state change: ip-config -> secondaries (reason 'ip-config-unavailable', sys-iface-state: 'managed')
2022-06-24T09:50:46.301447+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.3012] device (nex_iface): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.302047+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.3019] device (nex_iface): Activation: successful, device activated.
2022-06-24T09:50:46.302626+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.3025] device (nex_mgmt_iface): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.303324+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.3032] device (nex_mgmt_iface): Activation: successful, device activated.
2022-06-24T09:50:46.303962+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.3038] device (nex_iface): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.304963+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.3048] device (nex_iface): Activation: connection 'nex_iface-if' enslaved, continuing activation
2022-06-24T09:50:46.305247+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.3051] device (traffic5_iface): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.305930+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.3058] device (traffic5_iface): Activation: successful, device activated.
2022-06-24T09:50:46.306510+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.3064] device (traffic1_iface): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.307211+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.3071] device (traffic1_iface): Activation: successful, device activated.
2022-06-24T09:50:46.340781+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.3406] device (traffic5_iface): state change: deactivating -> disconnected (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.423952+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.4237] device (traffic5_iface): Activation: starting connection 'traffic5_iface-if' (c95cf4fa-cdc2-406c-a332-2d41d33e7622)
2022-06-24T09:50:46.425423+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.4252] device (traffic1_iface): state change: deactivating -> disconnected (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.465770+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.4655] device (traffic1_iface): Activation: starting connection 'traffic1_iface-if' (b38c394a-50b4-45f0-86c5-d36963d6d64f)
2022-06-24T09:50:46.467245+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.4671] device (traffic5_iface): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.467941+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.4678] device (traffic5_iface): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.495487+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.4953] device (traffic1_iface): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.495851+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.4957] device (traffic1_iface): state change: prepare -> failed (reason 'dependency-failed', sys-iface-state: 'managed')
2022-06-24T09:50:46.496316+00:00 pool2-bm25c6 NetworkManager[3870]: <warn> [1656064246.4961] device (traffic1_iface): Activation: failed for connection 'traffic1_iface-if'
2022-06-24T09:50:46.496656+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.4962] device (nex_mgmt_iface): state change: deactivating -> disconnected (reason 'new-activation', sys-iface-state: 'managed')
2022-06-24T09:50:46.533569+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.5333] device (nex_mgmt_iface): Activation: starting connection 'nex_mgmt_iface-if' (d4cc9a95-51bc-4918-b061-325a3204469d)
2022-06-24T09:50:46.534557+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.5344] device (traffic5_iface): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.535606+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.5355] device (traffic5_iface): Activation: connection 'traffic5_iface-if' enslaved, continuing activation
2022-06-24T09:50:46.536683+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.5365] device (traffic1_iface): state change: failed -> disconnected (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.537294+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.5372] device (nex_mgmt_iface): state change: disconnected -> prepare (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.537970+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.5378] device (nex_mgmt_iface): state change: prepare -> config (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.539048+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.5389] device (traffic1_iface): state change: disconnected -> unmanaged (reason 'user-requested', sys-iface-state: 'managed')
2022-06-24T09:50:46.539782+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.5396] device (nex_mgmt_iface): state change: config -> ip-config (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.540785+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.5406] device (nex_mgmt_iface): Activation: connection 'nex_mgmt_iface-if' enslaved, continuing activation
2022-06-24T09:50:46.586835+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.5867] device (nex_iface): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.589683+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.5895] device (nex_iface): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.590065+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.5899] device (nex_iface): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.591001+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.5909] device (nex_iface): Activation: successful, device activated.
2022-06-24T09:50:46.618154+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.6180] device (traffic5_iface): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.622980+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.6228] device (traffic5_iface): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.625072+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.6249] device (traffic5_iface): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.626151+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.6260] device (traffic5_iface): Activation: successful, device activated.
2022-06-24T09:50:46.629699+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.6295] device (nex_mgmt_iface): state change: ip-config -> ip-check (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.632478+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.6323] device (nex_mgmt_iface): state change: ip-check -> secondaries (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.633380+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.6332] device (nex_mgmt_iface): state change: secondaries -> activated (reason 'none', sys-iface-state: 'managed')
2022-06-24T09:50:46.634313+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064246.6342] device (nex_mgmt_iface): Activation: successful, device activated.
2022-06-24T10:00:00.870606+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064800.8698] manager: (cali7c5051411ed): new Veth device (/org/freedesktop/NetworkManager/Devices/444)
2022-06-24T10:00:00.871629+00:00 pool2-bm25c6 NetworkManager[3870]: <info> [1656064800.8715] device (cali7c5051411ed): carrier: link connected
syslog:
2022-06-24T09:50:46.211523+00:00 pool2-bm25c6 dbus-daemon[2349]: [system] Activating via systemd: service name='org.freedesktop.nm_dispatcher' unit='dbus-org.freedesktop.nm-dispatcher.service' requested by ':1.21' (uid=0 pid=3870 comm="/usr/sbin/NetworkManager --no-daemon ")
2022-06-24T09:50:46.216038+00:00 pool2-bm25c6 kernel: [86364.266749] device nex_iface left promiscuous mode
2022-06-24T09:50:46.217556+00:00 pool2-bm25c6 systemd[1]: Starting Network Manager Script Dispatcher Service...
2022-06-24T09:50:46.229639+00:00 pool2-bm25c6 dbus-daemon[2349]: [system] Successfully activated service 'org.freedesktop.nm_dispatcher'
2022-06-24T09:50:46.230265+00:00 pool2-bm25c6 systemd[1]: Started Network Manager Script Dispatcher Service.
2022-06-24T09:50:46.308039+00:00 pool2-bm25c6 kernel: [86364.359717] device traffic5_iface left promiscuous mode
2022-06-24T09:50:46.384034+00:00 pool2-bm25c6 kernel: [86364.432628] device traffic1_iface left promiscuous mode
2022-06-24T09:50:46.468035+00:00 pool2-bm25c6 kernel: [86364.516548] device nex_mgmt_iface left promiscuous mode
2022-06-24T09:50:46.575003+00:00 pool2-bm25c6 systemd-udevd[47700]: Using default interface naming scheme 'sle15-sp3'.
2022-06-24T09:50:46.576062+00:00 pool2-bm25c6 kernel: [86364.624915] device nex_iface entered promiscuous mode
2022-06-24T09:50:46.582031+00:00 pool2-bm25c6 systemd-udevd[47700]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
2022-06-24T09:50:46.582268+00:00 pool2-bm25c6 systemd-udevd[47700]: nex_iface: Could not generate persistent MAC: No data available
2022-06-24T09:50:46.611382+00:00 pool2-bm25c6 systemd-udevd[47700]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
2022-06-24T09:50:46.611617+00:00 pool2-bm25c6 systemd-udevd[47700]: traffic5_iface: Could not generate persistent MAC: No data available
2022-06-24T09:50:46.612048+00:00 pool2-bm25c6 kernel: [86364.662156] device traffic5_iface entered promiscuous mode
2022-06-24T09:50:46.620029+00:00 pool2-bm25c6 kernel: [86364.671037] device nex_mgmt_iface entered promiscuous mode
2022-06-24T09:50:46.620636+00:00 pool2-bm25c6 systemd-udevd[47701]: Using default interface naming scheme 'sle15-sp3'.
2022-06-24T09:50:46.620913+00:00 pool2-bm25c6 systemd-udevd[47701]: ethtool: autonegotiation is unset or enabled, the speed and duplex are not writable.
2022-06-24T09:50:46.621075+00:00 pool2-bm25c6 systemd-udevd[47701]: nex_mgmt_iface: Could not generate persistent MAC: No data available
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment