Status: Pass 13 Failure 22
| Test Group/Test case | Count | Pass | Fail | Error | Skip | View | |
| setUpClass (whitebox_neutron_tempest_plugin.tests.scenario.test_internal_dns | 1 | 0 | 1 | 0 | 0 | Detail | |
InternalDNSTestOvn) |
fail
ft1.1: setUpClass (whitebox_neutron_tempest_plugin.tests.scenario.test_internal_dns.InternalDNSTestOvn)testtools.testresult.real._StringException: Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f4b25c82a90>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 185, in setUpClass
raise value.with_traceback(trace)
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 170, in setUpClass
cls.setup_credentials()
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 118, in setup_credentials
super(BaseNetworkTest, cls).setup_credentials()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 398, in setup_credentials
manager = cls.get_client_manager(
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 90, in get_client_manager
manager = super(BaseNetworkTest, cls).get_client_manager(
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 727, in get_client_manager
cred_provider = cls._get_credentials_provider()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 702, in _get_credentials_provider
cls._creds_provider = credentials.get_credentials_provider(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 141, in get_credentials_provider
**get_dynamic_provider_params(identity_version))
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 72, in get_dynamic_provider_params
admin_creds = admin_creds or get_configured_admin_credentials(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 257, in get_configured_admin_credentials
credentials = get_credentials(fill_in=fill_in,
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 300, in get_credentials
return auth.get_credentials(auth_url,
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 653, in get_credentials
creds = auth_provider.fill_credentials()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 122, in fill_credentials
auth_data = self.get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 148, in get_auth
self.set_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 157, in set_auth
self.cache = self._get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 312, in _get_auth
token, auth_data = auth_func(**auth_params)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 190, in get_token
body = self.auth(**kwargs)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 143, in auth
resp, body = self.post(self.auth_url, body=body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 165, in request
resp, resp_body = self.raw_request(url, method,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 78, in request
return self.request_encode_body(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 170, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='keystone-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v3/auth/tokens (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f4b25c82a90>: Failed to establish a new connection: [Errno 111] Connection refused'))
|
||||||
| setUpClass (whitebox_neutron_tempest_plugin.tests.scenario.test_multicast | 2 | 0 | 2 | 0 | 0 | Detail | |
MulticastTestIPv4Ovn) |
fail
ft2.1: setUpClass (whitebox_neutron_tempest_plugin.tests.scenario.test_multicast.MulticastTestIPv4Ovn)testtools.testresult.real._StringException: Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7fc721182580>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 185, in setUpClass
raise value.with_traceback(trace)
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 170, in setUpClass
cls.setup_credentials()
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 118, in setup_credentials
super(BaseNetworkTest, cls).setup_credentials()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 398, in setup_credentials
manager = cls.get_client_manager(
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 90, in get_client_manager
manager = super(BaseNetworkTest, cls).get_client_manager(
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 727, in get_client_manager
cred_provider = cls._get_credentials_provider()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 702, in _get_credentials_provider
cls._creds_provider = credentials.get_credentials_provider(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 141, in get_credentials_provider
**get_dynamic_provider_params(identity_version))
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 72, in get_dynamic_provider_params
admin_creds = admin_creds or get_configured_admin_credentials(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 257, in get_configured_admin_credentials
credentials = get_credentials(fill_in=fill_in,
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 300, in get_credentials
return auth.get_credentials(auth_url,
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 653, in get_credentials
creds = auth_provider.fill_credentials()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 122, in fill_credentials
auth_data = self.get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 148, in get_auth
self.set_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 157, in set_auth
self.cache = self._get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 312, in _get_auth
token, auth_data = auth_func(**auth_params)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 190, in get_token
body = self.auth(**kwargs)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 143, in auth
resp, body = self.post(self.auth_url, body=body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 165, in request
resp, resp_body = self.raw_request(url, method,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 78, in request
return self.request_encode_body(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 170, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='keystone-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v3/auth/tokens (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc721182580>: Failed to establish a new connection: [Errno 111] Connection refused'))
|
||||||
MulticastTestIPv4Common) |
fail
ft2.2: setUpClass (whitebox_neutron_tempest_plugin.tests.scenario.test_multicast.MulticastTestIPv4Common)testtools.testresult.real._StringException: Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f0b411441c0>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 185, in setUpClass
raise value.with_traceback(trace)
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 170, in setUpClass
cls.setup_credentials()
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 118, in setup_credentials
super(BaseNetworkTest, cls).setup_credentials()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 398, in setup_credentials
manager = cls.get_client_manager(
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 90, in get_client_manager
manager = super(BaseNetworkTest, cls).get_client_manager(
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 727, in get_client_manager
cred_provider = cls._get_credentials_provider()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 702, in _get_credentials_provider
cls._creds_provider = credentials.get_credentials_provider(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 141, in get_credentials_provider
**get_dynamic_provider_params(identity_version))
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 72, in get_dynamic_provider_params
admin_creds = admin_creds or get_configured_admin_credentials(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 257, in get_configured_admin_credentials
credentials = get_credentials(fill_in=fill_in,
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 300, in get_credentials
return auth.get_credentials(auth_url,
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 653, in get_credentials
creds = auth_provider.fill_credentials()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 122, in fill_credentials
auth_data = self.get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 148, in get_auth
self.set_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 157, in set_auth
self.cache = self._get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 312, in _get_auth
token, auth_data = auth_func(**auth_params)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 190, in get_token
body = self.auth(**kwargs)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 143, in auth
resp, body = self.post(self.auth_url, body=body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 165, in request
resp, resp_body = self.raw_request(url, method,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 78, in request
return self.request_encode_body(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 170, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='keystone-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v3/auth/tokens (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b411441c0>: Failed to establish a new connection: [Errno 111] Connection refused'))
|
||||||
| setUpClass (whitebox_neutron_tempest_plugin.tests.scenario.test_qos | 4 | 0 | 4 | 0 | 0 | Detail | |
QosTestSriovMinBwPlacementEnforcementTest) |
fail
ft3.1: setUpClass (whitebox_neutron_tempest_plugin.tests.scenario.test_qos.QosTestSriovMinBwPlacementEnforcementTest)testtools.testresult.real._StringException: Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 446, in _make_request
six.raise_from(e, None)
File "<string>", line 3, in raise_from
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 441, in _make_request
httplib_response = conn.getresponse()
File "/usr/lib64/python3.9/http/client.py", line 1377, in getresponse
response.begin()
File "/usr/lib64/python3.9/http/client.py", line 320, in begin
version, status, reason = self._read_status()
File "/usr/lib64/python3.9/http/client.py", line 289, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
http.client.RemoteDisconnected: Remote end closed connection without response
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 185, in setUpClass
raise value.with_traceback(trace)
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 178, in setUpClass
cls.resource_setup()
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_qos.py", line 1348, in resource_setup
super(QosTestSriovMinBwPlacementEnforcementTest, cls).resource_setup()
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_qos.py", line 132, in resource_setup
cls.router = cls.create_router_by_client()
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/scenario/base.py", line 230, in create_router_by_client
router = cls.create_router(**kwargs)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 656, in create_router
return cls._create_router_with_client(cls.client, *args, **kwargs)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 647, in _create_router_with_client
body = client.create_router(
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/services/network/json/network_client.py", line 366, in create_router
resp, body = self.post(uri, body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 78, in request
return self.request_encode_body(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 170, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 534, in increment
raise six.reraise(type(error), error, _stacktrace)
File "/usr/lib/python3.9/site-packages/urllib3/packages/six.py", line 708, in reraise
raise value.with_traceback(tb)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 446, in _make_request
six.raise_from(e, None)
File "<string>", line 3, in raise_from
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 441, in _make_request
httplib_response = conn.getresponse()
File "/usr/lib64/python3.9/http/client.py", line 1377, in getresponse
response.begin()
File "/usr/lib64/python3.9/http/client.py", line 320, in begin
version, status, reason = self._read_status()
File "/usr/lib64/python3.9/http/client.py", line 289, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
urllib3.exceptions.ProtocolError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
|
||||||
QosTestCommon) |
fail
ft3.2: setUpClass (whitebox_neutron_tempest_plugin.tests.scenario.test_qos.QosTestCommon)testtools.testresult.real._StringException: Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 446, in _make_request
six.raise_from(e, None)
File "<string>", line 3, in raise_from
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 441, in _make_request
httplib_response = conn.getresponse()
File "/usr/lib64/python3.9/http/client.py", line 1377, in getresponse
response.begin()
File "/usr/lib64/python3.9/http/client.py", line 320, in begin
version, status, reason = self._read_status()
File "/usr/lib64/python3.9/http/client.py", line 289, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
http.client.RemoteDisconnected: Remote end closed connection without response
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 185, in setUpClass
raise value.with_traceback(trace)
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 178, in setUpClass
cls.resource_setup()
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_qos.py", line 170, in resource_setup
cls.ctl_subnet = cls.create_subnet(
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 512, in create_subnet
body = client.create_subnet(
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/services/network/json/network_client.py", line 146, in _create
resp, body = self.post(uri, post_data)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 78, in request
return self.request_encode_body(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 170, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 534, in increment
raise six.reraise(type(error), error, _stacktrace)
File "/usr/lib/python3.9/site-packages/urllib3/packages/six.py", line 708, in reraise
raise value.with_traceback(tb)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 446, in _make_request
six.raise_from(e, None)
File "<string>", line 3, in raise_from
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 441, in _make_request
httplib_response = conn.getresponse()
File "/usr/lib64/python3.9/http/client.py", line 1377, in getresponse
response.begin()
File "/usr/lib64/python3.9/http/client.py", line 320, in begin
version, status, reason = self._read_status()
File "/usr/lib64/python3.9/http/client.py", line 289, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
urllib3.exceptions.ProtocolError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
|
||||||
QosTestSriovBwLimitTest) |
fail
ft3.3: setUpClass (whitebox_neutron_tempest_plugin.tests.scenario.test_qos.QosTestSriovBwLimitTest)testtools.testresult.real._StringException: Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7ff30ee57a90>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 185, in setUpClass
raise value.with_traceback(trace)
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 170, in setUpClass
cls.setup_credentials()
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 118, in setup_credentials
super(BaseNetworkTest, cls).setup_credentials()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 398, in setup_credentials
manager = cls.get_client_manager(
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 90, in get_client_manager
manager = super(BaseNetworkTest, cls).get_client_manager(
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 727, in get_client_manager
cred_provider = cls._get_credentials_provider()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 702, in _get_credentials_provider
cls._creds_provider = credentials.get_credentials_provider(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 141, in get_credentials_provider
**get_dynamic_provider_params(identity_version))
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 72, in get_dynamic_provider_params
admin_creds = admin_creds or get_configured_admin_credentials(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 257, in get_configured_admin_credentials
credentials = get_credentials(fill_in=fill_in,
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 300, in get_credentials
return auth.get_credentials(auth_url,
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 653, in get_credentials
creds = auth_provider.fill_credentials()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 122, in fill_credentials
auth_data = self.get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 148, in get_auth
self.set_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 157, in set_auth
self.cache = self._get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 312, in _get_auth
token, auth_data = auth_func(**auth_params)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 190, in get_token
body = self.auth(**kwargs)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 143, in auth
resp, body = self.post(self.auth_url, body=body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 165, in request
resp, resp_body = self.raw_request(url, method,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 78, in request
return self.request_encode_body(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 170, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='keystone-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v3/auth/tokens (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7ff30ee57a90>: Failed to establish a new connection: [Errno 111] Connection refused'))
|
||||||
QosTestDscpInheritanceOvn) |
fail
ft3.4: setUpClass (whitebox_neutron_tempest_plugin.tests.scenario.test_qos.QosTestDscpInheritanceOvn)testtools.testresult.real._StringException: Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f4b1dd3cb80>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 185, in setUpClass
raise value.with_traceback(trace)
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 170, in setUpClass
cls.setup_credentials()
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 118, in setup_credentials
super(BaseNetworkTest, cls).setup_credentials()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 398, in setup_credentials
manager = cls.get_client_manager(
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 90, in get_client_manager
manager = super(BaseNetworkTest, cls).get_client_manager(
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 727, in get_client_manager
cred_provider = cls._get_credentials_provider()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 702, in _get_credentials_provider
cls._creds_provider = credentials.get_credentials_provider(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 141, in get_credentials_provider
**get_dynamic_provider_params(identity_version))
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 72, in get_dynamic_provider_params
admin_creds = admin_creds or get_configured_admin_credentials(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 257, in get_configured_admin_credentials
credentials = get_credentials(fill_in=fill_in,
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 300, in get_credentials
return auth.get_credentials(auth_url,
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 653, in get_credentials
creds = auth_provider.fill_credentials()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 122, in fill_credentials
auth_data = self.get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 148, in get_auth
self.set_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 157, in set_auth
self.cache = self._get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 312, in _get_auth
token, auth_data = auth_func(**auth_params)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 190, in get_token
body = self.auth(**kwargs)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 143, in auth
resp, body = self.post(self.auth_url, body=body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 165, in request
resp, resp_body = self.raw_request(url, method,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 78, in request
return self.request_encode_body(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 170, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='keystone-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v3/auth/tokens (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f4b1dd3cb80>: Failed to establish a new connection: [Errno 111] Connection refused'))
|
||||||
| setUpClass (whitebox_neutron_tempest_plugin.tests.scenario.test_vlan_transparency | 2 | 0 | 2 | 0 | 0 | Detail | |
MultiVlanTransparencyTest) |
fail
ft4.1: setUpClass (whitebox_neutron_tempest_plugin.tests.scenario.test_vlan_transparency.MultiVlanTransparencyTest)testtools.testresult.real._StringException: Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7fc71a10af40>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 185, in setUpClass
raise value.with_traceback(trace)
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 170, in setUpClass
cls.setup_credentials()
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 118, in setup_credentials
super(BaseNetworkTest, cls).setup_credentials()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 398, in setup_credentials
manager = cls.get_client_manager(
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 90, in get_client_manager
manager = super(BaseNetworkTest, cls).get_client_manager(
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 727, in get_client_manager
cred_provider = cls._get_credentials_provider()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 702, in _get_credentials_provider
cls._creds_provider = credentials.get_credentials_provider(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 141, in get_credentials_provider
**get_dynamic_provider_params(identity_version))
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 72, in get_dynamic_provider_params
admin_creds = admin_creds or get_configured_admin_credentials(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 257, in get_configured_admin_credentials
credentials = get_credentials(fill_in=fill_in,
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 300, in get_credentials
return auth.get_credentials(auth_url,
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 653, in get_credentials
creds = auth_provider.fill_credentials()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 122, in fill_credentials
auth_data = self.get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 148, in get_auth
self.set_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 157, in set_auth
self.cache = self._get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 312, in _get_auth
token, auth_data = auth_func(**auth_params)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 190, in get_token
body = self.auth(**kwargs)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 143, in auth
resp, body = self.post(self.auth_url, body=body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 165, in request
resp, resp_body = self.raw_request(url, method,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 78, in request
return self.request_encode_body(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 170, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='keystone-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v3/auth/tokens (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc71a10af40>: Failed to establish a new connection: [Errno 111] Connection refused'))
|
||||||
MultiPortVlanTransparencyTest) |
fail
ft4.2: setUpClass (whitebox_neutron_tempest_plugin.tests.scenario.test_vlan_transparency.MultiPortVlanTransparencyTest)testtools.testresult.real._StringException: Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 185, in setUpClass
raise value.with_traceback(trace)
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 170, in setUpClass
cls.setup_credentials()
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 118, in setup_credentials
super(BaseNetworkTest, cls).setup_credentials()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 398, in setup_credentials
manager = cls.get_client_manager(
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 90, in get_client_manager
manager = super(BaseNetworkTest, cls).get_client_manager(
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 727, in get_client_manager
cred_provider = cls._get_credentials_provider()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 702, in _get_credentials_provider
cls._creds_provider = credentials.get_credentials_provider(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 141, in get_credentials_provider
**get_dynamic_provider_params(identity_version))
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 72, in get_dynamic_provider_params
admin_creds = admin_creds or get_configured_admin_credentials(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 257, in get_configured_admin_credentials
credentials = get_credentials(fill_in=fill_in,
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 300, in get_credentials
return auth.get_credentials(auth_url,
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 653, in get_credentials
creds = auth_provider.fill_credentials()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 122, in fill_credentials
auth_data = self.get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 148, in get_auth
self.set_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 157, in set_auth
self.cache = self._get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 312, in _get_auth
token, auth_data = auth_func(**auth_params)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 190, in get_token
body = self.auth(**kwargs)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 143, in auth
resp, body = self.post(self.auth_url, body=body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 172, in request
raise exceptions.IdentityError(
tempest.lib.exceptions.IdentityError: Got identity error
Details: Unexpected status code 500
|
||||||
| setUpClass (whitebox_neutron_tempest_plugin.tests.scenario.test_vrrp | 1 | 0 | 1 | 0 | 0 | Detail | |
VrrpTest) |
fail
ft5.1: setUpClass (whitebox_neutron_tempest_plugin.tests.scenario.test_vrrp.VrrpTest)testtools.testresult.real._StringException: Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f0b3bc97b50>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 185, in setUpClass
raise value.with_traceback(trace)
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 170, in setUpClass
cls.setup_credentials()
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 118, in setup_credentials
super(BaseNetworkTest, cls).setup_credentials()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 398, in setup_credentials
manager = cls.get_client_manager(
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 90, in get_client_manager
manager = super(BaseNetworkTest, cls).get_client_manager(
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 727, in get_client_manager
cred_provider = cls._get_credentials_provider()
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 702, in _get_credentials_provider
cls._creds_provider = credentials.get_credentials_provider(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 141, in get_credentials_provider
**get_dynamic_provider_params(identity_version))
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 72, in get_dynamic_provider_params
admin_creds = admin_creds or get_configured_admin_credentials(
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 257, in get_configured_admin_credentials
credentials = get_credentials(fill_in=fill_in,
File "/usr/lib/python3.9/site-packages/tempest/common/credentials_factory.py", line 300, in get_credentials
return auth.get_credentials(auth_url,
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 653, in get_credentials
creds = auth_provider.fill_credentials()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 122, in fill_credentials
auth_data = self.get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 148, in get_auth
self.set_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 157, in set_auth
self.cache = self._get_auth()
File "/usr/lib/python3.9/site-packages/tempest/lib/auth.py", line 312, in _get_auth
token, auth_data = auth_func(**auth_params)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 190, in get_token
body = self.auth(**kwargs)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 143, in auth
resp, body = self.post(self.auth_url, body=body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/services/identity/v3/token_client.py", line 165, in request
resp, resp_body = self.raw_request(url, method,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 78, in request
return self.request_encode_body(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 170, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='keystone-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v3/auth/tokens (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b3bc97b50>: Failed to establish a new connection: [Errno 111] Connection refused'))
|
||||||
| tearDownClass (whitebox_neutron_tempest_plugin.tests.scenario.test_broadcast | 1 | 0 | 1 | 0 | 0 | Detail | |
BroadcastTestVlanTransparency) |
fail
ft6.1: tearDownClass (whitebox_neutron_tempest_plugin.tests.scenario.test_broadcast.BroadcastTestVlanTransparency)testtools.testresult.real._StringException: Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f0b3bdbbb20>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 246, in tearDownClass
raise value.with_traceback(trace)
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 210, in tearDownClass
teardown()
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 192, in resource_cleanup
cls._try_delete_resource(cls.delete_floatingip, floating_ip)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 333, in _try_delete_resource
delete_callable(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 716, in delete_floatingip
client.delete_floatingip(floating_ip['id'])
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/services/network/json/network_client.py", line 113, in _delete
resp, body = self.delete(uri)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 359, in delete
return self.request('DELETE', url, extra_headers, headers, body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 74, in request
return self.request_encode_url(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 96, in request_encode_url
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='neutron-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v2.0/floatingips/69bedec5-2156-4adf-b311-7ed5d2057b74 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b3bdbbb20>: Failed to establish a new connection: [Errno 111] Connection refused'))
|
||||||
| tearDownClass (whitebox_neutron_tempest_plugin.tests.scenario.test_extra_dhcp_opts | 2 | 0 | 2 | 0 | 0 | Detail | |
ExtraDhcpOptionsTest) |
fail
ft7.1: tearDownClass (whitebox_neutron_tempest_plugin.tests.scenario.test_extra_dhcp_opts.ExtraDhcpOptionsTest)testtools.testresult.real._StringException: Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f4b22deedf0>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 246, in tearDownClass
raise value.with_traceback(trace)
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 210, in tearDownClass
teardown()
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 192, in resource_cleanup
cls._try_delete_resource(cls.delete_floatingip, floating_ip)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 333, in _try_delete_resource
delete_callable(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 716, in delete_floatingip
client.delete_floatingip(floating_ip['id'])
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/services/network/json/network_client.py", line 113, in _delete
resp, body = self.delete(uri)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 359, in delete
return self.request('DELETE', url, extra_headers, headers, body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 74, in request
return self.request_encode_url(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 96, in request_encode_url
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='neutron-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v2.0/floatingips/9f8348f2-018c-4a53-b535-d05e131e1fdc (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f4b22deedf0>: Failed to establish a new connection: [Errno 111] Connection refused'))
|
||||||
OvnExtraDhcpOptionsTest) |
fail
ft7.2: tearDownClass (whitebox_neutron_tempest_plugin.tests.scenario.test_extra_dhcp_opts.OvnExtraDhcpOptionsTest)testtools.testresult.real._StringException: Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7fc7209e5190>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 246, in tearDownClass
raise value.with_traceback(trace)
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 210, in tearDownClass
teardown()
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 209, in resource_cleanup
cls._try_delete_resource(cls.delete_router,
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 333, in _try_delete_resource
delete_callable(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 920, in delete_router
client.remove_router_extra_routes(router['id'])
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/services/network/json/network_client.py", line 476, in remove_router_extra_routes
self.update_router(router_id, routes=None)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/services/network/json/network_client.py", line 418, in update_router
return self._update_router(router_id, set_enable_snat=False, **kwargs)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/services/network/json/network_client.py", line 373, in _update_router
resp, body = self.get(uri)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 342, in get
return self.request('GET', url, extra_headers, headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 74, in request
return self.request_encode_url(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 96, in request_encode_url
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='neutron-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v2.0/routers/8672238a-9a9d-4415-88a2-500616ad086e (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc7209e5190>: Failed to establish a new connection: [Errno 111] Connection refused'))
|
||||||
| tearDownClass (whitebox_neutron_tempest_plugin.tests.scenario.test_security_groups | 1 | 0 | 1 | 0 | 0 | Detail | |
NetworkDefaultSecGroupTest) |
fail
ft8.1: tearDownClass (whitebox_neutron_tempest_plugin.tests.scenario.test_security_groups.NetworkDefaultSecGroupTest)testtools.testresult.real._StringException: Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 246, in tearDownClass
raise value.with_traceback(trace)
File "/usr/lib/python3.9/site-packages/tempest/test.py", line 210, in tearDownClass
teardown()
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 192, in resource_cleanup
cls._try_delete_resource(cls.delete_floatingip, floating_ip)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 333, in _try_delete_resource
delete_callable(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 716, in delete_floatingip
client.delete_floatingip(floating_ip['id'])
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/services/network/json/network_client.py", line 113, in _delete
resp, body = self.delete(uri)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 359, in delete
return self.request('DELETE', url, extra_headers, headers, body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 762, in request
self._error_checker(resp, resp_body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 946, in _error_checker
raise exceptions.UnexpectedResponseCode(str(resp.status),
tempest.lib.exceptions.UnexpectedResponseCode: Unexpected response code received
Details: 503
|
||||||
| whitebox_neutron_tempest_plugin.tests.scenario.test_broadcast.BroadcastTestVlanTransparency | 1 | 0 | 1 | 0 | 0 | Detail | |
test_broadcast_vlan_transparency[id-7ea12762-31af-4bf2-9219-c54212171010] |
fail
ft9.1: whitebox_neutron_tempest_plugin.tests.scenario.test_broadcast.BroadcastTestVlanTransparency.test_broadcast_vlan_transparency[id-7ea12762-31af-4bf2-9219-c54212171010]testtools.testresult.real._StringException: pythonlogging:'': {{{
2026-03-13 10:58:16,298 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/ports 2.638s
2026-03-13 10:58:16,298 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"port": {"network_id": "abf5125e-2ddd-4d4d-9207-62a9e5795b5e", "security_groups": ["98c2e656-981c-45c8-8a22-8690b5481ef5"], "allowed_address_pairs": [{"ip_address": "192.168.111.10/24"}]}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:16 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '991', 'x-openstack-request-id': 'req-358a1b30-f2b0-4c76-992c-22853e301906', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/ports'}
Body: b'{"port":{"id":"7645db3f-eea8-41e3-bffa-48774da96fd8","name":"","network_id":"abf5125e-2ddd-4d4d-9207-62a9e5795b5e","tenant_id":"75a99164fa9e49e296861ee9cee088f5","mac_address":"fa:16:3e:4e:67:11","admin_state_up":true,"status":"DOWN","device_id":"","device_owner":"","fixed_ips":[{"subnet_id":"0c6afb05-e8cd-4451-8be2-e46953405c2e","ip_address":"10.100.0.4"}],"project_id":"75a99164fa9e49e296861ee9cee088f5","qos_policy_id":null,"port_security_enabled":true,"security_groups":["98c2e656-981c-45c8-8a22-8690b5481ef5"],"binding:vnic_type":"normal","allowed_address_pairs":[{"mac_address":"fa:16:3e:4e:67:11","ip_address":"192.168.111.10/24"}],"extra_dhcp_opts":[],"description":"","qos_network_policy_id":null,"dns_name":"","dns_assignment":[{"ip_address":"10.100.0.4","hostname":"host-10-100-0-4","fqdn":"host-10-100-0-4.openstackgate.local."}],"dns_domain":"","ip_allocation":"immediate","tags":[],"created_at":"2026-03-13T10:58:14Z","updated_at":"2026-03-13T10:58:15Z","revision_number":1}}'
2026-03-13 10:58:20,512 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 202 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers 4.213s
2026-03-13 10:58:20,512 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"server": {"flavorRef": "22222222-2222-2222-2222-222222222222", "imageRef": "11111111-1111-1111-1111-111111111111", "key_name": "tempest-keypair-test-1346459391", "networks": [{"port": "7645db3f-eea8-41e3-bffa-48774da96fd8"}], "security_groups": [{"name": "secgroup_l2_flood"}], "name": "tempest-broadcast-sender-123-1061357972"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:16 GMT', 'server': 'Apache', 'content-length': '430', 'location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-6231612c-f63c-4bf5-827b-d6147c04496e', 'x-compute-request-id': 'req-6231612c-f63c-4bf5-827b-d6147c04496e', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '202', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "security_groups": [{"name": "secgroup_l2_flood"}], "adminPass": "xK5wJwt6Y8Y8"}}'
2026-03-13 10:58:21,982 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 1.468s
2026-03-13 10:58:21,983 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:20 GMT', 'server': 'Apache', 'content-length': '1382', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-d5c78120-5e67-45da-b4c9-a78c9a6bccbd', 'x-compute-request-id': 'req-d5c78120-5e67-45da-b4c9-a78c9a6bccbd', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "name": "tempest-broadcast-sender-123-1061357972", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T10:58:20Z", "updated": "2026-03-13T10:58:21Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "OS-EXT-STS:task_state": "scheduling", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 10:58:27,224 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 4.237s
2026-03-13 10:58:27,225 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:22 GMT', 'server': 'Apache', 'content-length': '1492', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-61b64c34-a313-41d6-9305-33041791f656', 'x-compute-request-id': 'req-61b64c34-a313-41d6-9305-33041791f656', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "name": "tempest-broadcast-sender-123-1061357972", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T10:58:20Z", "updated": "2026-03-13T10:58:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 10:58:27,228 40 INFO [tempest.common.waiters] State transition "BUILD/scheduling" ==> "BUILD/spawning" after 6 second wait
2026-03-13 10:58:29,513 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 1.284s
2026-03-13 10:58:29,513 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:28 GMT', 'server': 'Apache', 'content-length': '1492', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-bb6ffd50-0495-4664-8a8d-9e1d8abdc1fb', 'x-compute-request-id': 'req-bb6ffd50-0495-4664-8a8d-9e1d8abdc1fb', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "name": "tempest-broadcast-sender-123-1061357972", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T10:58:20Z", "updated": "2026-03-13T10:58:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 10:58:32,918 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 2.397s
2026-03-13 10:58:32,918 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:30 GMT', 'server': 'Apache', 'content-length': '1492', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-a6f180b4-bd04-48a8-9cd4-5826b6a62153', 'x-compute-request-id': 'req-a6f180b4-bd04-48a8-9cd4-5826b6a62153', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "name": "tempest-broadcast-sender-123-1061357972", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T10:58:20Z", "updated": "2026-03-13T10:58:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 10:58:36,523 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 2.599s
2026-03-13 10:58:36,524 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:33 GMT', 'server': 'Apache', 'content-length': '1492', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-e231c241-d9bb-473e-b98f-4b28ac82d806', 'x-compute-request-id': 'req-e231c241-d9bb-473e-b98f-4b28ac82d806', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "name": "tempest-broadcast-sender-123-1061357972", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T10:58:20Z", "updated": "2026-03-13T10:58:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 10:58:38,163 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 0.635s
2026-03-13 10:58:38,163 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:37 GMT', 'server': 'Apache', 'content-length': '1492', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-7cff6cf2-f021-4e13-a7fc-7d95cf28cc4e', 'x-compute-request-id': 'req-7cff6cf2-f021-4e13-a7fc-7d95cf28cc4e', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "name": "tempest-broadcast-sender-123-1061357972", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T10:58:20Z", "updated": "2026-03-13T10:58:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 10:58:39,594 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 0.426s
2026-03-13 10:58:39,595 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:39 GMT', 'server': 'Apache', 'content-length': '1492', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-e8ba0ae0-9694-44ef-a2b6-377b91ebb124', 'x-compute-request-id': 'req-e8ba0ae0-9694-44ef-a2b6-377b91ebb124', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "name": "tempest-broadcast-sender-123-1061357972", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T10:58:20Z", "updated": "2026-03-13T10:58:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 10:58:41,424 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 0.824s
2026-03-13 10:58:41,424 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:40 GMT', 'server': 'Apache', 'content-length': '1492', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-24b537be-9109-47e8-b7bb-a04e8a20a268', 'x-compute-request-id': 'req-24b537be-9109-47e8-b7bb-a04e8a20a268', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "name": "tempest-broadcast-sender-123-1061357972", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T10:58:20Z", "updated": "2026-03-13T10:58:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 10:58:43,424 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 0.996s
2026-03-13 10:58:43,425 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:42 GMT', 'server': 'Apache', 'content-length': '1492', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-4057c5bc-bb3d-426c-a8ba-a48a4e783b88', 'x-compute-request-id': 'req-4057c5bc-bb3d-426c-a8ba-a48a4e783b88', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "name": "tempest-broadcast-sender-123-1061357972", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T10:58:20Z", "updated": "2026-03-13T10:58:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 10:58:45,026 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 0.596s
2026-03-13 10:58:45,026 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:44 GMT', 'server': 'Apache', 'content-length': '1492', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-d9d4d811-ceaf-4a80-89ec-65b52568f4fd', 'x-compute-request-id': 'req-d9d4d811-ceaf-4a80-89ec-65b52568f4fd', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "name": "tempest-broadcast-sender-123-1061357972", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T10:58:20Z", "updated": "2026-03-13T10:58:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 10:58:46,811 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 0.779s
2026-03-13 10:58:46,811 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:46 GMT', 'server': 'Apache', 'content-length': '1492', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-13018038-df33-4185-bf20-1a86462891e0', 'x-compute-request-id': 'req-13018038-df33-4185-bf20-1a86462891e0', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "name": "tempest-broadcast-sender-123-1061357972", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T10:58:20Z", "updated": "2026-03-13T10:58:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 10:58:48,294 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 0.476s
2026-03-13 10:58:48,294 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:47 GMT', 'server': 'Apache', 'content-length': '1492', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-894c0cd6-6abf-4914-b758-efbbd417985d', 'x-compute-request-id': 'req-894c0cd6-6abf-4914-b758-efbbd417985d', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "name": "tempest-broadcast-sender-123-1061357972", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T10:58:20Z", "updated": "2026-03-13T10:58:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 10:58:50,228 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 0.930s
2026-03-13 10:58:50,229 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:49 GMT', 'server': 'Apache', 'content-length': '1492', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-b3707bac-ac32-4f61-8a14-e00c5efa18a2', 'x-compute-request-id': 'req-b3707bac-ac32-4f61-8a14-e00c5efa18a2', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "name": "tempest-broadcast-sender-123-1061357972", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T10:58:20Z", "updated": "2026-03-13T10:58:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 10:58:52,174 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 0.935s
2026-03-13 10:58:52,174 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:51 GMT', 'server': 'Apache', 'content-length': '1662', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-4ff355aa-f707-481c-84c8-c78f9d64fbd9', 'x-compute-request-id': 'req-4ff355aa-f707-481c-84c8-c78f9d64fbd9', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "name": "tempest-broadcast-sender-123-1061357972", "status": "ACTIVE", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T10:58:20Z", "updated": "2026-03-13T10:58:50Z", "addresses": {"tempest-test-network--450998678": [{"version": 4, "addr": "10.100.0.4", "OS-EXT-IPS:type": "fixed", "OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:4e:67:11"}]}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "True", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": "2026-03-13T10:58:50.000000", "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-STS:power_state": 1, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 10:58:52,181 40 INFO [tempest.common.waiters] State transition "BUILD/spawning" ==> "ACTIVE/None" after 31 second wait
2026-03-13 10:58:52,305 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.123s
2026-03-13 10:58:52,306 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:52 GMT', 'server': 'Apache', 'content-length': '14', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-f9187818-b881-4491-a470-3a57f5c48578', 'x-compute-request-id': 'req-f9187818-b881-4491-a470-3a57f5c48578', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": ""}'
2026-03-13 10:58:57,442 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.131s
2026-03-13 10:58:57,442 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:58:57 GMT', 'server': 'Apache', 'content-length': '14', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-7b45ff23-215b-445c-97f7-d62aafaddd03', 'x-compute-request-id': 'req-7b45ff23-215b-445c-97f7-d62aafaddd03', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": ""}'
2026-03-13 10:59:02,602 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.153s
2026-03-13 10:59:02,603 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:59:02 GMT', 'server': 'Apache', 'content-length': '67809', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-12e1b3ea-3a45-4402-b52a-a8dd76cc642c', 'x-compute-request-id': 'req-12e1b3ea-3a45-4402-b52a-a8dd76cc642c', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7269888482 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000817] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001115] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001126] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003762] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003775] Using GB pages for direct mapping\\n[ 0.003874] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003931] ACPI: Early table checksum verification disabled\\n[ 0.003935] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003939] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003944] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003949] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003951] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003953] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003955] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003957] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003959] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003960] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003961] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003962] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003963] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003963] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005118] No NUMA configuration found\\n[ 0.005120] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005129] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005366] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005379] Zone ranges:\\n[ 0.005380] DMA
2026-03-13 10:59:08,228 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.618s
2026-03-13 10:59:08,229 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:59:07 GMT', 'server': 'Apache', 'content-length': '88188', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-0b181f7c-5eac-48a3-9e44-70058bbba94e', 'x-compute-request-id': 'req-0b181f7c-5eac-48a3-9e44-70058bbba94e', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7269888482 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000817] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001115] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001126] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003762] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003775] Using GB pages for direct mapping\\n[ 0.003874] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003931] ACPI: Early table checksum verification disabled\\n[ 0.003935] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003939] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003944] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003949] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003951] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003953] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003955] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003957] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003959] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003960] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003961] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003962] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003963] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003963] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005118] No NUMA configuration found\\n[ 0.005120] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005129] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005366] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005379] Zone ranges:\\n[ 0.005380] DMA
2026-03-13 10:59:13,393 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.154s
2026-03-13 10:59:13,394 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:59:13 GMT', 'server': 'Apache', 'content-length': '96289', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-fe3d9da7-22ac-4584-9daa-a21f31977b17', 'x-compute-request-id': 'req-fe3d9da7-22ac-4584-9daa-a21f31977b17', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7269888482 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000817] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001115] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001126] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003762] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003775] Using GB pages for direct mapping\\n[ 0.003874] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003931] ACPI: Early table checksum verification disabled\\n[ 0.003935] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003939] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003944] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003949] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003951] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003953] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003955] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003957] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003959] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003960] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003961] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003962] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003963] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003963] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005118] No NUMA configuration found\\n[ 0.005120] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005129] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005366] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005379] Zone ranges:\\n[ 0.005380] DMA
2026-03-13 10:59:18,586 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.185s
2026-03-13 10:59:18,587 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:59:18 GMT', 'server': 'Apache', 'content-length': '96289', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-6c7fb93f-9512-4c0e-9aa0-a1fc5df2b255', 'x-compute-request-id': 'req-6c7fb93f-9512-4c0e-9aa0-a1fc5df2b255', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7269888482 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000817] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001115] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001126] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003762] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003775] Using GB pages for direct mapping\\n[ 0.003874] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003931] ACPI: Early table checksum verification disabled\\n[ 0.003935] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003939] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003944] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003949] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003951] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003953] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003955] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003957] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003959] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003960] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003961] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003962] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003963] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003963] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005118] No NUMA configuration found\\n[ 0.005120] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005129] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005366] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005379] Zone ranges:\\n[ 0.005380] DMA
2026-03-13 10:59:23,731 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.133s
2026-03-13 10:59:23,732 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:59:23 GMT', 'server': 'Apache', 'content-length': '97252', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-4d4bb802-6741-4029-a897-7b0a82ee5995', 'x-compute-request-id': 'req-4d4bb802-6741-4029-a897-7b0a82ee5995', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7269888482 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000817] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001115] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001126] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003762] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003775] Using GB pages for direct mapping\\n[ 0.003874] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003931] ACPI: Early table checksum verification disabled\\n[ 0.003935] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003939] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003944] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003949] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003951] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003953] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003955] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003957] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003959] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003960] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003961] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003962] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003963] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003963] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005118] No NUMA configuration found\\n[ 0.005120] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005129] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005366] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005379] Zone ranges:\\n[ 0.005380] DMA
2026-03-13 10:59:28,895 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.156s
2026-03-13 10:59:28,895 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:59:28 GMT', 'server': 'Apache', 'content-length': '97252', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-0538f4f6-ec9d-4830-ac86-a6a059123ab3', 'x-compute-request-id': 'req-0538f4f6-ec9d-4830-ac86-a6a059123ab3', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7269888482 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000817] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001115] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001126] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003762] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003775] Using GB pages for direct mapping\\n[ 0.003874] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003931] ACPI: Early table checksum verification disabled\\n[ 0.003935] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003939] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003944] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003949] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003951] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003953] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003955] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003957] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003959] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003960] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003961] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003962] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003963] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003963] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005118] No NUMA configuration found\\n[ 0.005120] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005129] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005366] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005379] Zone ranges:\\n[ 0.005380] DMA
2026-03-13 10:59:34,063 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.161s
2026-03-13 10:59:34,064 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:59:33 GMT', 'server': 'Apache', 'content-length': '97252', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-7e0c20d5-7bd9-4b45-8a15-4564ad77ed21', 'x-compute-request-id': 'req-7e0c20d5-7bd9-4b45-8a15-4564ad77ed21', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7269888482 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000817] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001115] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001126] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003762] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003775] Using GB pages for direct mapping\\n[ 0.003874] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003931] ACPI: Early table checksum verification disabled\\n[ 0.003935] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003939] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003944] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003949] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003951] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003953] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003955] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003957] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003959] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003960] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003961] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003962] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003963] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003963] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005118] No NUMA configuration found\\n[ 0.005120] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005129] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005366] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005379] Zone ranges:\\n[ 0.005380] DMA
2026-03-13 10:59:39,191 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.120s
2026-03-13 10:59:39,192 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:59:39 GMT', 'server': 'Apache', 'content-length': '97252', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-e84aa559-a90a-41e3-8efa-56f3960e4b06', 'x-compute-request-id': 'req-e84aa559-a90a-41e3-8efa-56f3960e4b06', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7269888482 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000817] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001115] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001126] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003762] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003775] Using GB pages for direct mapping\\n[ 0.003874] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003931] ACPI: Early table checksum verification disabled\\n[ 0.003935] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003939] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003944] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003949] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003951] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003953] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003955] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003957] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003959] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003960] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003961] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003962] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003963] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003963] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005118] No NUMA configuration found\\n[ 0.005120] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005129] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005366] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005379] Zone ranges:\\n[ 0.005380] DMA
2026-03-13 10:59:44,331 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.132s
2026-03-13 10:59:44,332 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:59:44 GMT', 'server': 'Apache', 'content-length': '101679', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-8917c079-e381-48a7-8f17-aab5ec5eea2d', 'x-compute-request-id': 'req-8917c079-e381-48a7-8f17-aab5ec5eea2d', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": "VM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7269888482 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000817] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001115] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001126] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003762] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003775] Using GB pages for direct mapping\\n[ 0.003874] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003931] ACPI: Early table checksum verification disabled\\n[ 0.003935] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003939] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003944] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003949] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003951] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003953] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003955] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003957] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003959] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003960] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003961] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003962] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003963] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003963] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005118] No NUMA configuration found\\n[ 0.005120] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005129] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005366] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005379] Zone ranges:\\n[ 0.005380] DMA [mem 0x0000000000001000-0x0000000000ffffff]\\n[ 0.005382] DMA32 [mem 0x0000000001000000-0x000000003ffdafff]\\n[ 0.005384] Normal empty\\n[ 0.005385] Device empty\\n[ 0.005386] Movable zone start for each node\\n[ 0.005388] Early memory node ranges\\n[ 0.005389] node 0: [mem 0x0000000000001000-0x000000000009efff]\\n[ 0.005390] node 0: [mem 0x0000000000100000-0x000000003ffdafff]\\n[ 0.005392] Initmem setup node 0 [mem 0x0000000000001000-0x000000003ffdafff]\\n[ 0.005430] On node 0, zone DMA: 1 pages in unavailable ranges\\n[ 0.005476] On node 0, zone DMA: 97 pages in unavailable ranges\\n[ 0.006282] On node 0, zone DMA32: 37 pages in unavailable ranges\\n[ 0.017389] ACPI: PM-Timer IO Port: 0x608\\n[ 0.017426] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])\\n[ 0.017579] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23\\n[ 0.017582] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)\\n[ 0.017584] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)\\n[ 0.017585] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)\\n[ 0.017586] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)\\n[ 0.017587] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)\\n[ 0.017590] ACPI: Using ACPI (MADT) for SMP configuration information\\n[ 0.017592] TSC deadline timer available\\n[ 0.017597] CPU topo: Max. logical packages: 1\\n[ 0.017598] CPU topo: Max. logical dies: 1\\n[ 0.017598] CPU topo: Max. dies per package: 1\\n[ 0.017602] CPU topo: Max. threads per core: 1\\n[ 0.017603] CPU topo: Num. cores per package: 1\\n[ 0.017604] CPU topo: Num. threads per package: 1\\n[ 0.
2026-03-13 10:59:49,474 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.134s
2026-03-13 10:59:49,474 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:59:49 GMT', 'server': 'Apache', 'content-length': '101679', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-9220f602-fc26-44af-8bc2-8f3e574bf3fd', 'x-compute-request-id': 'req-9220f602-fc26-44af-8bc2-8f3e574bf3fd', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": "VM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7269888482 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000817] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001115] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001126] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003762] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003775] Using GB pages for direct mapping\\n[ 0.003874] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003931] ACPI: Early table checksum verification disabled\\n[ 0.003935] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003939] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003944] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003949] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003951] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003953] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003955] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003957] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003959] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003960] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003961] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003962] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003963] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003963] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005118] No NUMA configuration found\\n[ 0.005120] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005129] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005366] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005379] Zone ranges:\\n[ 0.005380] DMA [mem 0x0000000000001000-0x0000000000ffffff]\\n[ 0.005382] DMA32 [mem 0x0000000001000000-0x000000003ffdafff]\\n[ 0.005384] Normal empty\\n[ 0.005385] Device empty\\n[ 0.005386] Movable zone start for each node\\n[ 0.005388] Early memory node ranges\\n[ 0.005389] node 0: [mem 0x0000000000001000-0x000000000009efff]\\n[ 0.005390] node 0: [mem 0x0000000000100000-0x000000003ffdafff]\\n[ 0.005392] Initmem setup node 0 [mem 0x0000000000001000-0x000000003ffdafff]\\n[ 0.005430] On node 0, zone DMA: 1 pages in unavailable ranges\\n[ 0.005476] On node 0, zone DMA: 97 pages in unavailable ranges\\n[ 0.006282] On node 0, zone DMA32: 37 pages in unavailable ranges\\n[ 0.017389] ACPI: PM-Timer IO Port: 0x608\\n[ 0.017426] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])\\n[ 0.017579] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23\\n[ 0.017582] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)\\n[ 0.017584] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)\\n[ 0.017585] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)\\n[ 0.017586] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)\\n[ 0.017587] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)\\n[ 0.017590] ACPI: Using ACPI (MADT) for SMP configuration information\\n[ 0.017592] TSC deadline timer available\\n[ 0.017597] CPU topo: Max. logical packages: 1\\n[ 0.017598] CPU topo: Max. logical dies: 1\\n[ 0.017598] CPU topo: Max. dies per package: 1\\n[ 0.017602] CPU topo: Max. threads per core: 1\\n[ 0.017603] CPU topo: Num. cores per package: 1\\n[ 0.017604] CPU topo: Num. threads per package: 1\\n[ 0.
2026-03-13 10:59:54,622 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.141s
2026-03-13 10:59:54,623 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:59:54 GMT', 'server': 'Apache', 'content-length': '101679', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-7b845637-8f8c-4f7d-87be-5dc1e7039347', 'x-compute-request-id': 'req-7b845637-8f8c-4f7d-87be-5dc1e7039347', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": "assign\\n[ 1.753026] pci 0000:00:02.6: bridge window [io size 0x1000]: can\'t assign; no space\\n[ 1.753038] pci 0000:00:02.6: bridge window [io size 0x1000]: failed to assign\\n[ 1.753051] pci 0000:00:02.5: bridge window [io size 0x1000]: can\'t assign; no space\\n[ 1.753062] pci 0000:00:02.5: bridge window [io size 0x1000]: failed to assign\\n[ 1.753075] pci 0000:00:02.4: bridge window [io size 0x1000]: can\'t assign; no space\\n[ 1.753087] pci 0000:00:02.4: bridge window [io size 0x1000]: failed to assign\\n[ 1.753099] pci 0000:00:02.3: bridge window [io size 0x1000]: can\'t assign; no space\\n[ 1.753111] pci 0000:00:02.3: bridge window [io size 0x1000]: failed to assign\\n[ 1.753124] pci 0000:00:02.2: bridge window [io size 0x1000]: can\'t assign; no space\\n[ 1.753135] pci 0000:00:02.2: bridge window [io size 0x1000]: failed to assign\\n[ 1.753148] pci 0000:00:02.1: bridge window [io size 0x1000]: can\'t assign; no space\\n[ 1.753160] pci 0000:00:02.1: bridge window [io size 0x1000]: failed to assign\\n[ 1.753176] pci 0000:01:00.0: PCI bridge to [bus 02]\\n[ 1.753257] pci 0000:01:00.0: bridge window [io 0xc000-0xcfff]\\n[ 1.756238] pci 0000:01:00.0: bridge window [mem 0xfb600000-0xfb7fffff]\\n[ 1.757530] pci 0000:01:00.0: bridge window [mem 0xfb000000-0xfb1fffff 64bit pref]\\n[ 1.760612] pci 0000:00:02.0: PCI bridge to [bus 01-02]\\n[ 1.760656] pci 0000:00:02.0: bridge window [io 0xc000-0xcfff]\\n[ 1.762729] pci 0000:00:02.0: bridge window [mem 0xfb600000-0xfb9fffff]\\n[ 1.764639] pci 0000:00:02.0: bridge window [mem 0xfb000000-0xfb1fffff 64bit pref]\\n[ 1.769578] pci 0000:00:02.1: PCI bridge to [bus 03]\\n[ 1.771264] pci 0000:00:02.1: bridge window [mem 0xfe800000-0xfe9fffff]\\n[ 1.772507] pci 0000:00:02.1: bridge window [mem 0xfae00000-0xfaffffff 64bit pref]\\n[ 1.774876] pci 0000:00:02.2: PCI bridge to [bus 04]\\n[ 1.778011] pci 0000:00:02.2: bridge window [mem 0xfe600000-0xfe7fffff]\\n[ 1.782464] pci 0000:00:02.2: bridge window [mem 0xfac00000-0xfadfffff 64bit pref]\\n[ 1.784418] pci 0000:00:02.3: PCI bridge to [bus 05]\\n[ 1.786056] pci 0000:00:02.3: bridge window [mem 0xfe400000-0xfe5fffff]\\n[ 1.787192] pci 0000:00:02.3: bridge window [mem 0xfaa00000-0xfabfffff 64bit pref]\\n[ 1.789490] pci 0000:00:02.4: PCI bridge to [bus 06]\\n[ 1.791791] pci 0000:00:02.4: bridge window [mem 0xfe200000-0xfe3fffff]\\n[ 1.798008] pci 0000:00:02.4: bridge window [mem 0xfa800000-0xfa9fffff 64bit pref]\\n[ 1.800267] pci 0000:00:02.5: PCI bridge to [bus 07]\\n[ 1.801697] pci 0000:00:02.5: bridge window [mem 0xfe000000-0xfe1fffff]\\n[ 1.802701] pci 0000:00:02.5: bridge window [mem 0xfa600000-0xfa7fffff 64bit pref]\\n[ 1.804593] pci 0000:00:02.6: PCI bridge to [bus 08]\\n[ 1.806085] pci 0000:00:02.6: bridge window [mem 0xfde00000-0xfdffffff]\\n[ 1.807055] pci 0000:00:02.6: bridge window [mem 0xfa400000-0xfa5fffff 64bit pref]\\n[ 1.814492] pci 0000:00:02.7: PCI bridge to [bus 09]\\n[ 1.815944] pci 0000:00:02.7: bridge window [mem 0xfdc00000-0xfddfffff]\\n[ 1.816910] pci 0000:00:02.7: bridge window [mem 0xfa200000-0xfa3fffff 64bit pref]\\n[ 1.818822] pci 0000:00:03.0: PCI bridge to [bus 0a]\\n[ 1.820264] pci 0000:00:03.0: bridge window [mem 0xfda00000-0xfdbfffff]\\n[ 1.821251] pci 0000:00:03.0: bridge window [mem 0xfa000000-0xfa1fffff 64bit pref]\\n[ 1.823179] pci 0000:00:03.1: PCI bridge to [bus 0b]\\n[ 1.830254] pci 0000:00:03.1: bridge window [mem 0xfd800000-0xfd9fffff]\\n[ 1.831182] pci 0000:00:03.1: bridge window [mem 0xf9e00000-0xf9ffffff 64bit pref]\\n[ 1.832878] pci 0000:00:03.2: PCI bridge to [bus 0c]\\n[ 1.834212] pci 0000:00:03.2: bridge window [mem 0xfd600000-0xfd7fffff]\\n[ 1.835139] pci 0000:00:03.2: bridge window [mem 0xf9c00000-0xf9dfffff 64bit pref]\\n[ 1.836892] pci 0000:00:03.3: PCI bridge to [bus 0d]\\n[ 1.838256] pci 0000:00:03.3: bridge window [mem 0xfd400000-0xfd5fffff]\\n[
2026-03-13 10:59:59,781 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.151s
2026-03-13 10:59:59,782 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 10:59:59 GMT', 'server': 'Apache', 'content-length': '101757', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-be00393e-55a8-4cb5-add3-3fe7d96d6325', 'x-compute-request-id': 'req-be00393e-55a8-4cb5-add3-3fe7d96d6325', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": "m.\\n Stopping [0;1;39mHardware RNG Entropy Gatherer Daemon[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mSetup Virtual Console[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mHardware RNG Entropy Gatherer Daemon[0m.\\n[[0;32m OK [0m] Finished [0;1;39mCleaning Up and Shutting Down Daemons[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mBasic System[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mPath Units[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSlice Units[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSocket Units[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSystem Initialization[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Encrypted Volumes[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mDispatch Password Requests to Console Directory Watch[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal File Systems[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSwaps[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mApply Kernel Variables[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mLoad Kernel Modules[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate Volatile Files and Directories[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mColdplug All udev Devices[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut pre-trigger hook[0m.\\n Stopping [0;1;39mRule-based Manager for Device Events and Files[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mRule-based Manager for Device Events and Files[0m.\\n[[0;32m OK [0m] Closed [0;1;39mudev Control Socket[0m.\\n[[0;32m OK [0m] Closed [0;1;39mudev Kernel Socket[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut pre-udev hook[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut cmdline hook[0m.\\n Starting [0;1;39mCleanup udev Database[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mCreate Static Device Nodes in /dev[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate List of Static Device Nodes[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate System Users[0m.\\n[[0;32m OK [0m] Finished [0;1;39mCleanup udev Database[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mSwitch Root[0m.\\n Starting [0;1;39mSwitch Root[0m...\\n[ 8.242581] systemd-journald[256]: Received SIGTERM from PID 1 (systemd).\\n[ 8.472625] audit: type=1404 audit(1773399546.342:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1\\n[ 8.561871] SELinux: policy capability network_peer_controls=1\\n[ 8.561898] SELinux: policy capability open_perms=1\\n[ 8.561911] SELinux: policy capability extended_socket_class=1\\n[ 8.561923] SELinux: policy capability always_check_network=0\\n[ 8.561934] SELinux: policy capability cgroup_seclabel=1\\n[ 8.561945] SELinux: policy capability nnp_nosuid_transition=1\\n[ 8.561957] SELinux: policy capability genfs_seclabel_symlinks=1\\n[ 8.639620] audit: type=1403 audit(1773399546.509:3): auid=4294967295 ses=4294967295 lsm=selinux res=1\\n[ 8.647367] systemd[1]: Successfully loaded SELinux policy in 175.395ms.\\n[ 8.705364] systemd[1]: Relabelled /dev, /dev/shm, /run, /sys/fs/cgroup in 31.578ms.\\n[ 8.715864] systemd[1]: systemd 252-55.el9_7.2.rocky.0.1 running in system mode (+PAM +AUDIT +SELINUX -APPARMOR +IMA +SMACK +SECCOMP +GCRYPT +GNUTLS +OPENSSL +ACL +BLKID +CURL +ELFUTILS +FIDO2 +IDN2 -IDN -IPTC +KMOD +LIBCRYPTSETUP +LIBFDISK +PCRE2 -PWQUALITY +P11KIT -QRENCODE +TPM2 +BZIP2 +LZ4 +XZ +ZLIB +ZSTD -BPF_FRAMEWORK +XKBCOMMON +UTMP +SYSVINIT default-hierarchy=unified)\\n[ 8.727656] systemd[1]: Detected virtualization kvm.\\n[ 8.729520] systemd[1]: Detected architecture x86-64.\\n\\nWelcome to [0;32mRocky Linux 9.7 (Blue Onyx)[0m!\\n\\n[ 8.770671] audit: type=1400 audit(1773399546.640:4): avc: denied { map } for pid=576 comm=\\"systemd-bless-b\\" path=\\"/etc/ld.so.cache\\" dev=\\"vda4\\" ino=25166537 scontext=system_u:system_r:init_t:s0 tcontext=system_u:object_r:unlabeled_t:s0 tclass=file permissive=0\\n[ 8.779530] audit: type=1400 audit(1773399546.649:5): avc: denied { map } for pid=573 comm=\\"nfs-server-gene\\" path=\\"/etc/ld.so.cache\\" dev=\\"vda4\\" ino=25166537 scontext=system_u:system_r:nfs
2026-03-13 11:00:04,948 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.160s
2026-03-13 11:00:04,950 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:04 GMT', 'server': 'Apache', 'content-length': '101562', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-14580177-f479-4cd4-b9cf-da318aa48b4d', 'x-compute-request-id': 'req-14580177-f479-4cd4-b9cf-da318aa48b4d', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": "ab\\ufffd\\ufffd\\ufffdormats File System Automount Point[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Encrypted Volumes[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mDispatch Password Requests to Console Directory Watch[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Integrity Protected Volumes[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSwaps[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Verity Protected Volumes[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRead and set NIS domainname from /etc/sysconfig/network[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mApply Kernel Variables[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mLoad Kernel Modules[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mUpdate is Completed[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mAutomatic Boot Loader Update[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRebuild Hardware Database[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRebuild Journal Catalog[0m.\\n Stopping [0;1;39mRecord System Boot/Shutdown in UTMP[0m...\\n[[0;32m OK [0m] Unmounted [0;1;39m/run/credentials/systemd-sysctl.service[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRecord System Boot/Shutdown in UTMP[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate Volatile Files and Directories[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal File Systems[0m.\\n Unmounting [0;1;39m/boot/efi[0m...\\n Unmounting [0;1;39mEFI System Partition Automount[0m...\\n Unmounting [0;1;39m/run/credentials/systemd-sysusers.service[0m...\\n Unmounting [0;1;39m/run/credentials/systemd-tmpfiles-setup.service[0m...\\n Unmounting [0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service[0m...\\n[[0;32m OK [0m] Unmounted [0;1;39m/boot/efi[0m.\\n[[0;32m OK [0m] Unmounted [0;1;39mEFI System Partition Automount[0m.\\n[[0;32m OK [0m] Unmounted [0;1;39m/run/credentials/systemd-sysusers.service[0m.\\n[[0;32m OK [0m] Unmounted [0;1;39m/run/credentials/systemd-tmpfiles-setup.service[0m.\\n[[0;32m OK [0m] Unmounted [0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service[0m.\\n[[0;32m OK [0m] Unset automount [0;1;39mEFI System Partition Automount[0m.\\n Unmounting [0;1;39m/boot[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mFile System Check on /dev/vda2[0m.\\n[[0;32m OK [0m] Removed slice [0;1;39mSlice /system/systemd-fsck[0m.\\n[ 44.609705] XFS (vda3): Unmounting Filesystem 85ca011f-1f82-44c5-a2ab-2dfb75665277\\n[[0;32m OK [0m] Unmounted [0;1;39m/boot[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mPreparation for Local File Systems[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mUnmount All Filesystems[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate Static Device Nodes in /dev[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate System Users[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRemount Root and Kernel File Systems[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mFile System Check on Root Device[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mSystem Shutdown[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mLate Shutdown Services[0m.\\n[[0;32m OK [0m] Finished [0;1;39mSystem Reboot[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mSystem Reboot[0m.\\n[ 44.676938] watchdog: watchdog0: watchdog did not stop!\\n[ 44.693022] systemd-shutdown[1]: Using hardware watchdog \'iTCO_wdt\', version 0, device /dev/watchdog0\\n[ 44.697346] systemd-shutdown[1]: Watchdog running with a timeout of 10min.\\n[ 44.746005] systemd-shutdown[1]: Syncing filesystems and block devices.\\n[ 44.751504] systemd-shutdown[1]: Sending SIGTERM to remaining processes...\\n[ 44.758351] systemd-journald[619]: Received SIGTERM from PID 1 (systemd-shutdow).\\n[ 44.774412] systemd-shutdown[1]: Sending SIGKILL to remaining processes...\\n[ 44.782381] systemd-shutdown[1]: Unmounting file systems.\\n[ 44.785620] [1169]: Remounting \'/\' read-only with options \'seclabel,attr2,inode64,logbufs=8,logbsize=32k,noquota\'.\\n[ 45.218621] systemd-shutdown[1]: All filesystems unmounted.\\n[ 45.224072] systemd-shutdown[1]: Deactivating swaps.\\n[ 45.229121] systemd-shutdown[1]: All swaps deactivated.\\n[
2026-03-13 11:00:10,126 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.166s
2026-03-13 11:00:10,127 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:09 GMT', 'server': 'Apache', 'content-length': '101586', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-3759c242-e6c3-4594-94a2-c5150add049a', 'x-compute-request-id': 'req-3759c242-e6c3-4594-94a2-c5150add049a', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": " (192 MB)\\n[ 0.005496] Zone ranges:\\n[ 0.005496] DMA [mem 0x0000000000001000-0x0000000000ffffff]\\n[ 0.005498] DMA32 [mem 0x0000000001000000-0x000000003ffdafff]\\n[ 0.005499] Normal empty\\n[ 0.005500] Device empty\\n[ 0.005501] Movable zone start for each node\\n[ 0.005503] Early memory node ranges\\n[ 0.005503] node 0: [mem 0x0000000000001000-0x000000000009efff]\\n[ 0.005504] node 0: [mem 0x0000000000100000-0x000000003ffdafff]\\n[ 0.005506] Initmem setup node 0 [mem 0x0000000000001000-0x000000003ffdafff]\\n[ 0.005534] On node 0, zone DMA: 1 pages in unavailable ranges\\n[ 0.005581] On node 0, zone DMA: 97 pages in unavailable ranges\\n[ 0.006119] On node 0, zone DMA32: 37 pages in unavailable ranges\\n[ 0.017078] ACPI: PM-Timer IO Port: 0x608\\n[ 0.017116] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])\\n[ 0.017242] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23\\n[ 0.017245] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)\\n[ 0.017247] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)\\n[ 0.017248] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)\\n[ 0.017249] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)\\n[ 0.017250] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)\\n[ 0.017253] ACPI: Using ACPI (MADT) for SMP configuration information\\n[ 0.017255] TSC deadline timer available\\n[ 0.017260] CPU topo: Max. logical packages: 1\\n[ 0.017260] CPU topo: Max. logical dies: 1\\n[ 0.017261] CPU topo: Max. dies per package: 1\\n[ 0.017266] CPU topo: Max. threads per core: 1\\n[ 0.017290] CPU topo: Num. cores per package: 1\\n[ 0.017290] CPU topo: Num. threads per package: 1\\n[ 0.017291] CPU topo: Allowing 1 present CPUs plus 0 hotplug CPUs\\n[ 0.017335] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()\\n[ 0.017382] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]\\n[ 0.017384] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]\\n[ 0.017385] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]\\n[ 0.017385] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]\\n[ 0.017387] [mem 0x40000000-0xafffffff] available for PCI devices\\n[ 0.017389] Booting paravirtualized kernel on KVM\\n[ 0.017392] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns\\n[ 0.023010] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1\\n[ 0.023219] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u2097152\\n[ 0.023429] kvm-guest: PV spinlocks disabled, single CPU\\n[ 0.023432] Kernel command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.023513] Unknown kernel command line parameters \\"BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64\\", will be passed to user space.\\n[ 0.023543] random: crng init done\\n[ 0.023622] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)\\n[ 0.023666] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)\\n[ 0.023720] Fallback order for Node 0: 0 \\n[ 0.023722] Built 1 zonelists, mobility grouping on. Total pages: 257755\\n[ 0.023723] Policy zone: DMA32\\n[ 0.023912] mem auto-init: stack:off, heap alloc:off, heap free:off\\n[ 0.026098] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1\\n[ 0.026119] ftrace: allocating 49295 entries in 193 pages\\n[ 0.034472] ftrace: allocated 193 pages with 3 groups\\n[ 0.035121] Dynamic Preempt: voluntary\\n[ 0.035201] rcu: Preemptible hierarchical RCU implementation.\\n[ 0.035202] rcu: \\tRCU event tracing is enabled.\\n[ 0.035203] rcu: \\tRCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.\\n
2026-03-13 11:00:15,308 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action 0.174s
2026-03-13 11:00:15,308 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:15 GMT', 'server': 'Apache', 'content-length': '101585', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-76f97034-3e2b-4d74-85fd-250e8261dceb', 'x-compute-request-id': 'req-76f97034-3e2b-4d74-85fd-250e8261dceb', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725/action'}
Body: b'{"output": "one start for each node\\n[ 0.005503] Early memory node ranges\\n[ 0.005503] node 0: [mem 0x0000000000001000-0x000000000009efff]\\n[ 0.005504] node 0: [mem 0x0000000000100000-0x000000003ffdafff]\\n[ 0.005506] Initmem setup node 0 [mem 0x0000000000001000-0x000000003ffdafff]\\n[ 0.005534] On node 0, zone DMA: 1 pages in unavailable ranges\\n[ 0.005581] On node 0, zone DMA: 97 pages in unavailable ranges\\n[ 0.006119] On node 0, zone DMA32: 37 pages in unavailable ranges\\n[ 0.017078] ACPI: PM-Timer IO Port: 0x608\\n[ 0.017116] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])\\n[ 0.017242] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23\\n[ 0.017245] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)\\n[ 0.017247] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)\\n[ 0.017248] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)\\n[ 0.017249] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)\\n[ 0.017250] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)\\n[ 0.017253] ACPI: Using ACPI (MADT) for SMP configuration information\\n[ 0.017255] TSC deadline timer available\\n[ 0.017260] CPU topo: Max. logical packages: 1\\n[ 0.017260] CPU topo: Max. logical dies: 1\\n[ 0.017261] CPU topo: Max. dies per package: 1\\n[ 0.017266] CPU topo: Max. threads per core: 1\\n[ 0.017290] CPU topo: Num. cores per package: 1\\n[ 0.017290] CPU topo: Num. threads per package: 1\\n[ 0.017291] CPU topo: Allowing 1 present CPUs plus 0 hotplug CPUs\\n[ 0.017335] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()\\n[ 0.017382] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]\\n[ 0.017384] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]\\n[ 0.017385] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]\\n[ 0.017385] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]\\n[ 0.017387] [mem 0x40000000-0xafffffff] available for PCI devices\\n[ 0.017389] Booting paravirtualized kernel on KVM\\n[ 0.017392] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns\\n[ 0.023010] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1\\n[ 0.023219] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u2097152\\n[ 0.023429] kvm-guest: PV spinlocks disabled, single CPU\\n[ 0.023432] Kernel command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.023513] Unknown kernel command line parameters \\"BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64\\", will be passed to user space.\\n[ 0.023543] random: crng init done\\n[ 0.023622] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)\\n[ 0.023666] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)\\n[ 0.023720] Fallback order for Node 0: 0 \\n[ 0.023722] Built 1 zonelists, mobility grouping on. Total pages: 257755\\n[ 0.023723] Policy zone: DMA32\\n[ 0.023912] mem auto-init: stack:off, heap alloc:off, heap free:off\\n[ 0.026098] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1\\n[ 0.026119] ftrace: allocating 49295 entries in 193 pages\\n[ 0.034472] ftrace: allocated 193 pages with 3 groups\\n[ 0.035121] Dynamic Preempt: voluntary\\n[ 0.035201] rcu: Preemptible hierarchical RCU implementation.\\n[ 0.035202] rcu: \\tRCU event tracing is enabled.\\n[ 0.035203] rcu: \\tRCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.\\n[ 0.035204] \\tTrampoline variant of Tasks RCU enabled.\\n[ 0.035205] \\tRude variant of Tasks RCU enabled.\\n[ 0.035205] \\tTracing variant of Tasks RCU enabled.\\n[ 0.035206] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.\\n[ 0.035206]
2026-03-13 11:00:15,912 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 0.602s
2026-03-13 11:00:15,912 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:15 GMT', 'server': 'Apache', 'content-length': '1662', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-f3091f68-234a-44c6-8845-ebb865e74b37', 'x-compute-request-id': 'req-f3091f68-234a-44c6-8845-ebb865e74b37', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"server": {"id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "name": "tempest-broadcast-sender-123-1061357972", "status": "ACTIVE", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T10:58:20Z", "updated": "2026-03-13T10:58:50Z", "addresses": {"tempest-test-network--450998678": [{"version": 4, "addr": "10.100.0.4", "OS-EXT-IPS:type": "fixed", "OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:4e:67:11"}]}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "True", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": "2026-03-13T10:58:50.000000", "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-STS:power_state": 1, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:00:16,343 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://neutron-public-openstack.apps-crc.testing/v2.0/ports?device_id=48f2c13f-b3c2-4aa0-83d2-26fd947d0725 0.407s
2026-03-13 11:00:16,344 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:16 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '1131', 'x-openstack-request-id': 'req-ebc97e7d-26da-4b2e-86fd-5e212117bd54', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/ports?device_id=48f2c13f-b3c2-4aa0-83d2-26fd947d0725'}
Body: b'{"ports":[{"id":"7645db3f-eea8-41e3-bffa-48774da96fd8","name":"","network_id":"abf5125e-2ddd-4d4d-9207-62a9e5795b5e","tenant_id":"75a99164fa9e49e296861ee9cee088f5","mac_address":"fa:16:3e:4e:67:11","admin_state_up":true,"status":"ACTIVE","device_id":"48f2c13f-b3c2-4aa0-83d2-26fd947d0725","device_owner":"compute:nova","fixed_ips":[{"subnet_id":"0c6afb05-e8cd-4451-8be2-e46953405c2e","ip_address":"10.100.0.4"}],"allowed_address_pairs":[{"mac_address":"fa:16:3e:4e:67:11","ip_address":"192.168.111.10/24"}],"extra_dhcp_opts":[],"security_groups":["98c2e656-981c-45c8-8a22-8690b5481ef5"],"description":"","binding:vnic_type":"normal","qos_policy_id":null,"qos_network_policy_id":null,"port_security_enabled":true,"dns_name":"tempest-broadcast-sender-123-1061357972","dns_assignment":[{"ip_address":"10.100.0.4","hostname":"tempest-broadcast-sender-123-1061357972","fqdn":"tempest-broadcast-sender-123-1061357972.openstackgate.local."}],"dns_domain":"","ip_allocation":"immediate","tags":[],"created_at":"2026-03-13T10:58:14Z","updated_at":"2026-03-13T10:58:50Z","revision_number":4,"project_id":"75a99164fa9e49e296861ee9cee088f5"}]}'
2026-03-13 11:00:18,785 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/floatingips 2.440s
2026-03-13 11:00:18,787 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"floatingip": {"floating_network_id": "d90d10b6-a44a-47b5-bcd6-630085d51c8e", "port_id": "7645db3f-eea8-41e3-bffa-48774da96fd8"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:18 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '881', 'x-openstack-request-id': 'req-552f78ce-8168-4554-b0fa-9b5726caedc7', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/floatingips'}
Body: b'{"floatingip": {"id": "69bedec5-2156-4adf-b311-7ed5d2057b74", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "floating_ip_address": "192.168.122.213", "floating_network_id": "d90d10b6-a44a-47b5-bcd6-630085d51c8e", "router_id": "4c5cf4e7-7fa9-4a98-8a95-59fffe36f1a6", "port_id": "7645db3f-eea8-41e3-bffa-48774da96fd8", "fixed_ip_address": "10.100.0.4", "status": "DOWN", "project_id": "75a99164fa9e49e296861ee9cee088f5", "description": "", "qos_policy_id": null, "port_details": {"name": "", "network_id": "abf5125e-2ddd-4d4d-9207-62a9e5795b5e", "mac_address": "fa:16:3e:4e:67:11", "admin_state_up": true, "status": "ACTIVE", "device_id": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725", "device_owner": "compute:nova"}, "dns_domain": "", "dns_name": "", "port_forwardings": [], "tags": [], "created_at": "2026-03-13T11:00:17Z", "updated_at": "2026-03-13T11:00:17Z", "revision_number": 0}}'
2026-03-13 11:00:18,788 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.213:22' as 'rocky' with public key authentication
2026-03-13 11:00:18,833 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:00:18,988 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:00:18,991 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.213 successfully created
2026-03-13 11:00:19,636 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address list" on remote host '192.168.122.213' (timeout=None)...
2026-03-13 11:00:19,636 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.213:22' as 'rocky' with public key authentication
2026-03-13 11:00:19,659 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:00:19,747 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:00:19,747 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.213 successfully created
2026-03-13 11:00:19,915 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address list" succeeded:
stderr:
None
stdout:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc fq_codel state UP group default qlen 1000
link/ether fa:16:3e:4e:67:11 brd ff:ff:ff:ff:ff:ff
altname enp3s0
inet 10.100.0.4/28 brd 10.100.0.15 scope global dynamic noprefixroute eth0
valid_lft 43186sec preferred_lft 43186sec
inet6 fe80::f816:3eff:fe4e:6711/64 scope link
valid_lft forever preferred_lft forever
2026-03-13 11:00:19,915 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:00:19,917 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/loopback', address='00:00:00:00:00:00', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'brd': '00:00:00:00:00:00'})
2026-03-13 11:00:19,917 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='127.0.0.1/8', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:00:19,917 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:00:19,918 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='::1/128', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:00:19,918 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:00:19,918 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:00:19,918 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:4e:67:11', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:00:19,918 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='altname', address='enp3s0', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={})
2026-03-13 11:00:19,918 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='10.100.0.4/28', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute'})
2026-03-13 11:00:19,918 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute', 'valid_lft': '43186sec', 'preferred_lft': '43186sec'}
2026-03-13 11:00:19,919 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe4e:6711/64', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:00:19,919 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:00:19,919 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address list" on remote host '192.168.122.213' (timeout=None)...
2026-03-13 11:00:19,920 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.213:22' as 'rocky' with public key authentication
2026-03-13 11:00:19,940 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:00:20,029 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:00:20,031 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.213 successfully created
2026-03-13 11:00:20,198 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address list" succeeded:
stderr:
None
stdout:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc fq_codel state UP group default qlen 1000
link/ether fa:16:3e:4e:67:11 brd ff:ff:ff:ff:ff:ff
altname enp3s0
inet 10.100.0.4/28 brd 10.100.0.15 scope global dynamic noprefixroute eth0
valid_lft 43186sec preferred_lft 43186sec
inet6 fe80::f816:3eff:fe4e:6711/64 scope link
valid_lft forever preferred_lft forever
2026-03-13 11:00:20,198 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:00:20,198 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/loopback', address='00:00:00:00:00:00', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'brd': '00:00:00:00:00:00'})
2026-03-13 11:00:20,199 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='127.0.0.1/8', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:00:20,199 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:00:20,199 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='::1/128', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:00:20,199 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:00:20,199 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:00:20,199 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:4e:67:11', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:00:20,199 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='altname', address='enp3s0', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={})
2026-03-13 11:00:20,199 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='10.100.0.4/28', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute'})
2026-03-13 11:00:20,200 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute', 'valid_lft': '43186sec', 'preferred_lft': '43186sec'}
2026-03-13 11:00:20,200 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe4e:6711/64', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:00:20,200 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:00:20,200 40 DEBUG [neutron_tempest_plugin.common.ip] Configuring VLAN subport interface 'eth0.123' on top of interface 'eth0' with IPs: 192.168.111.10/24
2026-03-13 11:00:20,201 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' link add link eth0 name eth0.123 type vlan id 123" on remote host '192.168.122.213' (timeout=None)...
2026-03-13 11:00:20,201 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.213:22' as 'rocky' with public key authentication
2026-03-13 11:00:20,225 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:00:20,309 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:00:20,309 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.213 successfully created
2026-03-13 11:00:20,595 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' link add link eth0 name eth0.123 type vlan id 123" succeeded:
stderr:
None
stdout:
2026-03-13 11:00:20,595 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' link set dev eth0.123 up" on remote host '192.168.122.213' (timeout=None)...
2026-03-13 11:00:20,596 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.213:22' as 'rocky' with public key authentication
2026-03-13 11:00:20,629 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:00:20,735 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:00:20,736 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.213 successfully created
2026-03-13 11:00:20,921 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' link set dev eth0.123 up" succeeded:
stderr:
None
stdout:
2026-03-13 11:00:20,921 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address add 192.168.111.10/24 dev eth0.123" on remote host '192.168.122.213' (timeout=None)...
2026-03-13 11:00:20,922 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.213:22' as 'rocky' with public key authentication
2026-03-13 11:00:20,943 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:00:21,044 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:00:21,044 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.213 successfully created
2026-03-13 11:00:21,253 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address add 192.168.111.10/24 dev eth0.123" succeeded:
stderr:
None
stdout:
2026-03-13 11:00:21,254 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address list" on remote host '192.168.122.213' (timeout=None)...
2026-03-13 11:00:21,254 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.213:22' as 'rocky' with public key authentication
2026-03-13 11:00:21,309 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:00:21,407 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:00:21,407 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.213 successfully created
2026-03-13 11:00:21,576 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address list" succeeded:
stderr:
None
stdout:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc fq_codel state UP group default qlen 1000
link/ether fa:16:3e:4e:67:11 brd ff:ff:ff:ff:ff:ff
altname enp3s0
inet 10.100.0.4/28 brd 10.100.0.15 scope global dynamic noprefixroute eth0
valid_lft 43185sec preferred_lft 43185sec
inet6 fe80::f816:3eff:fe4e:6711/64 scope link
valid_lft forever preferred_lft forever
3: eth0.123@eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc noqueue state UP group default qlen 1000
link/ether fa:16:3e:4e:67:11 brd ff:ff:ff:ff:ff:ff
inet 192.168.111.10/24 scope global eth0.123
valid_lft forever preferred_lft forever
inet6 fe80::f816:3eff:fe4e:6711/64 scope link tentative
valid_lft forever preferred_lft forever
2026-03-13 11:00:21,577 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:00:21,577 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/loopback', address='00:00:00:00:00:00', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'brd': '00:00:00:00:00:00'})
2026-03-13 11:00:21,577 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='127.0.0.1/8', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:00:21,577 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:00:21,577 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='::1/128', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:00:21,577 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:00:21,578 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:00:21,578 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:4e:67:11', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:00:21,578 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='altname', address='enp3s0', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={})
2026-03-13 11:00:21,578 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='10.100.0.4/28', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute'})
2026-03-13 11:00:21,578 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute', 'valid_lft': '43185sec', 'preferred_lft': '43185sec'}
2026-03-13 11:00:21,578 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe4e:6711/64', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:00:21,579 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:00:21,579 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0.123', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:00:21,579 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:4e:67:11', device=Device(name='eth0.123', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:00:21,579 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='192.168.111.10/24', device=Device(name='eth0.123', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'global'})
2026-03-13 11:00:21,579 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'global', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:00:21,579 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe4e:6711/64', device=Device(name='eth0.123', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:00:21,580 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:00:22,521 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/ports 0.940s
2026-03-13 11:00:22,521 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"port": {"network_id": "abf5125e-2ddd-4d4d-9207-62a9e5795b5e", "security_groups": ["98c2e656-981c-45c8-8a22-8690b5481ef5"], "allowed_address_pairs": [{"ip_address": "192.168.111.11/24"}]}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:22 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '991', 'x-openstack-request-id': 'req-ee33c157-a11e-40a8-9700-665d81f4bc63', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/ports'}
Body: b'{"port":{"id":"d5117848-60cd-4310-a81e-2d40115b2139","name":"","network_id":"abf5125e-2ddd-4d4d-9207-62a9e5795b5e","tenant_id":"75a99164fa9e49e296861ee9cee088f5","mac_address":"fa:16:3e:15:c6:c2","admin_state_up":true,"status":"DOWN","device_id":"","device_owner":"","fixed_ips":[{"subnet_id":"0c6afb05-e8cd-4451-8be2-e46953405c2e","ip_address":"10.100.0.3"}],"project_id":"75a99164fa9e49e296861ee9cee088f5","qos_policy_id":null,"port_security_enabled":true,"security_groups":["98c2e656-981c-45c8-8a22-8690b5481ef5"],"binding:vnic_type":"normal","allowed_address_pairs":[{"mac_address":"fa:16:3e:15:c6:c2","ip_address":"192.168.111.11/24"}],"extra_dhcp_opts":[],"description":"","qos_network_policy_id":null,"dns_name":"","dns_assignment":[{"ip_address":"10.100.0.3","hostname":"host-10-100-0-3","fqdn":"host-10-100-0-3.openstackgate.local."}],"dns_domain":"","ip_allocation":"immediate","tags":[],"created_at":"2026-03-13T11:00:21Z","updated_at":"2026-03-13T11:00:22Z","revision_number":1}}'
2026-03-13 11:00:25,212 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 202 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers 2.689s
2026-03-13 11:00:25,212 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"server": {"flavorRef": "22222222-2222-2222-2222-222222222222", "imageRef": "11111111-1111-1111-1111-111111111111", "key_name": "tempest-keypair-test-1346459391", "networks": [{"port": "d5117848-60cd-4310-a81e-2d40115b2139"}], "security_groups": [{"name": "secgroup_l2_flood"}], "name": "tempest-broadcast-receiver-123-1280649603"}, "os:scheduler_hints": {"different_host": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:22 GMT', 'server': 'Apache', 'content-length': '430', 'location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-9ce2ed89-3bf0-4707-8e1b-1e4d5c9bb6c3', 'x-compute-request-id': 'req-9ce2ed89-3bf0-4707-8e1b-1e4d5c9bb6c3', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '202', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers'}
Body: b'{"server": {"id": "20a866d6-d3e9-474f-b57e-8e751dbd1f35", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35"}], "OS-DCF:diskConfig": "MANUAL", "security_groups": [{"name": "secgroup_l2_flood"}], "adminPass": "DbDihM8CT4pZ"}}'
2026-03-13 11:00:26,247 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35 1.032s
2026-03-13 11:00:26,249 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:25 GMT', 'server': 'Apache', 'content-length': '1384', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-acdfd7b5-99bd-4fef-8dc6-967e168e5a82', 'x-compute-request-id': 'req-acdfd7b5-99bd-4fef-8dc6-967e168e5a82', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35'}
Body: b'{"server": {"id": "20a866d6-d3e9-474f-b57e-8e751dbd1f35", "name": "tempest-broadcast-receiver-123-1280649603", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:00:25Z", "updated": "2026-03-13T11:00:25Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "OS-EXT-STS:task_state": "scheduling", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:00:28,772 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35 1.515s
2026-03-13 11:00:28,773 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:27 GMT', 'server': 'Apache', 'content-length': '1380', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-498a193a-7219-4eb6-ba0a-3fa84babec25', 'x-compute-request-id': 'req-498a193a-7219-4eb6-ba0a-3fa84babec25', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35'}
Body: b'{"server": {"id": "20a866d6-d3e9-474f-b57e-8e751dbd1f35", "name": "tempest-broadcast-receiver-123-1280649603", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:00:25Z", "updated": "2026-03-13T11:00:28Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:00:28,779 40 INFO [tempest.common.waiters] State transition "BUILD/scheduling" ==> "BUILD/None" after 2 second wait
2026-03-13 11:00:32,913 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35 3.133s
2026-03-13 11:00:32,914 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:29 GMT', 'server': 'Apache', 'content-length': '1494', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-312067ee-ea76-4a64-9853-8e820f9d3465', 'x-compute-request-id': 'req-312067ee-ea76-4a64-9853-8e820f9d3465', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35'}
Body: b'{"server": {"id": "20a866d6-d3e9-474f-b57e-8e751dbd1f35", "name": "tempest-broadcast-receiver-123-1280649603", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "ecb5939eee087933ae450e0e5c2c86f56f8d7e59c37c4d8fce9463eb", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:00:25Z", "updated": "2026-03-13T11:00:29Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:00:32,919 40 INFO [tempest.common.waiters] State transition "BUILD/None" ==> "BUILD/spawning" after 6 second wait
2026-03-13 11:00:40,653 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35 6.732s
2026-03-13 11:00:40,656 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:33 GMT', 'server': 'Apache', 'content-length': '1494', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-386eeaba-1510-49a9-9c3e-3d8a60938e36', 'x-compute-request-id': 'req-386eeaba-1510-49a9-9c3e-3d8a60938e36', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35'}
Body: b'{"server": {"id": "20a866d6-d3e9-474f-b57e-8e751dbd1f35", "name": "tempest-broadcast-receiver-123-1280649603", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "ecb5939eee087933ae450e0e5c2c86f56f8d7e59c37c4d8fce9463eb", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:00:25Z", "updated": "2026-03-13T11:00:29Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:00:42,605 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35 0.938s
2026-03-13 11:00:42,605 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:41 GMT', 'server': 'Apache', 'content-length': '1664', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-34c24be9-ebf2-44d4-a39b-206ec0ced230', 'x-compute-request-id': 'req-34c24be9-ebf2-44d4-a39b-206ec0ced230', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35'}
Body: b'{"server": {"id": "20a866d6-d3e9-474f-b57e-8e751dbd1f35", "name": "tempest-broadcast-receiver-123-1280649603", "status": "ACTIVE", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "ecb5939eee087933ae450e0e5c2c86f56f8d7e59c37c4d8fce9463eb", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:00:25Z", "updated": "2026-03-13T11:00:41Z", "addresses": {"tempest-test-network--450998678": [{"version": 4, "addr": "10.100.0.3", "OS-EXT-IPS:type": "fixed", "OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:15:c6:c2"}]}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "True", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": "2026-03-13T11:00:41.000000", "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-STS:power_state": 1, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:00:42,611 40 INFO [tempest.common.waiters] State transition "BUILD/spawning" ==> "ACTIVE/None" after 16 second wait
2026-03-13 11:00:43,170 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.556s
2026-03-13 11:00:43,170 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:42 GMT', 'server': 'Apache', 'content-length': '14', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-b781c9a3-29b7-400e-b7c8-d855b1dee52b', 'x-compute-request-id': 'req-b781c9a3-29b7-400e-b7c8-d855b1dee52b', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": ""}'
2026-03-13 11:00:48,437 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.261s
2026-03-13 11:00:48,438 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:48 GMT', 'server': 'Apache', 'content-length': '13569', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-adda447b-28d6-4c9f-b5a0-35f40afdda37', 'x-compute-request-id': 'req-adda447b-28d6-4c9f-b5a0-35f40afdda37', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7013169087 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000795] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001136] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001147] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003736] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003746] Using GB pages for direct mapping\\n[ 0.003871] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003927] ACPI: Early table checksum verification disabled\\n[ 0.003930] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003934] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003939] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003943] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003946] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003948] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003950] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003952] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003954] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003955] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003956] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003957] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003958] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003958] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005012] No NUMA configuration found\\n[ 0.005013] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005022] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005252] crashkernel reserved: 0x000000001b000000 - 0x0000000027000000 (192 MB)\\n[ 0.005263] Zone ranges:\\n[ 0.005264] DMA
2026-03-13 11:00:53,688 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.244s
2026-03-13 11:00:53,689 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:53 GMT', 'server': 'Apache', 'content-length': '74481', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-e8ab3f5b-7417-41bc-9bfb-2a74f257fb0c', 'x-compute-request-id': 'req-e8ab3f5b-7417-41bc-9bfb-2a74f257fb0c', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7013169087 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000795] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001136] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001147] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003736] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003746] Using GB pages for direct mapping\\n[ 0.003871] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003927] ACPI: Early table checksum verification disabled\\n[ 0.003930] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003934] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003939] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003943] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003946] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003948] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003950] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003952] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003954] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003955] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003956] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003957] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003958] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003958] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005012] No NUMA configuration found\\n[ 0.005013] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005022] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005252] crashkernel reserved: 0x000000001b000000 - 0x0000000027000000 (192 MB)\\n[ 0.005263] Zone ranges:\\n[ 0.005264] DMA
2026-03-13 11:00:59,096 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.401s
2026-03-13 11:00:59,100 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:00:58 GMT', 'server': 'Apache', 'content-length': '92396', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-6b7eabeb-02eb-4fb1-95f6-d58ec6af1800', 'x-compute-request-id': 'req-6b7eabeb-02eb-4fb1-95f6-d58ec6af1800', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7013169087 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000795] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001136] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001147] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003736] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003746] Using GB pages for direct mapping\\n[ 0.003871] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003927] ACPI: Early table checksum verification disabled\\n[ 0.003930] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003934] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003939] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003943] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003946] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003948] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003950] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003952] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003954] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003955] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003956] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003957] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003958] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003958] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005012] No NUMA configuration found\\n[ 0.005013] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005022] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005252] crashkernel reserved: 0x000000001b000000 - 0x0000000027000000 (192 MB)\\n[ 0.005263] Zone ranges:\\n[ 0.005264] DMA
2026-03-13 11:01:04,275 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.169s
2026-03-13 11:01:04,289 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:01:04 GMT', 'server': 'Apache', 'content-length': '96443', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-10a73a1f-5483-4213-9e45-d9fd26c0ac2a', 'x-compute-request-id': 'req-10a73a1f-5483-4213-9e45-d9fd26c0ac2a', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7013169087 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000795] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001136] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001147] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003736] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003746] Using GB pages for direct mapping\\n[ 0.003871] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003927] ACPI: Early table checksum verification disabled\\n[ 0.003930] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003934] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003939] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003943] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003946] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003948] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003950] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003952] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003954] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003955] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003956] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003957] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003958] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003958] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005012] No NUMA configuration found\\n[ 0.005013] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005022] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005252] crashkernel reserved: 0x000000001b000000 - 0x0000000027000000 (192 MB)\\n[ 0.005263] Zone ranges:\\n[ 0.005264] DMA
2026-03-13 11:01:09,457 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.159s
2026-03-13 11:01:09,459 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:01:09 GMT', 'server': 'Apache', 'content-length': '96443', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-9e7b260b-d305-463b-8cc8-61cca42b90fc', 'x-compute-request-id': 'req-9e7b260b-d305-463b-8cc8-61cca42b90fc', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7013169087 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000795] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001136] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001147] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003736] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003746] Using GB pages for direct mapping\\n[ 0.003871] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003927] ACPI: Early table checksum verification disabled\\n[ 0.003930] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003934] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003939] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003943] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003946] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003948] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003950] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003952] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003954] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003955] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003956] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003957] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003958] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003958] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005012] No NUMA configuration found\\n[ 0.005013] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005022] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005252] crashkernel reserved: 0x000000001b000000 - 0x0000000027000000 (192 MB)\\n[ 0.005263] Zone ranges:\\n[ 0.005264] DMA
2026-03-13 11:01:14,601 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.135s
2026-03-13 11:01:14,604 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:01:14 GMT', 'server': 'Apache', 'content-length': '97406', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-e0a14224-bddd-4bb5-9378-e2c785ca4fea', 'x-compute-request-id': 'req-e0a14224-bddd-4bb5-9378-e2c785ca4fea', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7013169087 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000795] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001136] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001147] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003736] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003746] Using GB pages for direct mapping\\n[ 0.003871] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003927] ACPI: Early table checksum verification disabled\\n[ 0.003930] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003934] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003939] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003943] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003946] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003948] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003950] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003952] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003954] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003955] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003956] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003957] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003958] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003958] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005012] No NUMA configuration found\\n[ 0.005013] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005022] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005252] crashkernel reserved: 0x000000001b000000 - 0x0000000027000000 (192 MB)\\n[ 0.005263] Zone ranges:\\n[ 0.005264] DMA
2026-03-13 11:01:19,777 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.164s
2026-03-13 11:01:19,779 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:01:19 GMT', 'server': 'Apache', 'content-length': '97406', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-f2036a64-255d-4828-ab39-9622d35f90b4', 'x-compute-request-id': 'req-f2036a64-255d-4828-ab39-9622d35f90b4', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7013169087 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000795] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001136] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001147] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003736] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003746] Using GB pages for direct mapping\\n[ 0.003871] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003927] ACPI: Early table checksum verification disabled\\n[ 0.003930] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003934] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003939] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003943] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003946] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003948] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003950] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003952] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003954] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003955] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003956] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003957] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003958] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003958] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005012] No NUMA configuration found\\n[ 0.005013] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005022] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005252] crashkernel reserved: 0x000000001b000000 - 0x0000000027000000 (192 MB)\\n[ 0.005263] Zone ranges:\\n[ 0.005264] DMA
2026-03-13 11:01:24,925 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.139s
2026-03-13 11:01:24,926 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:01:24 GMT', 'server': 'Apache', 'content-length': '97406', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-2f65b017-a38d-48ec-bc49-ca7077802f61', 'x-compute-request-id': 'req-2f65b017-a38d-48ec-bc49-ca7077802f61', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7013169087 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000795] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001136] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001147] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003736] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003746] Using GB pages for direct mapping\\n[ 0.003871] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003927] ACPI: Early table checksum verification disabled\\n[ 0.003930] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003934] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003939] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003943] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003946] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003948] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003950] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003952] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003954] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003955] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003956] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003957] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003958] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003958] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005012] No NUMA configuration found\\n[ 0.005013] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005022] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005252] crashkernel reserved: 0x000000001b000000 - 0x0000000027000000 (192 MB)\\n[ 0.005263] Zone ranges:\\n[ 0.005264] DMA
2026-03-13 11:01:30,643 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.709s
2026-03-13 11:01:30,643 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:01:29 GMT', 'server': 'Apache', 'content-length': '97662', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-e45e2378-e0ec-47eb-a2e1-22f09c0a0e2a', 'x-compute-request-id': 'req-e45e2378-e0ec-47eb-a2e1-22f09c0a0e2a', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 7013169087 cycles\\n[ 0.000002] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000795] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001136] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001147] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003736] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003746] Using GB pages for direct mapping\\n[ 0.003871] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003927] ACPI: Early table checksum verification disabled\\n[ 0.003930] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003934] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003939] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003943] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003946] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003948] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003950] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003952] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003954] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003955] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003956] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003957] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003958] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003958] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005012] No NUMA configuration found\\n[ 0.005013] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005022] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005252] crashkernel reserved: 0x000000001b000000 - 0x0000000027000000 (192 MB)\\n[ 0.005263] Zone ranges:\\n[ 0.005264] DMA
2026-03-13 11:01:35,947 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.297s
2026-03-13 11:01:35,948 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:01:35 GMT', 'server': 'Apache', 'content-length': '101679', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-d8063e68-58d0-4ae7-90be-12fe7bc94727', 'x-compute-request-id': 'req-d8063e68-58d0-4ae7-90be-12fe7bc94727', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": "rce: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000795] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001136] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001147] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003736] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003746] Using GB pages for direct mapping\\n[ 0.003871] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003927] ACPI: Early table checksum verification disabled\\n[ 0.003930] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003934] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003939] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003943] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003946] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.003948] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003950] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003952] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003954] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.003955] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.003956] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.003957] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.003958] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.003958] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005012] No NUMA configuration found\\n[ 0.005013] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005022] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005252] crashkernel reserved: 0x000000001b000000 - 0x0000000027000000 (192 MB)\\n[ 0.005263] Zone ranges:\\n[ 0.005264] DMA [mem 0x0000000000001000-0x0000000000ffffff]\\n[ 0.005266] DMA32 [mem 0x0000000001000000-0x000000003ffdafff]\\n[ 0.005267] Normal empty\\n[ 0.005268] Device empty\\n[ 0.005268] Movable zone start for each node\\n[ 0.005271] Early memory node ranges\\n[ 0.005271] node 0: [mem 0x0000000000001000-0x000000000009efff]\\n[ 0.005272] node 0: [mem 0x0000000000100000-0x000000003ffdafff]\\n[ 0.005274] Initmem setup node 0 [mem 0x0000000000001000-0x000000003ffdafff]\\n[ 0.005301] On node 0, zone DMA: 1 pages in unavailable ranges\\n[ 0.005333] On node 0, zone DMA: 97 pages in unavailable ranges\\n[ 0.005871] On node 0, zone DMA32: 37 pages in unavailable ranges\\n[ 0.016033] ACPI: PM-Timer IO Port: 0x608\\n[ 0.016067] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])\\n[ 0.016197] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23\\n[ 0.016200] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)\\n[ 0.016202] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)\\n[ 0.016203] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)\\n[ 0.016204] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)\\n[ 0.016205] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)\\n[ 0.016208] ACPI: Using ACPI (MADT) for SMP configuration information\\n[ 0.016210] TSC deadline timer available\\n[ 0.016214] CPU topo: Max. logical packages: 1\\n[ 0.016215] CPU topo: Max. logical dies: 1\\n[ 0.016216] CPU topo: Max. dies per package: 1\\n[ 0.016220] CPU topo: Max. threads per core: 1\\n[ 0.016221] CPU topo: Num. cores per package: 1\\n[ 0.016221] CPU topo: Num. threads per package: 1\\n[ 0.016222] CPU topo: Allowing 1 present CPUs plus 0 hotplug CPUs\\n[ 0.016261] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()\\n[ 0.01630
2026-03-13 11:01:41,173 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.218s
2026-03-13 11:01:41,174 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:01:40 GMT', 'server': 'Apache', 'content-length': '101679', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-cdd9b459-eedc-4970-a852-5404f3f440d9', 'x-compute-request-id': 'req-cdd9b459-eedc-4970-a852-5404f3f440d9', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": "I bridge to [bus 14]\\n[ 1.104667] acpiphp: Slot [0-20] registered\\n[ 1.105108] pci 0000:00:04.3: PCI bridge to [bus 15]\\n[ 1.108706] acpiphp: Slot [0-21] registered\\n[ 1.109108] pci 0000:00:04.4: PCI bridge to [bus 16]\\n[ 1.111665] acpiphp: Slot [0-22] registered\\n[ 1.112113] pci 0000:00:04.5: PCI bridge to [bus 17]\\n[ 1.114705] acpiphp: Slot [0-23] registered\\n[ 1.115110] pci 0000:00:04.6: PCI bridge to [bus 18]\\n[ 1.117680] acpiphp: Slot [0-24] registered\\n[ 1.118109] pci 0000:00:04.7: PCI bridge to [bus 19]\\n[ 1.120674] acpiphp: Slot [0-25] registered\\n[ 1.121108] pci 0000:00:05.0: PCI bridge to [bus 1a]\\n[ 1.151827] ACPI: PCI: Interrupt link LNKA configured for IRQ 10\\n[ 1.152275] ACPI: PCI: Interrupt link LNKB configured for IRQ 10\\n[ 1.153281] ACPI: PCI: Interrupt link LNKC configured for IRQ 11\\n[ 1.154260] ACPI: PCI: Interrupt link LNKD configured for IRQ 11\\n[ 1.155261] ACPI: PCI: Interrupt link LNKE configured for IRQ 10\\n[ 1.156260] ACPI: PCI: Interrupt link LNKF configured for IRQ 10\\n[ 1.157259] ACPI: PCI: Interrupt link LNKG configured for IRQ 11\\n[ 1.158261] ACPI: PCI: Interrupt link LNKH configured for IRQ 11\\n[ 1.159346] ACPI: PCI: Interrupt link GSIA configured for IRQ 16\\n[ 1.160091] ACPI: PCI: Interrupt link GSIB configured for IRQ 17\\n[ 1.161090] ACPI: PCI: Interrupt link GSIC configured for IRQ 18\\n[ 1.162136] ACPI: PCI: Interrupt link GSID configured for IRQ 19\\n[ 1.163089] ACPI: PCI: Interrupt link GSIE configured for IRQ 20\\n[ 1.164090] ACPI: PCI: Interrupt link GSIF configured for IRQ 21\\n[ 1.165091] ACPI: PCI: Interrupt link GSIG configured for IRQ 22\\n[ 1.166111] ACPI: PCI: Interrupt link GSIH configured for IRQ 23\\n[ 1.167501] iommu: Default domain type: Translated\\n[ 1.167517] iommu: DMA domain TLB invalidation policy: lazy mode\\n[ 1.169220] SCSI subsystem initialized\\n[ 1.170114] ACPI: bus type USB registered\\n[ 1.171109] usbcore: registered new interface driver usbfs\\n[ 1.172088] usbcore: registered new interface driver hub\\n[ 1.173085] usbcore: registered new device driver usb\\n[ 1.174339] pps_core: LinuxPPS API ver. 1 registered\\n[ 1.174357] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>\\n[ 1.176082] PTP clock support registered\\n[ 1.177167] EDAC MC: Ver: 3.0.0\\n[ 1.181352] NetLabel: Initializing\\n[ 1.181366] NetLabel: domain hash size = 128\\n[ 1.181377] NetLabel: protocols = UNLABELED CIPSOv4 CALIPSO\\n[ 1.184104] NetLabel: unlabeled traffic allowed by default\\n[ 1.185084] PCI: Using ACPI for IRQ routing\\n[ 1.406227] pci 0000:00:01.0: vgaarb: setting as boot VGA device\\n[ 1.406239] pci 0000:00:01.0: vgaarb: bridge control possible\\n[ 1.406241] pci 0000:00:01.0: vgaarb: VGA device added: decodes=io+mem,owns=io+mem,locks=none\\n[ 1.406265] vgaarb: loaded\\n[ 1.410300] clocksource: Switched to clocksource kvm-clock\\n[ 1.433497] VFS: Disk quotas dquot_6.6.0\\n[ 1.435301] VFS: Dquot-cache hash table entries: 512 (order 0, 4096 bytes)\\n[ 1.438564] pnp: PnP ACPI init\\n[ 1.440399] system 00:04: [mem 0xb0000000-0xbfffffff window] has been reserved\\n[ 1.444395] pnp: PnP ACPI: found 5 devices\\n[ 1.453425] clocksource: acpi_pm: mask: 0xffffff max_cycles: 0xffffff, max_idle_ns: 2085701024 ns\\n[ 1.457729] NET: Registered PF_INET protocol family\\n[ 1.460006] IP idents hash table entries: 16384 (order: 5, 131072 bytes, linear)\\n[ 1.463612] tcp_listen_portaddr_hash hash table entries: 512 (order: 1, 8192 bytes, linear)\\n[ 1.463632] Table-perturb hash table entries: 65536 (order: 6, 262144 bytes, linear)\\n[ 1.471049] TCP established hash table entries: 8192 (order: 4, 65536 bytes, linear)\\n[ 1.475072] TCP bind hash table entries: 8192 (order: 5, 131072 bytes, linear)\\n[ 1.475106] TCP: Hash tables configured (established 8192 bind 8192)\\n[ 1.482433] MPTCP token hash table entries: 1024 (order: 2, 24576 b
2026-03-13 11:01:46,327 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.142s
2026-03-13 11:01:46,328 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:01:46 GMT', 'server': 'Apache', 'content-length': '101691', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-5f501dd7-a4b1-4999-bb13-71243a7fe8e3', 'x-compute-request-id': 'req-5f501dd7-a4b1-4999-bb13-71243a7fe8e3', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": "[0;32m OK [0m] Reached target [0;1;39mInitrd Root File System[0m.\\n Starting [0;1;39mMountpoints Configured in the Real Root[0m...\\n[[0;32m OK [0m] Finished [0;1;39mMountpoints Configured in the Real Root[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mInitrd File Systems[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mInitrd Default Target[0m.\\n Starting [0;1;39mdracut pre-pivot and cleanup hook[0m...\\n[[0;32m OK [0m] Finished [0;1;39mdracut pre-pivot and cleanup hook[0m.\\n Starting [0;1;39mCleaning Up and Shutting Down Daemons[0m...\\n[[0;32m OK [0m] Stopped target [0;1;39mNetwork[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mRemote Encrypted Volumes[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mTimer Units[0m.\\n[[0;32m OK [0m] Closed [0;1;39mD-Bus System Message Bus Socket[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut pre-pivot and cleanup hook[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mInitrd Default Target[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mInitrd Root Device[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mInitrd /usr File System[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mRemote File Systems[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mPreparation for Remote File Systems[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut pre-mount hook[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut initqueue hook[0m.\\n Stopping [0;1;39mHardware RNG Entropy Gatherer Daemon[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mSetup Virtual Console[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mHardware RNG Entropy Gatherer Daemon[0m.\\n[[0;32m OK [0m] Finished [0;1;39mCleaning Up and Shutting Down Daemons[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mBasic System[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mPath Units[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSlice Units[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSocket Units[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSystem Initialization[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Encrypted Volumes[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mDispatch Password Requests to Console Directory Watch[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal File Systems[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSwaps[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mApply Kernel Variables[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mLoad Kernel Modules[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate Volatile Files and Directories[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mColdplug All udev Devices[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut pre-trigger hook[0m.\\n Stopping [0;1;39mRule-based Manager for Device Events and Files[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mRule-based Manager for Device Events and Files[0m.\\n[[0;32m OK [0m] Closed [0;1;39mudev Control Socket[0m.\\n[[0;32m OK [0m] Closed [0;1;39mudev Kernel Socket[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut pre-udev hook[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut cmdline hook[0m.\\n Starting [0;1;39mCleanup udev Database[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mCreate Static Device Nodes in /dev[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate List of Static Device Nodes[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate System Users[0m.\\n[[0;32m OK [0m] Finished [0;1;39mCleanup udev Database[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mSwitch Root[0m.\\n Starting [0;1;39mSwitch Root[0m...\\n[ 7.959765] systemd-journald[256]: Received SIGTERM from PID 1 (systemd).\\n[ 8.171039] audit: type=1404 audit(1773399656.081:2): enforcing=1 old_enforcing=0 auid=4294967295 ses=4294967295 enabled=1 old-enabled=1 lsm=selinux res=1\\n[ 8.280195] SELinux: policy capability network_peer_controls=1\\n[ 8.280217] SELinux: policy capability open_perms=1\\n[ 8.280228] SELinux: policy capability extended_socket_class=1\\n[ 8.280238] SELinux: policy capability always_check_network=0\\n[ 8.280249] SELinux: policy capability cgroup_seclabel=1\\n[ 8.280259] SELinux: policy capability nnp_nosuid_transition=1\\n[ 8.280
2026-03-13 11:01:51,496 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.161s
2026-03-13 11:01:51,498 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:01:51 GMT', 'server': 'Apache', 'content-length': '101566', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-15f375ba-ffbf-48ab-b50c-e0dd49171d96', 'x-compute-request-id': 'req-15f375ba-ffbf-48ab-b50c-e0dd49171d96', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": "K [0m] Stopped [0;1;39mGenerate network units from Kernel command line[0m.\\n Stopping [0;1;39mLoad/Save OS Random Seed[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mRestore /run/initramfs on shutdown[0m.\\n[[0;32m OK [0m] Unmounted [0;1;39mRPC Pipe File System[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mLoad/Save OS Random Seed[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSystem Initialization[0m.\\n[[0;32m OK [0m] Unset automount [0;1;39mArbitrary Executab\\ufffd\\ufffd\\ufffdormats File System Automount Point[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Encrypted Volumes[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mDispatch Password Requests to Console Directory Watch[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Integrity Protected Volumes[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSwaps[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Verity Protected Volumes[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRead and set NIS domainname from /etc/sysconfig/network[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mApply Kernel Variables[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mLoad Kernel Modules[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mUpdate is Completed[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mAutomatic Boot Loader Update[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRebuild Hardware Database[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRebuild Journal Catalog[0m.\\n Stopping [0;1;39mRecord System Boot/Shutdown in UTMP[0m...\\n[[0;32m OK [0m] Unmounted [0;1;39m/run/credentials/systemd-sysctl.service[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRecord System Boot/Shutdown in UTMP[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate Volatile Files and Directories[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal File Systems[0m.\\n Unmounting [0;1;39m/boot/efi[0m...\\n Unmounting [0;1;39mEFI System Partition Automount[0m...\\n Unmounting [0;1;39m/run/credentials/systemd-sysusers.service[0m...\\n Unmounting [0;1;39m/run/credentials/systemd-tmpfiles-setup.service[0m...\\n Unmounting [0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service[0m...\\n[[0;32m OK [0m] Unmounted [0;1;39m/boot/efi[0m.\\n[[0;32m OK [0m] Unmounted [0;1;39mEFI System Partition Automount[0m.\\n[[0;32m OK [0m] Unmounted [0;1;39m/run/credentials/systemd-sysusers.service[0m.\\n[[0;32m OK [0m] Unmounted [0;1;39m/run/credentials/systemd-tmpfiles-setup.service[0m.\\n[[0;32m OK [0m] Unmounted [0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service[0m.\\n[[0;32m OK [0m] Unset automount [0;1;39mEFI System Partition Automount[0m.\\n Unmounting [0;1;39m/boot[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mFile System Check on /dev/vda2[0m.\\n[[0;32m OK [0m] Removed slice [0;1;39mSlice /system/systemd-fsck[0m.\\n[ 42.448096] XFS (vda3): Unmounting Filesystem 85ca011f-1f82-44c5-a2ab-2dfb75665277\\n[[0;32m OK [0m] Unmounted [0;1;39m/boot[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mPreparation for Local File Systems[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mUnmount All Filesystems[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate Static Device Nodes in /dev[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate System Users[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRemount Root and Kernel File Systems[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mFile System Check on Root Device[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mSystem Shutdown[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mLate Shutdown Services[0m.\\n[[0;32m OK [0m] Finished [0;1;39mSystem Reboot[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mSystem Reboot[0m.\\n[ 42.535657] watchdog: watchdog0: watchdog did not stop!\\n[ 42.557980] systemd-shutdown[1]: Using hardware watchdog \'iTCO_wdt\', version 0, device /dev/watchdog0\\n[ 42.564529] systemd-shutdown[1]: Watchdog running with a timeout of 10min.\\n[ 42.619123] systemd-shutdown[1]: Syncing filesystems and block devices.\\n[ 42.627260] systemd-shutdown[1]: Sending SIGTERM to remaining processes...\\n[ 42.636066] systemd-journald[620]: Received SIGTERM from PID 1 (system
2026-03-13 11:01:56,898 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.392s
2026-03-13 11:01:56,899 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:01:56 GMT', 'server': 'Apache', 'content-length': '101586', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-7a9ccb8d-730b-4ba1-8fe5-300e0e9dee5a', 'x-compute-request-id': 'req-7a9ccb8d-730b-4ba1-8fe5-300e0e9dee5a', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": " DMA32 [mem 0x0000000001000000-0x000000003ffdafff]\\n[ 0.005548] Normal empty\\n[ 0.005548] Device empty\\n[ 0.005549] Movable zone start for each node\\n[ 0.005551] Early memory node ranges\\n[ 0.005552] node 0: [mem 0x0000000000001000-0x000000000009efff]\\n[ 0.005553] node 0: [mem 0x0000000000100000-0x000000003ffdafff]\\n[ 0.005555] Initmem setup node 0 [mem 0x0000000000001000-0x000000003ffdafff]\\n[ 0.005581] On node 0, zone DMA: 1 pages in unavailable ranges\\n[ 0.005614] On node 0, zone DMA: 97 pages in unavailable ranges\\n[ 0.006166] On node 0, zone DMA32: 37 pages in unavailable ranges\\n[ 0.017452] ACPI: PM-Timer IO Port: 0x608\\n[ 0.017490] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])\\n[ 0.017645] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23\\n[ 0.017648] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)\\n[ 0.017650] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)\\n[ 0.017651] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)\\n[ 0.017652] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)\\n[ 0.017653] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)\\n[ 0.017656] ACPI: Using ACPI (MADT) for SMP configuration information\\n[ 0.017658] TSC deadline timer available\\n[ 0.017663] CPU topo: Max. logical packages: 1\\n[ 0.017664] CPU topo: Max. logical dies: 1\\n[ 0.017664] CPU topo: Max. dies per package: 1\\n[ 0.017669] CPU topo: Max. threads per core: 1\\n[ 0.017670] CPU topo: Num. cores per package: 1\\n[ 0.017670] CPU topo: Num. threads per package: 1\\n[ 0.017671] CPU topo: Allowing 1 present CPUs plus 0 hotplug CPUs\\n[ 0.017712] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()\\n[ 0.017757] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]\\n[ 0.017759] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]\\n[ 0.017760] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]\\n[ 0.017761] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]\\n[ 0.017762] [mem 0x40000000-0xafffffff] available for PCI devices\\n[ 0.017763] Booting paravirtualized kernel on KVM\\n[ 0.017766] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns\\n[ 0.023321] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1\\n[ 0.023548] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u2097152\\n[ 0.023665] kvm-guest: PV spinlocks disabled, single CPU\\n[ 0.023667] Kernel command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.023748] Unknown kernel command line parameters \\"BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64\\", will be passed to user space.\\n[ 0.023780] random: crng init done\\n[ 0.023865] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)\\n[ 0.023911] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)\\n[ 0.023970] Fallback order for Node 0: 0 \\n[ 0.023974] Built 1 zonelists, mobility grouping on. Total pages: 257755\\n[ 0.023975] Policy zone: DMA32\\n[ 0.024167] mem auto-init: stack:off, heap alloc:off, heap free:off\\n[ 0.026318] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1\\n[ 0.026344] ftrace: allocating 49295 entries in 193 pages\\n[ 0.035387] ftrace: allocated 193 pages with 3 groups\\n[ 0.036070] Dynamic Preempt: voluntary\\n[ 0.036150] rcu: Preemptible hierarchical RCU implementation.\\n[ 0.036151] rcu: \\tRCU event tracing is enabled.\\n[ 0.036151] rcu: \\tRCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.\\n[ 0.036152] \\tTrampoline variant of Tasks RCU enabled.\\n[ 0.036153] \\tRude variant of Tasks RCU enabled.\\n[ 0.036153]
2026-03-13 11:02:02,259 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action 0.353s
2026-03-13 11:02:02,260 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:01 GMT', 'server': 'Apache', 'content-length': '101585', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-67193f56-8e6b-4752-9a13-97a3e94d5e3a', 'x-compute-request-id': 'req-67193f56-8e6b-4752-9a13-97a3e94d5e3a', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35/action'}
Body: b'{"output": "09efff]\\n[ 0.005553] node 0: [mem 0x0000000000100000-0x000000003ffdafff]\\n[ 0.005555] Initmem setup node 0 [mem 0x0000000000001000-0x000000003ffdafff]\\n[ 0.005581] On node 0, zone DMA: 1 pages in unavailable ranges\\n[ 0.005614] On node 0, zone DMA: 97 pages in unavailable ranges\\n[ 0.006166] On node 0, zone DMA32: 37 pages in unavailable ranges\\n[ 0.017452] ACPI: PM-Timer IO Port: 0x608\\n[ 0.017490] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])\\n[ 0.017645] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23\\n[ 0.017648] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)\\n[ 0.017650] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)\\n[ 0.017651] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)\\n[ 0.017652] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)\\n[ 0.017653] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)\\n[ 0.017656] ACPI: Using ACPI (MADT) for SMP configuration information\\n[ 0.017658] TSC deadline timer available\\n[ 0.017663] CPU topo: Max. logical packages: 1\\n[ 0.017664] CPU topo: Max. logical dies: 1\\n[ 0.017664] CPU topo: Max. dies per package: 1\\n[ 0.017669] CPU topo: Max. threads per core: 1\\n[ 0.017670] CPU topo: Num. cores per package: 1\\n[ 0.017670] CPU topo: Num. threads per package: 1\\n[ 0.017671] CPU topo: Allowing 1 present CPUs plus 0 hotplug CPUs\\n[ 0.017712] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()\\n[ 0.017757] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]\\n[ 0.017759] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]\\n[ 0.017760] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]\\n[ 0.017761] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]\\n[ 0.017762] [mem 0x40000000-0xafffffff] available for PCI devices\\n[ 0.017763] Booting paravirtualized kernel on KVM\\n[ 0.017766] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns\\n[ 0.023321] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1\\n[ 0.023548] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u2097152\\n[ 0.023665] kvm-guest: PV spinlocks disabled, single CPU\\n[ 0.023667] Kernel command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.023748] Unknown kernel command line parameters \\"BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64\\", will be passed to user space.\\n[ 0.023780] random: crng init done\\n[ 0.023865] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)\\n[ 0.023911] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)\\n[ 0.023970] Fallback order for Node 0: 0 \\n[ 0.023974] Built 1 zonelists, mobility grouping on. Total pages: 257755\\n[ 0.023975] Policy zone: DMA32\\n[ 0.024167] mem auto-init: stack:off, heap alloc:off, heap free:off\\n[ 0.026318] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1\\n[ 0.026344] ftrace: allocating 49295 entries in 193 pages\\n[ 0.035387] ftrace: allocated 193 pages with 3 groups\\n[ 0.036070] Dynamic Preempt: voluntary\\n[ 0.036150] rcu: Preemptible hierarchical RCU implementation.\\n[ 0.036151] rcu: \\tRCU event tracing is enabled.\\n[ 0.036151] rcu: \\tRCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.\\n[ 0.036152] \\tTrampoline variant of Tasks RCU enabled.\\n[ 0.036153] \\tRude variant of Tasks RCU enabled.\\n[ 0.036153] \\tTracing variant of Tasks RCU enabled.\\n[ 0.036154] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.\\n[ 0.036154] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1\\n[ 0.036158] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_c
2026-03-13 11:02:03,694 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35 1.430s
2026-03-13 11:02:03,694 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:02 GMT', 'server': 'Apache', 'content-length': '1664', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-4f43d050-fc48-4c05-9f6e-6c3e5f0c30c8', 'x-compute-request-id': 'req-4f43d050-fc48-4c05-9f6e-6c3e5f0c30c8', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35'}
Body: b'{"server": {"id": "20a866d6-d3e9-474f-b57e-8e751dbd1f35", "name": "tempest-broadcast-receiver-123-1280649603", "status": "ACTIVE", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "ecb5939eee087933ae450e0e5c2c86f56f8d7e59c37c4d8fce9463eb", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:00:25Z", "updated": "2026-03-13T11:00:41Z", "addresses": {"tempest-test-network--450998678": [{"version": 4, "addr": "10.100.0.3", "OS-EXT-IPS:type": "fixed", "OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:15:c6:c2"}]}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "True", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": "2026-03-13T11:00:41.000000", "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-STS:power_state": 1, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:02:03,953 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://neutron-public-openstack.apps-crc.testing/v2.0/ports?device_id=20a866d6-d3e9-474f-b57e-8e751dbd1f35 0.253s
2026-03-13 11:02:03,954 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:03 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '1137', 'x-openstack-request-id': 'req-1aa95fba-9c66-4278-a0b0-d04bb10098ad', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/ports?device_id=20a866d6-d3e9-474f-b57e-8e751dbd1f35'}
Body: b'{"ports":[{"id":"d5117848-60cd-4310-a81e-2d40115b2139","name":"","network_id":"abf5125e-2ddd-4d4d-9207-62a9e5795b5e","tenant_id":"75a99164fa9e49e296861ee9cee088f5","mac_address":"fa:16:3e:15:c6:c2","admin_state_up":true,"status":"ACTIVE","device_id":"20a866d6-d3e9-474f-b57e-8e751dbd1f35","device_owner":"compute:nova","fixed_ips":[{"subnet_id":"0c6afb05-e8cd-4451-8be2-e46953405c2e","ip_address":"10.100.0.3"}],"allowed_address_pairs":[{"mac_address":"fa:16:3e:15:c6:c2","ip_address":"192.168.111.11/24"}],"extra_dhcp_opts":[],"security_groups":["98c2e656-981c-45c8-8a22-8690b5481ef5"],"description":"","binding:vnic_type":"normal","qos_policy_id":null,"qos_network_policy_id":null,"port_security_enabled":true,"dns_name":"tempest-broadcast-receiver-123-1280649603","dns_assignment":[{"ip_address":"10.100.0.3","hostname":"tempest-broadcast-receiver-123-1280649603","fqdn":"tempest-broadcast-receiver-123-1280649603.openstackgate.local."}],"dns_domain":"","ip_allocation":"immediate","tags":[],"created_at":"2026-03-13T11:00:21Z","updated_at":"2026-03-13T11:00:38Z","revision_number":4,"project_id":"75a99164fa9e49e296861ee9cee088f5"}]}'
2026-03-13 11:02:05,932 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/floatingips 1.978s
2026-03-13 11:02:05,934 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"floatingip": {"floating_network_id": "d90d10b6-a44a-47b5-bcd6-630085d51c8e", "port_id": "d5117848-60cd-4310-a81e-2d40115b2139"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:05 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '881', 'x-openstack-request-id': 'req-66dd4686-c89e-413b-a83f-7f5161bee774', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/floatingips'}
Body: b'{"floatingip": {"id": "ef455a0f-e30d-4e05-aece-c79edbbd79a9", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "floating_ip_address": "192.168.122.249", "floating_network_id": "d90d10b6-a44a-47b5-bcd6-630085d51c8e", "router_id": "4c5cf4e7-7fa9-4a98-8a95-59fffe36f1a6", "port_id": "d5117848-60cd-4310-a81e-2d40115b2139", "fixed_ip_address": "10.100.0.3", "status": "DOWN", "project_id": "75a99164fa9e49e296861ee9cee088f5", "description": "", "qos_policy_id": null, "port_details": {"name": "", "network_id": "abf5125e-2ddd-4d4d-9207-62a9e5795b5e", "mac_address": "fa:16:3e:15:c6:c2", "admin_state_up": true, "status": "ACTIVE", "device_id": "20a866d6-d3e9-474f-b57e-8e751dbd1f35", "device_owner": "compute:nova"}, "dns_domain": "", "dns_name": "", "port_forwardings": [], "tags": [], "created_at": "2026-03-13T11:02:04Z", "updated_at": "2026-03-13T11:02:04Z", "revision_number": 0}}'
2026-03-13 11:02:05,935 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.249:22' as 'rocky' with public key authentication
2026-03-13 11:02:05,979 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:02:06,126 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:02:06,127 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.249 successfully created
2026-03-13 11:02:06,706 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address list" on remote host '192.168.122.249' (timeout=None)...
2026-03-13 11:02:06,707 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.249:22' as 'rocky' with public key authentication
2026-03-13 11:02:06,730 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:02:06,817 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:02:06,819 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.249 successfully created
2026-03-13 11:02:06,991 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address list" succeeded:
stderr:
None
stdout:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc fq_codel state UP group default qlen 1000
link/ether fa:16:3e:15:c6:c2 brd ff:ff:ff:ff:ff:ff
altname enp3s0
inet 10.100.0.3/28 brd 10.100.0.15 scope global dynamic noprefixroute eth0
valid_lft 43187sec preferred_lft 43187sec
inet6 fe80::f816:3eff:fe15:c6c2/64 scope link
valid_lft forever preferred_lft forever
2026-03-13 11:02:06,991 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:02:06,991 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/loopback', address='00:00:00:00:00:00', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'brd': '00:00:00:00:00:00'})
2026-03-13 11:02:06,992 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='127.0.0.1/8', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:02:06,992 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:02:06,992 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='::1/128', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:02:06,992 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:02:06,992 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:02:06,992 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:15:c6:c2', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:02:06,992 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='altname', address='enp3s0', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={})
2026-03-13 11:02:06,992 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='10.100.0.3/28', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute'})
2026-03-13 11:02:06,992 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute', 'valid_lft': '43187sec', 'preferred_lft': '43187sec'}
2026-03-13 11:02:06,992 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe15:c6c2/64', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:02:06,992 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:02:06,993 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address list" on remote host '192.168.122.249' (timeout=None)...
2026-03-13 11:02:06,993 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.249:22' as 'rocky' with public key authentication
2026-03-13 11:02:07,012 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:02:07,105 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:02:07,106 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.249 successfully created
2026-03-13 11:02:07,273 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address list" succeeded:
stderr:
None
stdout:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc fq_codel state UP group default qlen 1000
link/ether fa:16:3e:15:c6:c2 brd ff:ff:ff:ff:ff:ff
altname enp3s0
inet 10.100.0.3/28 brd 10.100.0.15 scope global dynamic noprefixroute eth0
valid_lft 43187sec preferred_lft 43187sec
inet6 fe80::f816:3eff:fe15:c6c2/64 scope link
valid_lft forever preferred_lft forever
2026-03-13 11:02:07,273 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:02:07,274 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/loopback', address='00:00:00:00:00:00', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'brd': '00:00:00:00:00:00'})
2026-03-13 11:02:07,274 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='127.0.0.1/8', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:02:07,275 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:02:07,275 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='::1/128', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:02:07,275 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:02:07,275 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:02:07,275 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:15:c6:c2', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:02:07,275 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='altname', address='enp3s0', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={})
2026-03-13 11:02:07,275 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='10.100.0.3/28', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute'})
2026-03-13 11:02:07,275 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute', 'valid_lft': '43187sec', 'preferred_lft': '43187sec'}
2026-03-13 11:02:07,275 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe15:c6c2/64', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:02:07,275 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:02:07,277 40 DEBUG [neutron_tempest_plugin.common.ip] Configuring VLAN subport interface 'eth0.123' on top of interface 'eth0' with IPs: 192.168.111.11/24
2026-03-13 11:02:07,277 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' link add link eth0 name eth0.123 type vlan id 123" on remote host '192.168.122.249' (timeout=None)...
2026-03-13 11:02:07,277 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.249:22' as 'rocky' with public key authentication
2026-03-13 11:02:07,302 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:02:07,399 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:02:07,400 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.249 successfully created
2026-03-13 11:02:07,632 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' link add link eth0 name eth0.123 type vlan id 123" succeeded:
stderr:
None
stdout:
2026-03-13 11:02:07,633 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' link set dev eth0.123 up" on remote host '192.168.122.249' (timeout=None)...
2026-03-13 11:02:07,633 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.249:22' as 'rocky' with public key authentication
2026-03-13 11:02:07,673 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:02:07,778 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:02:07,779 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.249 successfully created
2026-03-13 11:02:07,955 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' link set dev eth0.123 up" succeeded:
stderr:
None
stdout:
2026-03-13 11:02:07,955 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address add 192.168.111.11/24 dev eth0.123" on remote host '192.168.122.249' (timeout=None)...
2026-03-13 11:02:07,956 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.249:22' as 'rocky' with public key authentication
2026-03-13 11:02:07,988 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:02:08,083 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:02:08,084 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.249 successfully created
2026-03-13 11:02:08,257 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address add 192.168.111.11/24 dev eth0.123" succeeded:
stderr:
None
stdout:
2026-03-13 11:02:08,260 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address list" on remote host '192.168.122.249' (timeout=None)...
2026-03-13 11:02:08,260 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.249:22' as 'rocky' with public key authentication
2026-03-13 11:02:08,305 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:02:08,392 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:02:08,393 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.249 successfully created
2026-03-13 11:02:08,561 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address list" succeeded:
stderr:
None
stdout:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc fq_codel state UP group default qlen 1000
link/ether fa:16:3e:15:c6:c2 brd ff:ff:ff:ff:ff:ff
altname enp3s0
inet 10.100.0.3/28 brd 10.100.0.15 scope global dynamic noprefixroute eth0
valid_lft 43185sec preferred_lft 43185sec
inet6 fe80::f816:3eff:fe15:c6c2/64 scope link
valid_lft forever preferred_lft forever
3: eth0.123@eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc noqueue state UP group default qlen 1000
link/ether fa:16:3e:15:c6:c2 brd ff:ff:ff:ff:ff:ff
inet 192.168.111.11/24 scope global eth0.123
valid_lft forever preferred_lft forever
inet6 fe80::f816:3eff:fe15:c6c2/64 scope link tentative
valid_lft forever preferred_lft forever
2026-03-13 11:02:08,561 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:02:08,561 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/loopback', address='00:00:00:00:00:00', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'brd': '00:00:00:00:00:00'})
2026-03-13 11:02:08,562 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='127.0.0.1/8', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:02:08,562 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:02:08,562 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='::1/128', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:02:08,563 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:02:08,563 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:02:08,564 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:15:c6:c2', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:02:08,564 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='altname', address='enp3s0', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={})
2026-03-13 11:02:08,564 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='10.100.0.3/28', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute'})
2026-03-13 11:02:08,564 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute', 'valid_lft': '43185sec', 'preferred_lft': '43185sec'}
2026-03-13 11:02:08,564 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe15:c6c2/64', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:02:08,565 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:02:08,565 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0.123', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:02:08,565 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:15:c6:c2', device=Device(name='eth0.123', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:02:08,565 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='192.168.111.11/24', device=Device(name='eth0.123', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'global'})
2026-03-13 11:02:08,565 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'global', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:02:08,565 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe15:c6c2/64', device=Device(name='eth0.123', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:02:08,566 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:02:11,202 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/ports 2.636s
2026-03-13 11:02:11,204 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"port": {"network_id": "abf5125e-2ddd-4d4d-9207-62a9e5795b5e", "security_groups": ["98c2e656-981c-45c8-8a22-8690b5481ef5"], "allowed_address_pairs": [{"ip_address": "192.168.111.12/24"}]}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:11 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '991', 'x-openstack-request-id': 'req-872ac8d1-73cf-4b58-8dbb-3a29ec4e4071', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/ports'}
Body: b'{"port":{"id":"efe2a308-a87d-47c7-a970-149cf27f49e0","name":"","network_id":"abf5125e-2ddd-4d4d-9207-62a9e5795b5e","tenant_id":"75a99164fa9e49e296861ee9cee088f5","mac_address":"fa:16:3e:95:c1:bd","admin_state_up":true,"status":"DOWN","device_id":"","device_owner":"","fixed_ips":[{"subnet_id":"0c6afb05-e8cd-4451-8be2-e46953405c2e","ip_address":"10.100.0.8"}],"project_id":"75a99164fa9e49e296861ee9cee088f5","qos_policy_id":null,"port_security_enabled":true,"security_groups":["98c2e656-981c-45c8-8a22-8690b5481ef5"],"binding:vnic_type":"normal","allowed_address_pairs":[{"mac_address":"fa:16:3e:95:c1:bd","ip_address":"192.168.111.12/24"}],"extra_dhcp_opts":[],"description":"","qos_network_policy_id":null,"dns_name":"","dns_assignment":[{"ip_address":"10.100.0.8","hostname":"host-10-100-0-8","fqdn":"host-10-100-0-8.openstackgate.local."}],"dns_domain":"","ip_allocation":"immediate","tags":[],"created_at":"2026-03-13T11:02:09Z","updated_at":"2026-03-13T11:02:09Z","revision_number":1}}'
2026-03-13 11:02:13,470 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 202 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers 2.265s
2026-03-13 11:02:13,470 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"server": {"flavorRef": "22222222-2222-2222-2222-222222222222", "imageRef": "11111111-1111-1111-1111-111111111111", "key_name": "tempest-keypair-test-1346459391", "networks": [{"port": "efe2a308-a87d-47c7-a970-149cf27f49e0"}], "security_groups": [{"name": "secgroup_l2_flood"}], "name": "tempest-broadcast-receiver-123-1073541738"}, "os:scheduler_hints": {"same_host": "48f2c13f-b3c2-4aa0-83d2-26fd947d0725"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:11 GMT', 'server': 'Apache', 'content-length': '430', 'location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-28ff92c6-f013-469a-932b-64af5dce16bf', 'x-compute-request-id': 'req-28ff92c6-f013-469a-932b-64af5dce16bf', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '202', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers'}
Body: b'{"server": {"id": "748797fb-3ef1-42af-a728-291310d61488", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/748797fb-3ef1-42af-a728-291310d61488"}], "OS-DCF:diskConfig": "MANUAL", "security_groups": [{"name": "secgroup_l2_flood"}], "adminPass": "4BHT6oHGXHdP"}}'
2026-03-13 11:02:14,599 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488 1.128s
2026-03-13 11:02:14,600 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:13 GMT', 'server': 'Apache', 'content-length': '1384', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-ae66e3a1-d6b6-447c-b35b-1e4031f29531', 'x-compute-request-id': 'req-ae66e3a1-d6b6-447c-b35b-1e4031f29531', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488'}
Body: b'{"server": {"id": "748797fb-3ef1-42af-a728-291310d61488", "name": "tempest-broadcast-receiver-123-1073541738", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:02:13Z", "updated": "2026-03-13T11:02:14Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/748797fb-3ef1-42af-a728-291310d61488"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "OS-EXT-STS:task_state": "scheduling", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:02:18,477 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488 2.871s
2026-03-13 11:02:18,478 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:15 GMT', 'server': 'Apache', 'content-length': '1442', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-e3c51566-892e-4a54-9eeb-182963b41569', 'x-compute-request-id': 'req-e3c51566-892e-4a54-9eeb-182963b41569', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488'}
Body: b'{"server": {"id": "748797fb-3ef1-42af-a728-291310d61488", "name": "tempest-broadcast-receiver-123-1073541738", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:02:13Z", "updated": "2026-03-13T11:02:15Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/748797fb-3ef1-42af-a728-291310d61488"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:02:18,485 40 INFO [tempest.common.waiters] State transition "BUILD/scheduling" ==> "BUILD/spawning" after 4 second wait
2026-03-13 11:02:22,713 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488 3.226s
2026-03-13 11:02:22,714 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:19 GMT', 'server': 'Apache', 'content-length': '1494', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-ed99d6c4-f228-4cc5-8cdf-0ba5e7825a88', 'x-compute-request-id': 'req-ed99d6c4-f228-4cc5-8cdf-0ba5e7825a88', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488'}
Body: b'{"server": {"id": "748797fb-3ef1-42af-a728-291310d61488", "name": "tempest-broadcast-receiver-123-1073541738", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:02:13Z", "updated": "2026-03-13T11:02:15Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/748797fb-3ef1-42af-a728-291310d61488"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:02:24,557 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488 0.835s
2026-03-13 11:02:24,557 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:23 GMT', 'server': 'Apache', 'content-length': '1494', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-d40a9b96-538c-4e0a-b1bb-c29b851a26cc', 'x-compute-request-id': 'req-d40a9b96-538c-4e0a-b1bb-c29b851a26cc', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488'}
Body: b'{"server": {"id": "748797fb-3ef1-42af-a728-291310d61488", "name": "tempest-broadcast-receiver-123-1073541738", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:02:13Z", "updated": "2026-03-13T11:02:15Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/748797fb-3ef1-42af-a728-291310d61488"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:02:28,631 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488 3.069s
2026-03-13 11:02:28,632 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:25 GMT', 'server': 'Apache', 'content-length': '1494', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-3aae13ed-0020-4da7-a992-4c7ef2a4f57d', 'x-compute-request-id': 'req-3aae13ed-0020-4da7-a992-4c7ef2a4f57d', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488'}
Body: b'{"server": {"id": "748797fb-3ef1-42af-a728-291310d61488", "name": "tempest-broadcast-receiver-123-1073541738", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:02:13Z", "updated": "2026-03-13T11:02:15Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/748797fb-3ef1-42af-a728-291310d61488"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:02:30,549 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488 0.909s
2026-03-13 11:02:30,550 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:29 GMT', 'server': 'Apache', 'content-length': '1494', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-769d656c-53c8-4701-8176-ebfbe44cbc05', 'x-compute-request-id': 'req-769d656c-53c8-4701-8176-ebfbe44cbc05', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488'}
Body: b'{"server": {"id": "748797fb-3ef1-42af-a728-291310d61488", "name": "tempest-broadcast-receiver-123-1073541738", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:02:13Z", "updated": "2026-03-13T11:02:15Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/748797fb-3ef1-42af-a728-291310d61488"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:02:32,091 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488 0.534s
2026-03-13 11:02:32,092 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:31 GMT', 'server': 'Apache', 'content-length': '1664', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-566ad32b-1a7a-42ac-b68d-d3e82023dbd0', 'x-compute-request-id': 'req-566ad32b-1a7a-42ac-b68d-d3e82023dbd0', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488'}
Body: b'{"server": {"id": "748797fb-3ef1-42af-a728-291310d61488", "name": "tempest-broadcast-receiver-123-1073541738", "status": "ACTIVE", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:02:13Z", "updated": "2026-03-13T11:02:31Z", "addresses": {"tempest-test-network--450998678": [{"version": 4, "addr": "10.100.0.8", "OS-EXT-IPS:type": "fixed", "OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:95:c1:bd"}]}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/748797fb-3ef1-42af-a728-291310d61488"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "True", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": "2026-03-13T11:02:31.000000", "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-STS:power_state": 1, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:02:32,097 40 INFO [tempest.common.waiters] State transition "BUILD/spawning" ==> "ACTIVE/None" after 18 second wait
2026-03-13 11:02:32,223 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.126s
2026-03-13 11:02:32,223 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:32 GMT', 'server': 'Apache', 'content-length': '14', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-df12fdf6-21cd-46b4-b6bc-456df258861e', 'x-compute-request-id': 'req-df12fdf6-21cd-46b4-b6bc-456df258861e', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": ""}'
2026-03-13 11:02:37,354 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.123s
2026-03-13 11:02:37,354 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:37 GMT', 'server': 'Apache', 'content-length': '14', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-d4f2c5d4-24e1-497f-a1ca-cb75a1ccb5e3', 'x-compute-request-id': 'req-d4f2c5d4-24e1-497f-a1ca-cb75a1ccb5e3', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": ""}'
2026-03-13 11:02:42,576 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.216s
2026-03-13 11:02:42,577 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:42 GMT', 'server': 'Apache', 'content-length': '59032', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-5d8118b9-5f4d-49c5-b705-a1d9657123f9', 'x-compute-request-id': 'req-5d8118b9-5f4d-49c5-b705-a1d9657123f9', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000001] kvm-clock: using sched offset of 7411935094 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000847] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001172] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001184] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003838] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003849] Using GB pages for direct mapping\\n[ 0.004007] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.004062] ACPI: Early table checksum verification disabled\\n[ 0.004065] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.004069] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004074] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004078] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004081] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.004083] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004085] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004087] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004089] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004090] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004091] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004092] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004093] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004093] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005223] No NUMA configuration found\\n[ 0.005224] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005233] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005437] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005448] Zone ranges:\\n[ 0.005449] DMA
2026-03-13 11:02:47,719 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.135s
2026-03-13 11:02:47,719 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:47 GMT', 'server': 'Apache', 'content-length': '82565', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-5105afe1-abc2-49aa-9473-d046441de0bd', 'x-compute-request-id': 'req-5105afe1-abc2-49aa-9473-d046441de0bd', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000001] kvm-clock: using sched offset of 7411935094 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000847] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001172] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001184] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003838] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003849] Using GB pages for direct mapping\\n[ 0.004007] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.004062] ACPI: Early table checksum verification disabled\\n[ 0.004065] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.004069] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004074] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004078] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004081] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.004083] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004085] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004087] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004089] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004090] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004091] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004092] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004093] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004093] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005223] No NUMA configuration found\\n[ 0.005224] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005233] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005437] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005448] Zone ranges:\\n[ 0.005449] DMA
2026-03-13 11:02:52,855 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.127s
2026-03-13 11:02:52,855 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:52 GMT', 'server': 'Apache', 'content-length': '97660', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-b894f868-6fe5-446f-bde7-a4616eb1bccf', 'x-compute-request-id': 'req-b894f868-6fe5-446f-bde7-a4616eb1bccf', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000001] kvm-clock: using sched offset of 7411935094 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000847] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001172] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001184] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003838] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003849] Using GB pages for direct mapping\\n[ 0.004007] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.004062] ACPI: Early table checksum verification disabled\\n[ 0.004065] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.004069] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004074] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004078] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004081] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.004083] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004085] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004087] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004089] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004090] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004091] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004092] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004093] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004093] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005223] No NUMA configuration found\\n[ 0.005224] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005233] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005437] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005448] Zone ranges:\\n[ 0.005449] DMA
2026-03-13 11:02:58,005 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.142s
2026-03-13 11:02:58,008 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:02:57 GMT', 'server': 'Apache', 'content-length': '97660', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-b2f9717c-9a89-49ec-bd1e-44a0db9a995f', 'x-compute-request-id': 'req-b2f9717c-9a89-49ec-bd1e-44a0db9a995f', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000001] kvm-clock: using sched offset of 7411935094 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000847] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001172] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001184] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003838] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003849] Using GB pages for direct mapping\\n[ 0.004007] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.004062] ACPI: Early table checksum verification disabled\\n[ 0.004065] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.004069] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004074] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004078] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004081] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.004083] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004085] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004087] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004089] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004090] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004091] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004092] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004093] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004093] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005223] No NUMA configuration found\\n[ 0.005224] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005233] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005437] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005448] Zone ranges:\\n[ 0.005449] DMA
2026-03-13 11:03:03,212 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.195s
2026-03-13 11:03:03,213 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:03:03 GMT', 'server': 'Apache', 'content-length': '98118', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-835b2e48-ddc3-4931-96f4-e0c59364f413', 'x-compute-request-id': 'req-835b2e48-ddc3-4931-96f4-e0c59364f413', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000001] kvm-clock: using sched offset of 7411935094 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000847] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001172] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001184] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003838] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003849] Using GB pages for direct mapping\\n[ 0.004007] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.004062] ACPI: Early table checksum verification disabled\\n[ 0.004065] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.004069] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004074] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004078] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004081] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.004083] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004085] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004087] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004089] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004090] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004091] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004092] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004093] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004093] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005223] No NUMA configuration found\\n[ 0.005224] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005233] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005437] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005448] Zone ranges:\\n[ 0.005449] DMA
2026-03-13 11:03:08,451 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.231s
2026-03-13 11:03:08,452 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:03:08 GMT', 'server': 'Apache', 'content-length': '98623', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-508e581a-6ba7-4b58-acb9-541d5f07ab16', 'x-compute-request-id': 'req-508e581a-6ba7-4b58-acb9-541d5f07ab16', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000001] kvm-clock: using sched offset of 7411935094 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000847] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001172] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001184] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003838] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003849] Using GB pages for direct mapping\\n[ 0.004007] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.004062] ACPI: Early table checksum verification disabled\\n[ 0.004065] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.004069] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004074] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004078] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004081] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.004083] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004085] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004087] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004089] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004090] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004091] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004092] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004093] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004093] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005223] No NUMA configuration found\\n[ 0.005224] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005233] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005437] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005448] Zone ranges:\\n[ 0.005449] DMA
2026-03-13 11:03:14,234 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.774s
2026-03-13 11:03:14,236 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:03:13 GMT', 'server': 'Apache', 'content-length': '98623', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-d94bc0b4-525d-4700-a7e9-a008552f924c', 'x-compute-request-id': 'req-d94bc0b4-525d-4700-a7e9-a008552f924c', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000001] kvm-clock: using sched offset of 7411935094 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000847] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001172] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001184] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003838] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003849] Using GB pages for direct mapping\\n[ 0.004007] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.004062] ACPI: Early table checksum verification disabled\\n[ 0.004065] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.004069] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004074] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004078] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004081] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.004083] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004085] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004087] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004089] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004090] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004091] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004092] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004093] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004093] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005223] No NUMA configuration found\\n[ 0.005224] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005233] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005437] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005448] Zone ranges:\\n[ 0.005449] DMA
2026-03-13 11:03:19,396 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.156s
2026-03-13 11:03:19,399 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:03:19 GMT', 'server': 'Apache', 'content-length': '98879', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-ee3eee7e-47d5-4cde-b4dc-6b9eb6e8bffe', 'x-compute-request-id': 'req-ee3eee7e-47d5-4cde-b4dc-6b9eb6e8bffe', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000001] kvm-clock: using sched offset of 7411935094 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000006] tsc: Detected 2799.998 MHz processor\\n[ 0.000847] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001172] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001184] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003838] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003849] Using GB pages for direct mapping\\n[ 0.004007] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.004062] ACPI: Early table checksum verification disabled\\n[ 0.004065] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.004069] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004074] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004078] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004081] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.004083] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004085] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004087] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004089] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004090] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004091] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004092] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004093] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004093] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005223] No NUMA configuration found\\n[ 0.005224] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005233] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005437] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005448] Zone ranges:\\n[ 0.005449] DMA
2026-03-13 11:03:24,649 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.238s
2026-03-13 11:03:24,650 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:03:24 GMT', 'server': 'Apache', 'content-length': '101679', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-f0d8c0a5-1444-480c-9757-50306cac2017', 'x-compute-request-id': 'req-f0d8c0a5-1444-480c-9757-50306cac2017', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": "PC 00000001)\\n[ 0.004087] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004089] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004090] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004091] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004092] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004093] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004093] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005223] No NUMA configuration found\\n[ 0.005224] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005233] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005437] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005448] Zone ranges:\\n[ 0.005449] DMA [mem 0x0000000000001000-0x0000000000ffffff]\\n[ 0.005451] DMA32 [mem 0x0000000001000000-0x000000003ffdafff]\\n[ 0.005452] Normal empty\\n[ 0.005453] Device empty\\n[ 0.005454] Movable zone start for each node\\n[ 0.005456] Early memory node ranges\\n[ 0.005456] node 0: [mem 0x0000000000001000-0x000000000009efff]\\n[ 0.005458] node 0: [mem 0x0000000000100000-0x000000003ffdafff]\\n[ 0.005459] Initmem setup node 0 [mem 0x0000000000001000-0x000000003ffdafff]\\n[ 0.005489] On node 0, zone DMA: 1 pages in unavailable ranges\\n[ 0.005523] On node 0, zone DMA: 97 pages in unavailable ranges\\n[ 0.006072] On node 0, zone DMA32: 37 pages in unavailable ranges\\n[ 0.017342] ACPI: PM-Timer IO Port: 0x608\\n[ 0.017381] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])\\n[ 0.017527] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23\\n[ 0.017531] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)\\n[ 0.017533] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)\\n[ 0.017535] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)\\n[ 0.017536] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)\\n[ 0.017538] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)\\n[ 0.017541] ACPI: Using ACPI (MADT) for SMP configuration information\\n[ 0.017543] TSC deadline timer available\\n[ 0.017549] CPU topo: Max. logical packages: 1\\n[ 0.017550] CPU topo: Max. logical dies: 1\\n[ 0.017550] CPU topo: Max. dies per package: 1\\n[ 0.017557] CPU topo: Max. threads per core: 1\\n[ 0.017558] CPU topo: Num. cores per package: 1\\n[ 0.017558] CPU topo: Num. threads per package: 1\\n[ 0.017559] CPU topo: Allowing 1 present CPUs plus 0 hotplug CPUs\\n[ 0.017611] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()\\n[ 0.017663] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]\\n[ 0.017665] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]\\n[ 0.017666] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]\\n[ 0.017667] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]\\n[ 0.017669] [mem 0x40000000-0xafffffff] available for PCI devices\\n[ 0.017671] Booting paravirtualized kernel on KVM\\n[ 0.017674] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns\\n[ 0.023556] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1\\n[ 0.023797] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u2097152\\n[ 0.023947] kvm-guest: PV spinlocks disabled, single CPU\\n[ 0.023952] Kernel command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.024059] Unknown kernel command line parameters \\"BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64\\", will be passed to user space.\\n[ 0.024093] random: crn
2026-03-13 11:03:29,963 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.306s
2026-03-13 11:03:29,964 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:03:29 GMT', 'server': 'Apache', 'content-length': '101677', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-0f1b793e-c48b-42ca-b2d5-edbb4065bf0c', 'x-compute-request-id': 'req-0f1b793e-c48b-42ca-b2d5-edbb4065bf0c', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": " 0.644860] pci 0000:00:02.1: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.647100] pci 0000:00:02.1: BAR 0 [mem 0xfea12000-0xfea12fff]\\n[ 0.647204] pci 0000:00:02.1: PCI bridge to [bus 03]\\n[ 0.647527] pci 0000:00:02.1: bridge window [mem 0xfe800000-0xfe9fffff]\\n[ 0.648904] pci 0000:00:02.1: bridge window [mem 0xfae00000-0xfaffffff 64bit pref]\\n[ 0.649275] pci 0000:00:02.1: enabling Extended Tags\\n[ 0.657908] pci 0000:00:02.2: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.660110] pci 0000:00:02.2: BAR 0 [mem 0xfea13000-0xfea13fff]\\n[ 0.660237] pci 0000:00:02.2: PCI bridge to [bus 04]\\n[ 0.660431] pci 0000:00:02.2: bridge window [mem 0xfe600000-0xfe7fffff]\\n[ 0.662142] pci 0000:00:02.2: bridge window [mem 0xfac00000-0xfadfffff 64bit pref]\\n[ 0.662509] pci 0000:00:02.2: enabling Extended Tags\\n[ 0.671069] pci 0000:00:02.3: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.674129] pci 0000:00:02.3: BAR 0 [mem 0xfea14000-0xfea14fff]\\n[ 0.674233] pci 0000:00:02.3: PCI bridge to [bus 05]\\n[ 0.674392] pci 0000:00:02.3: bridge window [mem 0xfe400000-0xfe5fffff]\\n[ 0.675724] pci 0000:00:02.3: bridge window [mem 0xfaa00000-0xfabfffff 64bit pref]\\n[ 0.676070] pci 0000:00:02.3: enabling Extended Tags\\n[ 0.685272] pci 0000:00:02.4: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.689072] pci 0000:00:02.4: BAR 0 [mem 0xfea15000-0xfea15fff]\\n[ 0.689231] pci 0000:00:02.4: PCI bridge to [bus 06]\\n[ 0.689425] pci 0000:00:02.4: bridge window [mem 0xfe200000-0xfe3fffff]\\n[ 0.690793] pci 0000:00:02.4: bridge window [mem 0xfa800000-0xfa9fffff 64bit pref]\\n[ 0.691127] pci 0000:00:02.4: enabling Extended Tags\\n[ 0.700475] pci 0000:00:02.5: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.703101] pci 0000:00:02.5: BAR 0 [mem 0xfea16000-0xfea16fff]\\n[ 0.703204] pci 0000:00:02.5: PCI bridge to [bus 07]\\n[ 0.703364] pci 0000:00:02.5: bridge window [mem 0xfe000000-0xfe1fffff]\\n[ 0.704964] pci 0000:00:02.5: bridge window [mem 0xfa600000-0xfa7fffff 64bit pref]\\n[ 0.705287] pci 0000:00:02.5: enabling Extended Tags\\n[ 0.713990] pci 0000:00:02.6: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.716108] pci 0000:00:02.6: BAR 0 [mem 0xfea17000-0xfea17fff]\\n[ 0.716243] pci 0000:00:02.6: PCI bridge to [bus 08]\\n[ 0.716404] pci 0000:00:02.6: bridge window [mem 0xfde00000-0xfdffffff]\\n[ 0.717189] pci 0000:00:02.6: bridge window [mem 0xfa400000-0xfa5fffff 64bit pref]\\n[ 0.717495] pci 0000:00:02.6: enabling Extended Tags\\n[ 0.725932] pci 0000:00:02.7: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.728102] pci 0000:00:02.7: BAR 0 [mem 0xfea18000-0xfea18fff]\\n[ 0.728205] pci 0000:00:02.7: PCI bridge to [bus 09]\\n[ 0.728389] pci 0000:00:02.7: bridge window [mem 0xfdc00000-0xfddfffff]\\n[ 0.729191] pci 0000:00:02.7: bridge window [mem 0xfa200000-0xfa3fffff 64bit pref]\\n[ 0.729503] pci 0000:00:02.7: enabling Extended Tags\\n[ 0.737940] pci 0000:00:03.0: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.740103] pci 0000:00:03.0: BAR 0 [mem 0xfea19000-0xfea19fff]\\n[ 0.740232] pci 0000:00:03.0: PCI bridge to [bus 0a]\\n[ 0.740397] pci 0000:00:03.0: bridge window [mem 0xfda00000-0xfdbfffff]\\n[ 0.741904] pci 0000:00:03.0: bridge window [mem 0xfa000000-0xfa1fffff 64bit pref]\\n[ 0.742214] pci 0000:00:03.0: enabling Extended Tags\\n[ 0.750801] pci 0000:00:03.1: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.753105] pci 0000:00:03.1: BAR 0 [mem 0xfea1a000-0xfea1afff]\\n[ 0.753226] pci 0000:00:03.1: PCI bridge to [bus 0b]\\n[ 0.753415] pci 0000:00:03.1: bridge window [mem 0xfd800000-0xfd9fffff]\\n[ 0.754753] pci 0000:00:03.1: bridge window [mem 0xf9e00000-0xf9ffffff 64bit pref]\\n[ 0.755069] pci 0000:00:03.1: enabling Extended Tags\\n[ 0.763928] pci 0000:00:03.2: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.766100] pci 0000:00:03.2: BAR 0 [mem 0xfea
2026-03-13 11:03:35,143 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.172s
2026-03-13 11:03:35,144 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:03:34 GMT', 'server': 'Apache', 'content-length': '101742', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-626d1465-ae4f-470f-9e82-5dfdf9e058ea', 'x-compute-request-id': 'req-626d1465-ae4f-470f-9e82-5dfdf9e058ea', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": "57600] ata1.00: ATAPI: QEMU DVD-ROM, 2.5+, max UDMA/100\\n[ 6.457617] ata1.00: applying bridge limits\\n[ 6.457907] ata1.00: configured for UDMA/100\\n[ 6.458546] scsi 0:0:0:0: CD-ROM QEMU QEMU DVD-ROM 2.5+ PQ: 0 ANSI: 5\\n[ 6.460443] ata4: SATA link down (SStatus 0 SControl 300)\\n[ 6.475976] ata6: SATA link down (SStatus 0 SControl 300)\\n[ 6.476468] ata5: SATA link down (SStatus 0 SControl 300)\\n[ 6.518936] scsi 0:0:0:0: Attached scsi generic sg0 type 5\\n[ 6.537181] sr 0:0:0:0: [sr0] scsi3-mmc drive: 4x/4x cd/rw xa/form2 tray\\n[ 6.537200] cdrom: Uniform CD-ROM driver Revision: 3.20\\n[[0;32m OK [0m] Finished [0;1;39mdracut initqueue hook[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mPreparation for Remote File Systems[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mRemote Encrypted Volumes[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mRemote File Systems[0m.\\n Starting [0;1;39mdracut pre-mount hook[0m...\\n[[0;32m OK [0m] Finished [0;1;39mdracut pre-mount hook[0m.\\n Starting [0;1;39mFile System Check on /dev\\ufffd\\ufffd\\ufffdae77-65d9-4a11-8963-b8bae9a916b7[0m...\\n[[0;32m OK [0m] Finished [0;1;39mFile System Check on /dev\\ufffd\\ufffd\\ufffdddae77-65d9-4a11-8963-b8bae9a916b7[0m.\\n Mounting [0;1;39m/sysroot[0m...\\n[ 7.647280] SGI XFS with ACLs, security attributes, scrub, quota, no debug enabled\\n[ 7.670607] XFS (vda4): Mounting V5 Filesystem 0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 7.719641] XFS (vda4): Ending clean mount\\n[[0;32m OK [0m] Mounted [0;1;39m/sysroot[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mInitrd Root File System[0m.\\n Starting [0;1;39mMountpoints Configured in the Real Root[0m...\\n[[0;32m OK [0m] Finished [0;1;39mMountpoints Configured in the Real Root[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mInitrd File Systems[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mInitrd Default Target[0m.\\n Starting [0;1;39mdracut pre-pivot and cleanup hook[0m...\\n[[0;32m OK [0m] Finished [0;1;39mdracut pre-pivot and cleanup hook[0m.\\n Starting [0;1;39mCleaning Up and Shutting Down Daemons[0m...\\n[[0;32m OK [0m] Stopped target [0;1;39mNetwork[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mRemote Encrypted Volumes[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mTimer Units[0m.\\n[[0;32m OK [0m] Closed [0;1;39mD-Bus System Message Bus Socket[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut pre-pivot and cleanup hook[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mInitrd Default Target[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mInitrd Root Device[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mInitrd /usr File System[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mRemote File Systems[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mPreparation for Remote File Systems[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut pre-mount hook[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut initqueue hook[0m.\\n Stopping [0;1;39mHardware RNG Entropy Gatherer Daemon[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mSetup Virtual Console[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mHardware RNG Entropy Gatherer Daemon[0m.\\n[[0;32m OK [0m] Finished [0;1;39mCleaning Up and Shutting Down Daemons[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mBasic System[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mPath Units[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSlice Units[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSocket Units[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSystem Initialization[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Encrypted Volumes[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mDispatch Password Requests to Console Directory Watch[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal File Systems[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSwaps[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mApply Kernel Variables[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mLoad Kernel Modules[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate Volatile Files and Directories[0m.\\n[[0;32m OK [0
2026-03-13 11:03:40,802 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.651s
2026-03-13 11:03:40,803 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:03:40 GMT', 'server': 'Apache', 'content-length': '101685', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-f5081c29-cb5d-4ae1-93bc-a208ac8f0fff', 'x-compute-request-id': 'req-f5081c29-cb5d-4ae1-93bc-a208ac8f0fff', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": "Initialized virtio_gpu 0.1.0 for 0000:00:01.0 on minor 0\\n[ 12.171542] fbcon: virtio_gpudrmfb (fb0) is primary device\\n[ 12.175397] Console: switching to colour frame buffer device 160x50\\n[ 12.185338] virtio-pci 0000:00:01.0: [drm] fb0: virtio_gpudrmfb frame buffer device\\n[[0;32m OK [0m] Finished [0;1;39mUpdate is Completed[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mSystem Initialization[0m.\\n Starting [0;1;39mRestore /run/initramfs on shutdown[0m...\\n Starting [0;1;39mRelabel all filesystems[0m...\\n[[0;32m OK [0m] Finished [0;1;39mRestore /run/initramfs on shutdown[0m.\\n[ 11.900145] selinux-autorelabel[692]: *** Warning -- SELinux targeted policy relabel is required.\\n[ 11.904068] selinux-autorelabel[692]: *** Relabeling could take a very long time, depending on file\\n[ 11.912313] selinux-autorelabel[692]: *** system size and speed of hard drives.\\n[ 11.941245] selinux-autorelabel[692]: Running: /sbin/fixfiles -T 0 restore\\n[ 23.352220] kauditd_printk_skb: 27 callbacks suppressed\\n[ 23.352255] audit: type=1400 audit(1773399782.157:39): avc: denied { map } for pid=1105 comm=\\"setfiles\\" path=\\"/etc/ld.so.cache\\" dev=\\"vda4\\" ino=25166537 scontext=system_u:system_r:setfiles_t:s0 tcontext=system_u:object_r:unlabeled_t:s0 tclass=file permissive=1\\n[ 23.398525] selinux-autorelabel[701]: Warning: Skipping the following R/O filesystems:\\n[ 23.404180] selinux-autorelabel[701]: /run/credentials/systemd-sysctl.service\\n[ 23.409109] selinux-autorelabel[701]: /run/credentials/systemd-sysusers.service\\n[ 23.413663] selinux-autorelabel[701]: /run/credentials/systemd-tmpfiles-setup-dev.service\\n[ 23.419490] selinux-autorelabel[701]: /run/credentials/systemd-tmpfiles-setup.service\\n[ 23.425117] selinux-autorelabel[701]: Relabeling / /boot /dev /dev/hugepages /dev/mqueue /dev/pts /dev/shm /run /sys /sys/fs/cgroup /sys/fs/pstore /sys/kernel/debug /sys/kernel/tracing\\n[ 38.173309] audit: type=1400 audit(1773399796.978:40): avc: denied { module_request } for pid=1110 comm=\\"setfiles\\" kmod=\\"block-major-0-0\\" scontext=system_u:system_r:setfiles_t:s0 tcontext=system_u:system_r:kernel_t:s0 tclass=system permissive=1\\n[ 41.102069] selinux-autorelabel[1110]: Warning no default label for /dev/mqueue\\n[ 41.108750] selinux-autorelabel[701]: Cleaning up labels on /tmp\\n[[0;32m OK [0m] Removed slice [0;1;39mSlice /system/modprobe[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mInitrd File Systems[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mInitrd Root File System[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mPreparation for Network[0m.\\n Unmounting [0;1;39mRPC Pipe File System[0m...\\n Stopping [0;1;39mRestore /run/initramfs on shutdown[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mRelabel all filesystems[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mGenerate network units from Kernel command line[0m.\\n Stopping [0;1;39mLoad/Save OS Random Seed[0m...\\n[[0;32m OK [0m] Unmounted [0;1;39mRPC Pipe File System[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRestore /run/initramfs on shutdown[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mLoad/Save OS Random Seed[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSystem Initialization[0m.\\n[[0;32m OK [0m] Unset automount [0;1;39mArbitrary Executab\\ufffd\\ufffd\\ufffdormats File System Automount Point[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Encrypted Volumes[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mDispatch Password Requests to Console Directory Watch[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Integrity Protected Volumes[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSwaps[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Verity Protected Volumes[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRead and set NIS domainname from /etc/sysconfig/network[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mApply Kernel Variables[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mLoad Kernel Modules[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mUpdate is Completed[0m.\\n[[0;32m OK [0m] Stopped [0;1;3
2026-03-13 11:03:46,956 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 1.148s
2026-03-13 11:03:46,957 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:03:45 GMT', 'server': 'Apache', 'content-length': '101586', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-5e726562-ee8d-4472-8f37-c5f5252eb910', 'x-compute-request-id': 'req-5e726562-ee8d-4472-8f37-c5f5252eb910', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": "rite()\\n[ 0.017110] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]\\n[ 0.017112] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]\\n[ 0.017112] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]\\n[ 0.017113] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]\\n[ 0.017114] [mem 0x40000000-0xafffffff] available for PCI devices\\n[ 0.017115] Booting paravirtualized kernel on KVM\\n[ 0.017117] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns\\n[ 0.022743] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1\\n[ 0.023010] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u2097152\\n[ 0.023160] kvm-guest: PV spinlocks disabled, single CPU\\n[ 0.023162] Kernel command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.023238] Unknown kernel command line parameters \\"BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64\\", will be passed to user space.\\n[ 0.023269] random: crng init done\\n[ 0.023389] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)\\n[ 0.023433] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)\\n[ 0.023483] Fallback order for Node 0: 0 \\n[ 0.023486] Built 1 zonelists, mobility grouping on. Total pages: 257755\\n[ 0.023487] Policy zone: DMA32\\n[ 0.023713] mem auto-init: stack:off, heap alloc:off, heap free:off\\n[ 0.025917] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1\\n[ 0.025938] ftrace: allocating 49295 entries in 193 pages\\n[ 0.034056] ftrace: allocated 193 pages with 3 groups\\n[ 0.034633] Dynamic Preempt: voluntary\\n[ 0.034681] rcu: Preemptible hierarchical RCU implementation.\\n[ 0.034681] rcu: \\tRCU event tracing is enabled.\\n[ 0.034682] rcu: \\tRCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.\\n[ 0.034683] \\tTrampoline variant of Tasks RCU enabled.\\n[ 0.034683] \\tRude variant of Tasks RCU enabled.\\n[ 0.034684] \\tTracing variant of Tasks RCU enabled.\\n[ 0.034684] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.\\n[ 0.034685] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1\\n[ 0.034688] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.\\n[ 0.034690] RCU Tasks Rude: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.\\n[ 0.034691] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.\\n[ 0.038515] NR_IRQS: 524544, nr_irqs: 256, preallocated irqs: 16\\n[ 0.038888] rcu: srcu_init: Setting srcu_struct sizes based on contention.\\n[ 0.038991] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)\\n[ 0.091293] Console: colour VGA+ 80x25\\n[ 0.091418] printk: console [ttyS0] enabled\\n[ 0.463606] ACPI: Core revision 20230331\\n[ 0.465535] APIC: Switch to symmetric I/O mode setup\\n[ 0.469048] x2apic enabled\\n[ 0.471547] APIC: Switched APIC routing to: physical x2apic\\n[ 0.479292] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x285c3ee517e, max_idle_ns: 440795257231 ns\\n[ 0.484144] Calibrating delay loop (skipped) preset value.. 5599.99 BogoMIPS (lpj=2799998)\\n[ 0.485139] x86/cpu: User Mode Instruction Prevention (UMIP) activated\\n[ 0.485139] Last level iTLB entries: 4KB 512, 2MB 255, 4MB 127\\n[ 0.485139] Last level dTLB entries: 4KB 512, 2MB 255, 4MB 127, 1GB 0\\n[ 0.485139] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization\\n[ 0.485139] Spectre V2 : Mitigation: Retpolines\\n[ 0.485139] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT\\n[ 0.485139] Spectre V2 : Enabling Speculation Barrier
2026-03-13 11:03:52,081 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.117s
2026-03-13 11:03:52,083 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:03:51 GMT', 'server': 'Apache', 'content-length': '101586', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-c60883c1-1164-493a-9000-e594bc0f6f3a', 'x-compute-request-id': 'req-c60883c1-1164-493a-9000-e594bc0f6f3a', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": "00000000-0x00000fff]\\n[ 0.017112] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]\\n[ 0.017112] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]\\n[ 0.017113] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]\\n[ 0.017114] [mem 0x40000000-0xafffffff] available for PCI devices\\n[ 0.017115] Booting paravirtualized kernel on KVM\\n[ 0.017117] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns\\n[ 0.022743] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1\\n[ 0.023010] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u2097152\\n[ 0.023160] kvm-guest: PV spinlocks disabled, single CPU\\n[ 0.023162] Kernel command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.023238] Unknown kernel command line parameters \\"BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64\\", will be passed to user space.\\n[ 0.023269] random: crng init done\\n[ 0.023389] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)\\n[ 0.023433] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)\\n[ 0.023483] Fallback order for Node 0: 0 \\n[ 0.023486] Built 1 zonelists, mobility grouping on. Total pages: 257755\\n[ 0.023487] Policy zone: DMA32\\n[ 0.023713] mem auto-init: stack:off, heap alloc:off, heap free:off\\n[ 0.025917] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1\\n[ 0.025938] ftrace: allocating 49295 entries in 193 pages\\n[ 0.034056] ftrace: allocated 193 pages with 3 groups\\n[ 0.034633] Dynamic Preempt: voluntary\\n[ 0.034681] rcu: Preemptible hierarchical RCU implementation.\\n[ 0.034681] rcu: \\tRCU event tracing is enabled.\\n[ 0.034682] rcu: \\tRCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.\\n[ 0.034683] \\tTrampoline variant of Tasks RCU enabled.\\n[ 0.034683] \\tRude variant of Tasks RCU enabled.\\n[ 0.034684] \\tTracing variant of Tasks RCU enabled.\\n[ 0.034684] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.\\n[ 0.034685] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1\\n[ 0.034688] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.\\n[ 0.034690] RCU Tasks Rude: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.\\n[ 0.034691] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.\\n[ 0.038515] NR_IRQS: 524544, nr_irqs: 256, preallocated irqs: 16\\n[ 0.038888] rcu: srcu_init: Setting srcu_struct sizes based on contention.\\n[ 0.038991] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)\\n[ 0.091293] Console: colour VGA+ 80x25\\n[ 0.091418] printk: console [ttyS0] enabled\\n[ 0.463606] ACPI: Core revision 20230331\\n[ 0.465535] APIC: Switch to symmetric I/O mode setup\\n[ 0.469048] x2apic enabled\\n[ 0.471547] APIC: Switched APIC routing to: physical x2apic\\n[ 0.479292] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x285c3ee517e, max_idle_ns: 440795257231 ns\\n[ 0.484144] Calibrating delay loop (skipped) preset value.. 5599.99 BogoMIPS (lpj=2799998)\\n[ 0.485139] x86/cpu: User Mode Instruction Prevention (UMIP) activated\\n[ 0.485139] Last level iTLB entries: 4KB 512, 2MB 255, 4MB 127\\n[ 0.485139] Last level dTLB entries: 4KB 512, 2MB 255, 4MB 127, 1GB 0\\n[ 0.485139] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization\\n[ 0.485139] Spectre V2 : Mitigation: Retpolines\\n[ 0.485139] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT\\n[ 0.485139] Spectre V2 : Enabling Speculation Barrier for firmware calls\\n[ 0.485139] RETBleed: Mitigation: untrained retur
2026-03-13 11:03:57,223 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action 0.134s
2026-03-13 11:03:57,225 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:03:57 GMT', 'server': 'Apache', 'content-length': '101585', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-e0fa6cb0-848e-4b73-b3d6-9483e112b165', 'x-compute-request-id': 'req-e0fa6cb0-848e-4b73-b3d6-9483e112b165', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488/action'}
Body: b'{"output": "0.017113] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]\\n[ 0.017114] [mem 0x40000000-0xafffffff] available for PCI devices\\n[ 0.017115] Booting paravirtualized kernel on KVM\\n[ 0.017117] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns\\n[ 0.022743] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1\\n[ 0.023010] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u2097152\\n[ 0.023160] kvm-guest: PV spinlocks disabled, single CPU\\n[ 0.023162] Kernel command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.023238] Unknown kernel command line parameters \\"BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64\\", will be passed to user space.\\n[ 0.023269] random: crng init done\\n[ 0.023389] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)\\n[ 0.023433] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)\\n[ 0.023483] Fallback order for Node 0: 0 \\n[ 0.023486] Built 1 zonelists, mobility grouping on. Total pages: 257755\\n[ 0.023487] Policy zone: DMA32\\n[ 0.023713] mem auto-init: stack:off, heap alloc:off, heap free:off\\n[ 0.025917] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1\\n[ 0.025938] ftrace: allocating 49295 entries in 193 pages\\n[ 0.034056] ftrace: allocated 193 pages with 3 groups\\n[ 0.034633] Dynamic Preempt: voluntary\\n[ 0.034681] rcu: Preemptible hierarchical RCU implementation.\\n[ 0.034681] rcu: \\tRCU event tracing is enabled.\\n[ 0.034682] rcu: \\tRCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.\\n[ 0.034683] \\tTrampoline variant of Tasks RCU enabled.\\n[ 0.034683] \\tRude variant of Tasks RCU enabled.\\n[ 0.034684] \\tTracing variant of Tasks RCU enabled.\\n[ 0.034684] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.\\n[ 0.034685] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1\\n[ 0.034688] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.\\n[ 0.034690] RCU Tasks Rude: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.\\n[ 0.034691] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.\\n[ 0.038515] NR_IRQS: 524544, nr_irqs: 256, preallocated irqs: 16\\n[ 0.038888] rcu: srcu_init: Setting srcu_struct sizes based on contention.\\n[ 0.038991] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)\\n[ 0.091293] Console: colour VGA+ 80x25\\n[ 0.091418] printk: console [ttyS0] enabled\\n[ 0.463606] ACPI: Core revision 20230331\\n[ 0.465535] APIC: Switch to symmetric I/O mode setup\\n[ 0.469048] x2apic enabled\\n[ 0.471547] APIC: Switched APIC routing to: physical x2apic\\n[ 0.479292] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x285c3ee517e, max_idle_ns: 440795257231 ns\\n[ 0.484144] Calibrating delay loop (skipped) preset value.. 5599.99 BogoMIPS (lpj=2799998)\\n[ 0.485139] x86/cpu: User Mode Instruction Prevention (UMIP) activated\\n[ 0.485139] Last level iTLB entries: 4KB 512, 2MB 255, 4MB 127\\n[ 0.485139] Last level dTLB entries: 4KB 512, 2MB 255, 4MB 127, 1GB 0\\n[ 0.485139] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization\\n[ 0.485139] Spectre V2 : Mitigation: Retpolines\\n[ 0.485139] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT\\n[ 0.485139] Spectre V2 : Enabling Speculation Barrier for firmware calls\\n[ 0.485139] RETBleed: Mitigation: untrained return thunk\\n[ 0.485139] Spectre V2 : mitigation: Enabling conditional Indirect Branch Prediction Barrier\\n[ 0.485139] Speculative Store Bypass: Mitigation: Speculative Store Bypass disabled via prctl
2026-03-13 11:03:58,350 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488 1.123s
2026-03-13 11:03:58,351 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:03:57 GMT', 'server': 'Apache', 'content-length': '1664', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-7aa94260-bac4-4093-9771-73e509253ce6', 'x-compute-request-id': 'req-7aa94260-bac4-4093-9771-73e509253ce6', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488'}
Body: b'{"server": {"id": "748797fb-3ef1-42af-a728-291310d61488", "name": "tempest-broadcast-receiver-123-1073541738", "status": "ACTIVE", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "2f2998ad5e3383a70f1c4cd75638b1b6ad9f30d08fe7788e951c0b4c", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:02:13Z", "updated": "2026-03-13T11:02:31Z", "addresses": {"tempest-test-network--450998678": [{"version": 4, "addr": "10.100.0.8", "OS-EXT-IPS:type": "fixed", "OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:95:c1:bd"}]}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/748797fb-3ef1-42af-a728-291310d61488"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/748797fb-3ef1-42af-a728-291310d61488"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "True", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": "2026-03-13T11:02:31.000000", "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-STS:power_state": 1, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:03:58,663 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://neutron-public-openstack.apps-crc.testing/v2.0/ports?device_id=748797fb-3ef1-42af-a728-291310d61488 0.309s
2026-03-13 11:03:58,663 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:03:58 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '1137', 'x-openstack-request-id': 'req-037d23a6-962e-4f95-b440-d3c621463138', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/ports?device_id=748797fb-3ef1-42af-a728-291310d61488'}
Body: b'{"ports":[{"id":"efe2a308-a87d-47c7-a970-149cf27f49e0","name":"","network_id":"abf5125e-2ddd-4d4d-9207-62a9e5795b5e","tenant_id":"75a99164fa9e49e296861ee9cee088f5","mac_address":"fa:16:3e:95:c1:bd","admin_state_up":true,"status":"ACTIVE","device_id":"748797fb-3ef1-42af-a728-291310d61488","device_owner":"compute:nova","fixed_ips":[{"subnet_id":"0c6afb05-e8cd-4451-8be2-e46953405c2e","ip_address":"10.100.0.8"}],"allowed_address_pairs":[{"mac_address":"fa:16:3e:95:c1:bd","ip_address":"192.168.111.12/24"}],"extra_dhcp_opts":[],"security_groups":["98c2e656-981c-45c8-8a22-8690b5481ef5"],"description":"","binding:vnic_type":"normal","qos_policy_id":null,"qos_network_policy_id":null,"port_security_enabled":true,"dns_name":"tempest-broadcast-receiver-123-1073541738","dns_assignment":[{"ip_address":"10.100.0.8","hostname":"tempest-broadcast-receiver-123-1073541738","fqdn":"tempest-broadcast-receiver-123-1073541738.openstackgate.local."}],"dns_domain":"","ip_allocation":"immediate","tags":[],"created_at":"2026-03-13T11:02:09Z","updated_at":"2026-03-13T11:02:28Z","revision_number":4,"project_id":"75a99164fa9e49e296861ee9cee088f5"}]}'
2026-03-13 11:04:01,006 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/floatingips 2.342s
2026-03-13 11:04:01,006 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"floatingip": {"floating_network_id": "d90d10b6-a44a-47b5-bcd6-630085d51c8e", "port_id": "efe2a308-a87d-47c7-a970-149cf27f49e0"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:01 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '881', 'x-openstack-request-id': 'req-e35a76d0-810e-4e51-97d1-a6b896003fb9', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/floatingips'}
Body: b'{"floatingip": {"id": "dd0dde2f-8180-4912-98bc-41012ceb58f6", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "floating_ip_address": "192.168.122.204", "floating_network_id": "d90d10b6-a44a-47b5-bcd6-630085d51c8e", "router_id": "4c5cf4e7-7fa9-4a98-8a95-59fffe36f1a6", "port_id": "efe2a308-a87d-47c7-a970-149cf27f49e0", "fixed_ip_address": "10.100.0.8", "status": "DOWN", "project_id": "75a99164fa9e49e296861ee9cee088f5", "description": "", "qos_policy_id": null, "port_details": {"name": "", "network_id": "abf5125e-2ddd-4d4d-9207-62a9e5795b5e", "mac_address": "fa:16:3e:95:c1:bd", "admin_state_up": true, "status": "ACTIVE", "device_id": "748797fb-3ef1-42af-a728-291310d61488", "device_owner": "compute:nova"}, "dns_domain": "", "dns_name": "", "port_forwardings": [], "tags": [], "created_at": "2026-03-13T11:03:59Z", "updated_at": "2026-03-13T11:03:59Z", "revision_number": 0}}'
2026-03-13 11:04:01,007 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.204:22' as 'rocky' with public key authentication
2026-03-13 11:04:01,038 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:04:01,142 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:04:01,142 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.204 successfully created
2026-03-13 11:04:02,022 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address list" on remote host '192.168.122.204' (timeout=None)...
2026-03-13 11:04:02,022 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.204:22' as 'rocky' with public key authentication
2026-03-13 11:04:02,053 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:04:02,203 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:04:02,204 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.204 successfully created
2026-03-13 11:04:02,451 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address list" succeeded:
stderr:
None
stdout:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc fq_codel state UP group default qlen 1000
link/ether fa:16:3e:95:c1:bd brd ff:ff:ff:ff:ff:ff
altname enp3s0
inet 10.100.0.8/28 brd 10.100.0.15 scope global dynamic noprefixroute eth0
valid_lft 43182sec preferred_lft 43182sec
inet6 fe80::f816:3eff:fe95:c1bd/64 scope link
valid_lft forever preferred_lft forever
2026-03-13 11:04:02,454 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:04:02,456 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/loopback', address='00:00:00:00:00:00', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'brd': '00:00:00:00:00:00'})
2026-03-13 11:04:02,456 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='127.0.0.1/8', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:04:02,456 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:04:02,456 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='::1/128', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:04:02,457 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:04:02,457 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:04:02,457 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:95:c1:bd', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:04:02,458 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='altname', address='enp3s0', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={})
2026-03-13 11:04:02,458 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='10.100.0.8/28', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute'})
2026-03-13 11:04:02,458 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute', 'valid_lft': '43182sec', 'preferred_lft': '43182sec'}
2026-03-13 11:04:02,458 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe95:c1bd/64', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:04:02,460 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:04:02,461 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address list" on remote host '192.168.122.204' (timeout=None)...
2026-03-13 11:04:02,461 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.204:22' as 'rocky' with public key authentication
2026-03-13 11:04:02,492 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:04:02,600 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:04:02,657 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.204 successfully created
2026-03-13 11:04:02,830 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address list" succeeded:
stderr:
None
stdout:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc fq_codel state UP group default qlen 1000
link/ether fa:16:3e:95:c1:bd brd ff:ff:ff:ff:ff:ff
altname enp3s0
inet 10.100.0.8/28 brd 10.100.0.15 scope global dynamic noprefixroute eth0
valid_lft 43182sec preferred_lft 43182sec
inet6 fe80::f816:3eff:fe95:c1bd/64 scope link
valid_lft forever preferred_lft forever
2026-03-13 11:04:02,831 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:04:02,831 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/loopback', address='00:00:00:00:00:00', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'brd': '00:00:00:00:00:00'})
2026-03-13 11:04:02,831 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='127.0.0.1/8', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:04:02,831 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:04:02,831 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='::1/128', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:04:02,831 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:04:02,831 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:04:02,831 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:95:c1:bd', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:04:02,832 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='altname', address='enp3s0', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={})
2026-03-13 11:04:02,832 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='10.100.0.8/28', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute'})
2026-03-13 11:04:02,832 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute', 'valid_lft': '43182sec', 'preferred_lft': '43182sec'}
2026-03-13 11:04:02,832 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe95:c1bd/64', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:04:02,832 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:04:02,832 40 DEBUG [neutron_tempest_plugin.common.ip] Configuring VLAN subport interface 'eth0.123' on top of interface 'eth0' with IPs: 192.168.111.12/24
2026-03-13 11:04:02,832 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' link add link eth0 name eth0.123 type vlan id 123" on remote host '192.168.122.204' (timeout=None)...
2026-03-13 11:04:02,833 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.204:22' as 'rocky' with public key authentication
2026-03-13 11:04:02,860 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:04:02,957 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:04:02,958 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.204 successfully created
2026-03-13 11:04:03,245 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' link add link eth0 name eth0.123 type vlan id 123" succeeded:
stderr:
None
stdout:
2026-03-13 11:04:03,245 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' link set dev eth0.123 up" on remote host '192.168.122.204' (timeout=None)...
2026-03-13 11:04:03,245 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.204:22' as 'rocky' with public key authentication
2026-03-13 11:04:03,276 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:04:03,392 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:04:03,393 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.204 successfully created
2026-03-13 11:04:03,577 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' link set dev eth0.123 up" succeeded:
stderr:
None
stdout:
2026-03-13 11:04:03,577 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address add 192.168.111.12/24 dev eth0.123" on remote host '192.168.122.204' (timeout=None)...
2026-03-13 11:04:03,578 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.204:22' as 'rocky' with public key authentication
2026-03-13 11:04:03,605 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:04:03,704 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:04:03,706 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.204 successfully created
2026-03-13 11:04:03,873 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address add 192.168.111.12/24 dev eth0.123" succeeded:
stderr:
None
stdout:
2026-03-13 11:04:03,873 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address list" on remote host '192.168.122.204' (timeout=None)...
2026-03-13 11:04:03,873 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.204:22' as 'rocky' with public key authentication
2026-03-13 11:04:03,922 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:04:04,026 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:04:04,026 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.204 successfully created
2026-03-13 11:04:04,198 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address list" succeeded:
stderr:
None
stdout:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc fq_codel state UP group default qlen 1000
link/ether fa:16:3e:95:c1:bd brd ff:ff:ff:ff:ff:ff
altname enp3s0
inet 10.100.0.8/28 brd 10.100.0.15 scope global dynamic noprefixroute eth0
valid_lft 43181sec preferred_lft 43181sec
inet6 fe80::f816:3eff:fe95:c1bd/64 scope link
valid_lft forever preferred_lft forever
3: eth0.123@eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc noqueue state UP group default qlen 1000
link/ether fa:16:3e:95:c1:bd brd ff:ff:ff:ff:ff:ff
inet 192.168.111.12/24 scope global eth0.123
valid_lft forever preferred_lft forever
inet6 fe80::f816:3eff:fe95:c1bd/64 scope link tentative
valid_lft forever preferred_lft forever
2026-03-13 11:04:04,198 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:04:04,198 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/loopback', address='00:00:00:00:00:00', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'brd': '00:00:00:00:00:00'})
2026-03-13 11:04:04,198 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='127.0.0.1/8', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:04:04,198 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:04:04,199 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='::1/128', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:04:04,199 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:04:04,199 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:04:04,199 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:95:c1:bd', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:04:04,199 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='altname', address='enp3s0', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={})
2026-03-13 11:04:04,199 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='10.100.0.8/28', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute'})
2026-03-13 11:04:04,199 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute', 'valid_lft': '43181sec', 'preferred_lft': '43181sec'}
2026-03-13 11:04:04,199 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe95:c1bd/64', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:04:04,199 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:04:04,200 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0.123', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:04:04,200 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:95:c1:bd', device=Device(name='eth0.123', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:04:04,200 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='192.168.111.12/24', device=Device(name='eth0.123', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'global'})
2026-03-13 11:04:04,200 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'global', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:04:04,200 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe95:c1bd/64', device=Device(name='eth0.123', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:04:04,200 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:04:06,764 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/ports 2.563s
2026-03-13 11:04:06,768 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"port": {"network_id": "abf5125e-2ddd-4d4d-9207-62a9e5795b5e", "security_groups": ["98c2e656-981c-45c8-8a22-8690b5481ef5"], "allowed_address_pairs": [{"ip_address": "192.168.111.13/24"}]}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:06 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '995', 'x-openstack-request-id': 'req-6981cff7-5469-4464-9538-b332eca7bb19', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/ports'}
Body: b'{"port":{"id":"40b73308-83aa-4949-800d-f5a7942c6226","name":"","network_id":"abf5125e-2ddd-4d4d-9207-62a9e5795b5e","tenant_id":"75a99164fa9e49e296861ee9cee088f5","mac_address":"fa:16:3e:0c:5c:37","admin_state_up":true,"status":"DOWN","device_id":"","device_owner":"","fixed_ips":[{"subnet_id":"0c6afb05-e8cd-4451-8be2-e46953405c2e","ip_address":"10.100.0.10"}],"project_id":"75a99164fa9e49e296861ee9cee088f5","qos_policy_id":null,"port_security_enabled":true,"security_groups":["98c2e656-981c-45c8-8a22-8690b5481ef5"],"binding:vnic_type":"normal","allowed_address_pairs":[{"mac_address":"fa:16:3e:0c:5c:37","ip_address":"192.168.111.13/24"}],"extra_dhcp_opts":[],"description":"","qos_network_policy_id":null,"dns_name":"","dns_assignment":[{"ip_address":"10.100.0.10","hostname":"host-10-100-0-10","fqdn":"host-10-100-0-10.openstackgate.local."}],"dns_domain":"","ip_allocation":"immediate","tags":[],"created_at":"2026-03-13T11:04:05Z","updated_at":"2026-03-13T11:04:05Z","revision_number":1}}'
2026-03-13 11:04:09,748 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 202 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers 2.980s
2026-03-13 11:04:09,749 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"server": {"flavorRef": "22222222-2222-2222-2222-222222222222", "imageRef": "11111111-1111-1111-1111-111111111111", "key_name": "tempest-keypair-test-1346459391", "networks": [{"port": "40b73308-83aa-4949-800d-f5a7942c6226"}], "security_groups": [{"name": "secgroup_l2_flood"}], "name": "tempest-broadcast-sender-124-871859995"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:06 GMT', 'server': 'Apache', 'content-length': '430', 'location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-ebb8da78-9166-461b-b005-2ec2bee6c3a6', 'x-compute-request-id': 'req-ebb8da78-9166-461b-b005-2ec2bee6c3a6', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '202', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers'}
Body: b'{"server": {"id": "737a82a2-7b8f-4942-a335-d10854e9a2fd", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}], "OS-DCF:diskConfig": "MANUAL", "security_groups": [{"name": "secgroup_l2_flood"}], "adminPass": "GmBArfnyRE85"}}'
2026-03-13 11:04:10,657 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd 0.907s
2026-03-13 11:04:10,657 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:09 GMT', 'server': 'Apache', 'content-length': '1381', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-da595330-9885-493e-9dfc-462a7e3613a3', 'x-compute-request-id': 'req-da595330-9885-493e-9dfc-462a7e3613a3', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd'}
Body: b'{"server": {"id": "737a82a2-7b8f-4942-a335-d10854e9a2fd", "name": "tempest-broadcast-sender-124-871859995", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:04:09Z", "updated": "2026-03-13T11:04:09Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "OS-EXT-STS:task_state": "scheduling", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:12,018 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd 0.356s
2026-03-13 11:04:12,019 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:11 GMT', 'server': 'Apache', 'content-length': '1381', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-94dba347-a539-4a59-850c-b56ba67ee687', 'x-compute-request-id': 'req-94dba347-a539-4a59-850c-b56ba67ee687', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd'}
Body: b'{"server": {"id": "737a82a2-7b8f-4942-a335-d10854e9a2fd", "name": "tempest-broadcast-sender-124-871859995", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:04:09Z", "updated": "2026-03-13T11:04:11Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "OS-EXT-STS:task_state": "scheduling", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:13,431 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd 0.397s
2026-03-13 11:04:13,432 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:13 GMT', 'server': 'Apache', 'content-length': '1433', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-08a74717-6ead-49e4-9d68-b3efbe8bc624', 'x-compute-request-id': 'req-08a74717-6ead-49e4-9d68-b3efbe8bc624', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd'}
Body: b'{"server": {"id": "737a82a2-7b8f-4942-a335-d10854e9a2fd", "name": "tempest-broadcast-sender-124-871859995", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "ecb5939eee087933ae450e0e5c2c86f56f8d7e59c37c4d8fce9463eb", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:04:09Z", "updated": "2026-03-13T11:04:12Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:13,437 40 INFO [tempest.common.waiters] State transition "BUILD/scheduling" ==> "BUILD/None" after 3 second wait
2026-03-13 11:04:14,888 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd 0.449s
2026-03-13 11:04:14,888 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:14 GMT', 'server': 'Apache', 'content-length': '1439', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-6c33a008-49c5-40cb-b28a-7a6af2bf4681', 'x-compute-request-id': 'req-6c33a008-49c5-40cb-b28a-7a6af2bf4681', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd'}
Body: b'{"server": {"id": "737a82a2-7b8f-4942-a335-d10854e9a2fd", "name": "tempest-broadcast-sender-124-871859995", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "ecb5939eee087933ae450e0e5c2c86f56f8d7e59c37c4d8fce9463eb", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:04:09Z", "updated": "2026-03-13T11:04:13Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:14,892 40 INFO [tempest.common.waiters] State transition "BUILD/None" ==> "BUILD/spawning" after 4 second wait
2026-03-13 11:04:16,943 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd 1.050s
2026-03-13 11:04:16,944 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:15 GMT', 'server': 'Apache', 'content-length': '1491', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-871127d1-8819-41e8-857c-aeb52d440fe1', 'x-compute-request-id': 'req-871127d1-8819-41e8-857c-aeb52d440fe1', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd'}
Body: b'{"server": {"id": "737a82a2-7b8f-4942-a335-d10854e9a2fd", "name": "tempest-broadcast-sender-124-871859995", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "ecb5939eee087933ae450e0e5c2c86f56f8d7e59c37c4d8fce9463eb", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:04:09Z", "updated": "2026-03-13T11:04:13Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:19,578 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd 1.629s
2026-03-13 11:04:19,580 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:17 GMT', 'server': 'Apache', 'content-length': '1491', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-b4206c62-cf8f-457f-9759-948d4a401c26', 'x-compute-request-id': 'req-b4206c62-cf8f-457f-9759-948d4a401c26', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd'}
Body: b'{"server": {"id": "737a82a2-7b8f-4942-a335-d10854e9a2fd", "name": "tempest-broadcast-sender-124-871859995", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "ecb5939eee087933ae450e0e5c2c86f56f8d7e59c37c4d8fce9463eb", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:04:09Z", "updated": "2026-03-13T11:04:13Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:22,476 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd 1.888s
2026-03-13 11:04:22,476 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:20 GMT', 'server': 'Apache', 'content-length': '1491', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-002a41d2-d7e6-4f5f-be28-ea4acbaaa156', 'x-compute-request-id': 'req-002a41d2-d7e6-4f5f-be28-ea4acbaaa156', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd'}
Body: b'{"server": {"id": "737a82a2-7b8f-4942-a335-d10854e9a2fd", "name": "tempest-broadcast-sender-124-871859995", "status": "BUILD", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "ecb5939eee087933ae450e0e5c2c86f56f8d7e59c37c4d8fce9463eb", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:04:09Z", "updated": "2026-03-13T11:04:13Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:25,779 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd 2.292s
2026-03-13 11:04:25,779 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:23 GMT', 'server': 'Apache', 'content-length': '1662', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-9f46c8fd-92a4-4018-8e07-7fcc5c7d2412', 'x-compute-request-id': 'req-9f46c8fd-92a4-4018-8e07-7fcc5c7d2412', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd'}
Body: b'{"server": {"id": "737a82a2-7b8f-4942-a335-d10854e9a2fd", "name": "tempest-broadcast-sender-124-871859995", "status": "ACTIVE", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "ecb5939eee087933ae450e0e5c2c86f56f8d7e59c37c4d8fce9463eb", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:04:09Z", "updated": "2026-03-13T11:04:23Z", "addresses": {"tempest-test-network--450998678": [{"version": 4, "addr": "10.100.0.10", "OS-EXT-IPS:type": "fixed", "OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:0c:5c:37"}]}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "True", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": "2026-03-13T11:04:23.000000", "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-STS:power_state": 1, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:25,785 40 INFO [tempest.common.waiters] State transition "BUILD/spawning" ==> "ACTIVE/None" after 15 second wait
2026-03-13 11:04:27,194 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action 1.409s
2026-03-13 11:04:27,195 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:25 GMT', 'server': 'Apache', 'content-length': '14', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-3dd17c9c-361b-4f54-b01c-f4c1cf15c61c', 'x-compute-request-id': 'req-3dd17c9c-361b-4f54-b01c-f4c1cf15c61c', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action'}
Body: b'{"output": ""}'
2026-03-13 11:04:32,339 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action 0.141s
2026-03-13 11:04:32,340 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:32 GMT', 'server': 'Apache', 'content-length': '43860', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-7ba5bd26-8f93-45e4-865d-ce04b989ac18', 'x-compute-request-id': 'req-7ba5bd26-8f93-45e4-865d-ce04b989ac18', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 6121717077 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000786] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001085] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001096] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003709] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003720] Using GB pages for direct mapping\\n[ 0.003935] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003984] ACPI: Early table checksum verification disabled\\n[ 0.003987] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003991] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003996] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004000] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004003] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.004005] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004007] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004009] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004011] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004012] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004013] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004014] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004015] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004015] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005052] No NUMA configuration found\\n[ 0.005054] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005062] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005266] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005278] Zone ranges:\\n[ 0.005279] DMA
2026-03-13 11:04:37,523 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action 0.175s
2026-03-13 11:04:37,524 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:37 GMT', 'server': 'Apache', 'content-length': '78890', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-b765c2f2-16a5-47fd-bc67-a3a8dfc84dff', 'x-compute-request-id': 'req-b765c2f2-16a5-47fd-bc67-a3a8dfc84dff', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 6121717077 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000786] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001085] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001096] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003709] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003720] Using GB pages for direct mapping\\n[ 0.003935] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003984] ACPI: Early table checksum verification disabled\\n[ 0.003987] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003991] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003996] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004000] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004003] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.004005] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004007] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004009] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004011] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004012] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004013] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004014] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004015] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004015] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005052] No NUMA configuration found\\n[ 0.005054] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005062] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005266] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005278] Zone ranges:\\n[ 0.005279] DMA
2026-03-13 11:04:42,922 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action 0.391s
2026-03-13 11:04:42,923 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:42 GMT', 'server': 'Apache', 'content-length': '97522', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-17bf3967-c2d1-4474-8f87-37b208a9997a', 'x-compute-request-id': 'req-17bf3967-c2d1-4474-8f87-37b208a9997a', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 6121717077 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000786] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001085] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001096] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003709] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003720] Using GB pages for direct mapping\\n[ 0.003935] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003984] ACPI: Early table checksum verification disabled\\n[ 0.003987] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003991] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003996] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004000] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004003] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.004005] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004007] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004009] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004011] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004012] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004013] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004014] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004015] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004015] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005052] No NUMA configuration found\\n[ 0.005054] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005062] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005266] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005278] Zone ranges:\\n[ 0.005279] DMA
2026-03-13 11:04:48,963 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action 1.029s
2026-03-13 11:04:48,964 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:47 GMT', 'server': 'Apache', 'content-length': '97522', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-b1dcd0c3-ea8f-4ee5-8d8a-07b0399a602f', 'x-compute-request-id': 'req-b1dcd0c3-ea8f-4ee5-8d8a-07b0399a602f', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 6121717077 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000786] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001085] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001096] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003709] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003720] Using GB pages for direct mapping\\n[ 0.003935] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003984] ACPI: Early table checksum verification disabled\\n[ 0.003987] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003991] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003996] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004000] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004003] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.004005] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004007] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004009] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004011] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004012] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004013] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004014] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004015] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004015] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005052] No NUMA configuration found\\n[ 0.005054] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005062] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005266] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005278] Zone ranges:\\n[ 0.005279] DMA
2026-03-13 11:04:54,862 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action 0.892s
2026-03-13 11:04:54,863 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:53 GMT', 'server': 'Apache', 'content-length': '98485', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-76a60432-a672-4968-896d-979f771a9586', 'x-compute-request-id': 'req-76a60432-a672-4968-896d-979f771a9586', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 6121717077 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000786] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001085] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001096] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003709] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003720] Using GB pages for direct mapping\\n[ 0.003935] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003984] ACPI: Early table checksum verification disabled\\n[ 0.003987] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003991] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003996] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004000] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004003] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.004005] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004007] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004009] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004011] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004012] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004013] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004014] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004015] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004015] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005052] No NUMA configuration found\\n[ 0.005054] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005062] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005266] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005278] Zone ranges:\\n[ 0.005279] DMA
2026-03-13 11:05:01,114 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action 1.243s
2026-03-13 11:05:01,115 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:59 GMT', 'server': 'Apache', 'content-length': '98485', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-1aee025f-3f1f-4f9b-859b-fc94700b3b7c', 'x-compute-request-id': 'req-1aee025f-3f1f-4f9b-859b-fc94700b3b7c', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 6121717077 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000786] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001085] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001096] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003709] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003720] Using GB pages for direct mapping\\n[ 0.003935] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003984] ACPI: Early table checksum verification disabled\\n[ 0.003987] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003991] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003996] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004000] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004003] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.004005] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004007] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004009] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004011] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004012] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004013] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004014] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004015] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004015] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005052] No NUMA configuration found\\n[ 0.005054] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005062] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005266] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005278] Zone ranges:\\n[ 0.005279] DMA
2026-03-13 11:05:07,133 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action 0.948s
2026-03-13 11:05:07,134 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:06 GMT', 'server': 'Apache', 'content-length': '98485', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-3b71db66-d6d4-40e2-8838-4d3a6112b759', 'x-compute-request-id': 'req-3b71db66-d6d4-40e2-8838-4d3a6112b759', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.14.0-611.5.1.el9_7.x86_64 (mockbuild@iad1-prod-build001.bld.equ.rockylinux.org) (gcc (GCC) 11.5.0 20240719 (Red Hat 11.5.0-11), GNU ld version 2.35.2-67.el9) #1 SMP PREEMPT_DYNAMIC Tue Nov 11 22:20:27 UTC 2025\\n[ 0.000000] The list of certified hardware and cloud instances for Enterprise Linux 9 can be viewed at the Red Hat Ecosystem Catalog, https://catalog.redhat.com.\\n[ 0.000000] Command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x000000003ffdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000003ffdb000-0x000000003fffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] APIC: Static calls initialized\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: using sched offset of 6121717077 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000005] tsc: Detected 2800.000 MHz processor\\n[ 0.000786] last_pfn = 0x3ffdb max_arch_pfn = 0x400000000\\n[ 0.001085] MTRR map: 4 entries (3 fixed + 1 variable; max 19), built from 8 variable MTRRs\\n[ 0.001096] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.003709] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.003720] Using GB pages for direct mapping\\n[ 0.003935] RAMDISK: [mem 0x2e990000-0x334bffff]\\n[ 0.003984] ACPI: Early table checksum verification disabled\\n[ 0.003987] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.003991] ACPI: RSDT 0x000000003FFE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.003996] ACPI: FACP 0x000000003FFE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004000] ACPI: DSDT 0x000000003FFE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004003] ACPI: FACS 0x000000003FFE0000 000040\\n[ 0.004005] ACPI: APIC 0x000000003FFE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004007] ACPI: MCFG 0x000000003FFE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004009] ACPI: WAET 0x000000003FFE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004011] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004012] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004013] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004014] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004015] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004015] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005052] No NUMA configuration found\\n[ 0.005054] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005062] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005266] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005278] Zone ranges:\\n[ 0.005279] DMA
2026-03-13 11:05:12,612 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action 0.472s
2026-03-13 11:05:12,613 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:12 GMT', 'server': 'Apache', 'content-length': '101683', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-7b6bf0e6-82ca-4771-a996-8b3237528d8c', 'x-compute-request-id': 'req-7b6bf0e6-82ca-4771-a996-8b3237528d8c', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action'}
Body: b'{"output": "[ 0.004011] ACPI: Reserving FACP table memory at [mem 0x3ffe3f94-0x3ffe4087]\\n[ 0.004012] ACPI: Reserving DSDT table memory at [mem 0x3ffe0040-0x3ffe3f93]\\n[ 0.004013] ACPI: Reserving FACS table memory at [mem 0x3ffe0000-0x3ffe003f]\\n[ 0.004014] ACPI: Reserving APIC table memory at [mem 0x3ffe4088-0x3ffe40ff]\\n[ 0.004015] ACPI: Reserving MCFG table memory at [mem 0x3ffe4100-0x3ffe413b]\\n[ 0.004015] ACPI: Reserving WAET table memory at [mem 0x3ffe413c-0x3ffe4163]\\n[ 0.005052] No NUMA configuration found\\n[ 0.005054] Faking a node at [mem 0x0000000000000000-0x000000003ffdafff]\\n[ 0.005062] NODE_DATA(0) allocated [mem 0x3ffb0000-0x3ffdafff]\\n[ 0.005266] crashkernel reserved: 0x0000000022000000 - 0x000000002e000000 (192 MB)\\n[ 0.005278] Zone ranges:\\n[ 0.005279] DMA [mem 0x0000000000001000-0x0000000000ffffff]\\n[ 0.005281] DMA32 [mem 0x0000000001000000-0x000000003ffdafff]\\n[ 0.005282] Normal empty\\n[ 0.005283] Device empty\\n[ 0.005283] Movable zone start for each node\\n[ 0.005286] Early memory node ranges\\n[ 0.005286] node 0: [mem 0x0000000000001000-0x000000000009efff]\\n[ 0.005287] node 0: [mem 0x0000000000100000-0x000000003ffdafff]\\n[ 0.005289] Initmem setup node 0 [mem 0x0000000000001000-0x000000003ffdafff]\\n[ 0.005317] On node 0, zone DMA: 1 pages in unavailable ranges\\n[ 0.005349] On node 0, zone DMA: 97 pages in unavailable ranges\\n[ 0.005953] On node 0, zone DMA32: 37 pages in unavailable ranges\\n[ 0.016045] ACPI: PM-Timer IO Port: 0x608\\n[ 0.016077] ACPI: LAPIC_NMI (acpi_id[0xff] dfl dfl lint[0x1])\\n[ 0.016189] IOAPIC[0]: apic_id 0, version 17, address 0xfec00000, GSI 0-23\\n[ 0.016191] ACPI: INT_SRC_OVR (bus 0 bus_irq 0 global_irq 2 dfl dfl)\\n[ 0.016193] ACPI: INT_SRC_OVR (bus 0 bus_irq 5 global_irq 5 high level)\\n[ 0.016194] ACPI: INT_SRC_OVR (bus 0 bus_irq 9 global_irq 9 high level)\\n[ 0.016195] ACPI: INT_SRC_OVR (bus 0 bus_irq 10 global_irq 10 high level)\\n[ 0.016196] ACPI: INT_SRC_OVR (bus 0 bus_irq 11 global_irq 11 high level)\\n[ 0.016200] ACPI: Using ACPI (MADT) for SMP configuration information\\n[ 0.016201] TSC deadline timer available\\n[ 0.016206] CPU topo: Max. logical packages: 1\\n[ 0.016207] CPU topo: Max. logical dies: 1\\n[ 0.016208] CPU topo: Max. dies per package: 1\\n[ 0.016212] CPU topo: Max. threads per core: 1\\n[ 0.016213] CPU topo: Num. cores per package: 1\\n[ 0.016213] CPU topo: Num. threads per package: 1\\n[ 0.016214] CPU topo: Allowing 1 present CPUs plus 0 hotplug CPUs\\n[ 0.016251] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()\\n[ 0.016292] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]\\n[ 0.016293] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]\\n[ 0.016294] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]\\n[ 0.016295] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]\\n[ 0.016296] [mem 0x40000000-0xafffffff] available for PCI devices\\n[ 0.016298] Booting paravirtualized kernel on KVM\\n[ 0.016300] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns\\n[ 0.021682] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1\\n[ 0.021905] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u2097152\\n[ 0.022014] kvm-guest: PV spinlocks disabled, single CPU\\n[ 0.022016] Kernel command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.022096] Unknown kernel command line parameters \\"BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64\\", will be passed to user space.\\n[ 0.022127] random: crng init done\\n[ 0.022209] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)\\n[ 0.02
2026-03-13 11:05:18,889 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action 1.268s
2026-03-13 11:05:18,894 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:17 GMT', 'server': 'Apache', 'content-length': '101683', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-59878ca6-1ecf-4183-8b0c-a4e84dcd3f69', 'x-compute-request-id': 'req-59878ca6-1ecf-4183-8b0c-a4e84dcd3f69', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action'}
Body: b'{"output": "0:00:02.6: BAR 0 [mem 0xfea17000-0xfea17fff]\\n[ 0.665482] pci 0000:00:02.6: PCI bridge to [bus 08]\\n[ 0.665633] pci 0000:00:02.6: bridge window [mem 0xfde00000-0xfdffffff]\\n[ 0.666464] pci 0000:00:02.6: bridge window [mem 0xfa400000-0xfa5fffff 64bit pref]\\n[ 0.666754] pci 0000:00:02.6: enabling Extended Tags\\n[ 0.674891] pci 0000:00:02.7: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.678364] pci 0000:00:02.7: BAR 0 [mem 0xfea18000-0xfea18fff]\\n[ 0.678465] pci 0000:00:02.7: PCI bridge to [bus 09]\\n[ 0.678616] pci 0000:00:02.7: bridge window [mem 0xfdc00000-0xfddfffff]\\n[ 0.679440] pci 0000:00:02.7: bridge window [mem 0xfa200000-0xfa3fffff 64bit pref]\\n[ 0.679749] pci 0000:00:02.7: enabling Extended Tags\\n[ 0.687960] pci 0000:00:03.0: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.690358] pci 0000:00:03.0: BAR 0 [mem 0xfea19000-0xfea19fff]\\n[ 0.690457] pci 0000:00:03.0: PCI bridge to [bus 0a]\\n[ 0.690607] pci 0000:00:03.0: bridge window [mem 0xfda00000-0xfdbfffff]\\n[ 0.691440] pci 0000:00:03.0: bridge window [mem 0xfa000000-0xfa1fffff 64bit pref]\\n[ 0.691738] pci 0000:00:03.0: enabling Extended Tags\\n[ 0.699851] pci 0000:00:03.1: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.703361] pci 0000:00:03.1: BAR 0 [mem 0xfea1a000-0xfea1afff]\\n[ 0.703459] pci 0000:00:03.1: PCI bridge to [bus 0b]\\n[ 0.703626] pci 0000:00:03.1: bridge window [mem 0xfd800000-0xfd9fffff]\\n[ 0.704440] pci 0000:00:03.1: bridge window [mem 0xf9e00000-0xf9ffffff 64bit pref]\\n[ 0.704766] pci 0000:00:03.1: enabling Extended Tags\\n[ 0.713120] pci 0000:00:03.2: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.715371] pci 0000:00:03.2: BAR 0 [mem 0xfea1b000-0xfea1bfff]\\n[ 0.715488] pci 0000:00:03.2: PCI bridge to [bus 0c]\\n[ 0.715640] pci 0000:00:03.2: bridge window [mem 0xfd600000-0xfd7fffff]\\n[ 0.717436] pci 0000:00:03.2: bridge window [mem 0xf9c00000-0xf9dfffff 64bit pref]\\n[ 0.717784] pci 0000:00:03.2: enabling Extended Tags\\n[ 0.726237] pci 0000:00:03.3: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.728374] pci 0000:00:03.3: BAR 0 [mem 0xfea1c000-0xfea1cfff]\\n[ 0.728474] pci 0000:00:03.3: PCI bridge to [bus 0d]\\n[ 0.728625] pci 0000:00:03.3: bridge window [mem 0xfd400000-0xfd5fffff]\\n[ 0.729441] pci 0000:00:03.3: bridge window [mem 0xf9a00000-0xf9bfffff 64bit pref]\\n[ 0.729741] pci 0000:00:03.3: enabling Extended Tags\\n[ 0.737989] pci 0000:00:03.4: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.740359] pci 0000:00:03.4: BAR 0 [mem 0xfea1d000-0xfea1dfff]\\n[ 0.740457] pci 0000:00:03.4: PCI bridge to [bus 0e]\\n[ 0.740626] pci 0000:00:03.4: bridge window [mem 0xfd200000-0xfd3fffff]\\n[ 0.742531] pci 0000:00:03.4: bridge window [mem 0xf9800000-0xf99fffff 64bit pref]\\n[ 0.742883] pci 0000:00:03.4: enabling Extended Tags\\n[ 0.750879] pci 0000:00:03.5: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.753359] pci 0000:00:03.5: BAR 0 [mem 0xfea1e000-0xfea1efff]\\n[ 0.753457] pci 0000:00:03.5: PCI bridge to [bus 0f]\\n[ 0.753634] pci 0000:00:03.5: bridge window [mem 0xfd000000-0xfd1fffff]\\n[ 0.754441] pci 0000:00:03.5: bridge window [mem 0xf9600000-0xf97fffff 64bit pref]\\n[ 0.754903] pci 0000:00:03.5: enabling Extended Tags\\n[ 0.762907] pci 0000:00:03.6: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.765359] pci 0000:00:03.6: BAR 0 [mem 0xfea1f000-0xfea1ffff]\\n[ 0.765456] pci 0000:00:03.6: PCI bridge to [bus 10]\\n[ 0.765606] pci 0000:00:03.6: bridge window [mem 0xfce00000-0xfcffffff]\\n[ 0.766440] pci 0000:00:03.6: bridge window [mem 0xf9400000-0xf95fffff 64bit pref]\\n[ 0.766747] pci 0000:00:03.6: enabling Extended Tags\\n[ 0.775579] pci 0000:00:03.7: [1b36:000c] type 01 class 0x060400 PCIe Root Port\\n[ 0.778359] pci 0000:00:03.7: BAR 0 [mem 0xfea20000-0xfea20fff]\\n[ 0.778458] pci 0000:00:03.7: PCI bridge to [bus 11]\\n[ 0.778609] pci 0000:00
2026-03-13 11:05:24,228 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action 0.327s
2026-03-13 11:05:24,229 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:23 GMT', 'server': 'Apache', 'content-length': '101739', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-fac286cc-692e-40ad-ae21-1f50cde67080', 'x-compute-request-id': 'req-fac286cc-692e-40ad-ae21-1f50cde67080', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action'}
Body: b'{"output": "Volumes[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mRemote File Systems[0m.\\n Starting [0;1;39mdracut pre-mount hook[0m...\\n[[0;32m OK [0m] Finished [0;1;39mdracut pre-mount hook[0m.\\n Starting [0;1;39mFile System Check on /dev\\ufffd\\ufffd\\ufffdae77-65d9-4a11-8963-b8bae9a916b7[0m...\\n[[0;32m OK [0m] Finished [0;1;39mFile System Check on /dev\\ufffd\\ufffd\\ufffdddae77-65d9-4a11-8963-b8bae9a916b7[0m.\\n Mounting [0;1;39m/sysroot[0m...\\n [ 7.259566] SGI XFS with ACLs, security attributes, scrub, quota, no debug enabled\\n[ 7.286248] XFS (vda4): Mounting V5 Filesystem 0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 7.340492] XFS (vda4): Ending clean mount\\n[[0;32m OK [0m] Mounted [0;1;39m/sysroot[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mInitrd Root File System[0m.\\n Starting [0;1;39mMountpoints Configured in the Real Root[0m...\\n[[0;32m OK [0m] Finished [0;1;39mMountpoints Configured in the Real Root[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mInitrd File Systems[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mInitrd Default Target[0m.\\n Starting [0;1;39mdracut pre-pivot and cleanup hook[0m...\\n[[0;32m OK [0m] Finished [0;1;39mdracut pre-pivot and cleanup hook[0m.\\n Starting [0;1;39mCleaning Up and Shutting Down Daemons[0m...\\n[[0;32m OK [0m] Stopped target [0;1;39mNetwork[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mRemote Encrypted Volumes[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mTimer Units[0m.\\n[[0;32m OK [0m] Closed [0;1;39mD-Bus System Message Bus Socket[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut pre-pivot and cleanup hook[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mInitrd Default Target[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mInitrd Root Device[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mInitrd /usr File System[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mRemote File Systems[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mPreparation for Remote File Systems[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut pre-mount hook[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut initqueue hook[0m.\\n Stopping [0;1;39mHardware RNG Entropy Gatherer Daemon[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mSetup Virtual Console[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mHardware RNG Entropy Gatherer Daemon[0m.\\n[[0;32m OK [0m] Finished [0;1;39mCleaning Up and Shutting Down Daemons[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mBasic System[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mPath Units[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSlice Units[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSocket Units[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSystem Initialization[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Encrypted Volumes[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mDispatch Password Requests to Console Directory Watch[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal File Systems[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSwaps[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mApply Kernel Variables[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mLoad Kernel Modules[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate Volatile Files and Directories[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mColdplug All udev Devices[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut pre-trigger hook[0m.\\n Stopping [0;1;39mRule-based Manager for Device Events and Files[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mRule-based Manager for Device Events and Files[0m.\\n[[0;32m OK [0m] Closed [0;1;39mudev Control Socket[0m.\\n[[0;32m OK [0m] Closed [0;1;39mudev Kernel Socket[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut pre-udev hook[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mdracut cmdline hook[0m.\\n Starting [0;1;39mCleanup udev Database[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mCreate Static Device Nodes in /dev[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate List of Static Device Nodes[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate System Users[0m.\\n[[0;32m OK [0m] Finished [0;1;39mCleanup udev Database[0m
2026-03-13 11:05:29,690 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action 0.441s
2026-03-13 11:05:29,692 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:29 GMT', 'server': 'Apache', 'content-length': '101609', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-f13206ff-e4fc-4711-9ed2-6ad3b5bb7bdf', 'x-compute-request-id': 'req-f13206ff-e4fc-4711-9ed2-6ad3b5bb7bdf', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action'}
Body: b'{"output": "labels on /tmp\\n[[0;32m OK [0m] Removed slice [0;1;39mSlice /system/modprobe[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mInitrd File Systems[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mInitrd Root File System[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mPreparation for Network[0m.\\n Unmounting [0;1;39mRPC Pipe File System[0m...\\n Stopping [0;1;39mRestore /run/initramfs on shutdown[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mRelabel all filesystems[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mGenerate network units from Kernel command line[0m.\\n Stopping [0;1;39mLoad/Save OS Random Seed[0m...\\n[[0;32m OK [0m] Unmounted [0;1;39mRPC Pipe File System[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRestore /run/initramfs on shutdown[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSystem Initialization[0m.\\n[[0;32m OK [0m] Unset automount [0;1;39mArbitrary Executab\\ufffd\\ufffd\\ufffdormats File System Automount Point[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Encrypted Volumes[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mDispatch Password Requests to Console Directory Watch[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Integrity Protected Volumes[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mSwaps[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal Verity Protected Volumes[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRead and set NIS domainname from /etc/sysconfig/network[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mApply Kernel Variables[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mLoad Kernel Modules[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mUpdate is Completed[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mAutomatic Boot Loader Update[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRebuild Hardware Database[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRebuild Journal Catalog[0m.\\n Stopping [0;1;39mRecord System Boot/Shutdown in UTMP[0m...\\n[[0;32m OK [0m] Unmounted [0;1;39m/run/credentials/systemd-sysctl.service[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mLoad/Save OS Random Seed[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRecord System Boot/Shutdown in UTMP[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate Volatile Files and Directories[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mLocal File Systems[0m.\\n Unmounting [0;1;39m/boot/efi[0m...\\n Unmounting [0;1;39mEFI System Partition Automount[0m...\\n Unmounting [0;1;39m/run/credentials/systemd-sysusers.service[0m...\\n Unmounting [0;1;39m/run/credentials/systemd-tmpfiles-setup.service[0m...\\n Unmounting [0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service[0m...\\n[[0;32m OK [0m] Unmounted [0;1;39m/boot/efi[0m.\\n[[0;32m OK [0m] Unmounted [0;1;39mEFI System Partition Automount[0m.\\n[[0;32m OK [0m] Unmounted [0;1;39m/run/credentials/systemd-sysusers.service[0m.\\n[[0;32m OK [0m] Unmounted [0;1;39m/run/credentials/systemd-tmpfiles-setup.service[0m.\\n[[0;32m OK [0m] Unmounted [0;1;39m/run/credentials/systemd-tmpfiles-setup-dev.service[0m.\\n[[0;32m OK [0m] Unset automount [0;1;39mEFI System Partition Automount[0m.\\n Unmounting [0;1;39m/boot[0m...\\n[[0;32m OK [0m] Stopped [0;1;39mFile System Check on /dev/vda2[0m.\\n[[0;32m OK [0m] Removed slice [0;1;39mSlice /system/systemd-fsck[0m.\\n[ 40.265365] XFS (vda3): Unmounting Filesystem 85ca011f-1f82-44c5-a2ab-2dfb75665277\\n[[0;32m OK [0m] Unmounted [0;1;39m/boot[0m.\\n[[0;32m OK [0m] Stopped target [0;1;39mPreparation for Local File Systems[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mUnmount All Filesystems[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate Static Device Nodes in /dev[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mCreate System Users[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mRemount Root and Kernel File Systems[0m.\\n[[0;32m OK [0m] Stopped [0;1;39mFile System Check on Root Device[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mSystem Shutdown[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mLate Shutdown Services[0m.\\n[[0;32m OK [0m] Finished [0;1;39mSystem Reboot[0m.\\n[[0;32m OK [0m] Reached target [0;1;39mSyste
2026-03-13 11:05:36,193 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action 1.489s
2026-03-13 11:05:36,194 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:35 GMT', 'server': 'Apache', 'content-length': '101586', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-8deeef62-59f3-4112-b553-b5ba05524f85', 'x-compute-request-id': 'req-8deeef62-59f3-4112-b553-b5ba05524f85', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action'}
Body: b'{"output": " 0.014380] CPU topo: Allowing 1 present CPUs plus 0 hotplug CPUs\\n[ 0.014422] kvm-guest: APIC: eoi() replaced with kvm_guest_apic_eoi_write()\\n[ 0.014503] PM: hibernation: Registered nosave memory: [mem 0x00000000-0x00000fff]\\n[ 0.014506] PM: hibernation: Registered nosave memory: [mem 0x0009f000-0x0009ffff]\\n[ 0.014507] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]\\n[ 0.014507] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]\\n[ 0.014509] [mem 0x40000000-0xafffffff] available for PCI devices\\n[ 0.014510] Booting paravirtualized kernel on KVM\\n[ 0.014512] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns\\n[ 0.019923] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1\\n[ 0.020126] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u2097152\\n[ 0.020231] kvm-guest: PV spinlocks disabled, single CPU\\n[ 0.020233] Kernel command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.020311] Unknown kernel command line parameters \\"BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64\\", will be passed to user space.\\n[ 0.020340] random: crng init done\\n[ 0.020421] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)\\n[ 0.020464] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)\\n[ 0.020531] Fallback order for Node 0: 0 \\n[ 0.020534] Built 1 zonelists, mobility grouping on. Total pages: 257755\\n[ 0.020535] Policy zone: DMA32\\n[ 0.020718] mem auto-init: stack:off, heap alloc:off, heap free:off\\n[ 0.022845] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1\\n[ 0.022866] ftrace: allocating 49295 entries in 193 pages\\n[ 0.030937] ftrace: allocated 193 pages with 3 groups\\n[ 0.031568] Dynamic Preempt: voluntary\\n[ 0.031631] rcu: Preemptible hierarchical RCU implementation.\\n[ 0.031632] rcu: \\tRCU event tracing is enabled.\\n[ 0.031633] rcu: \\tRCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.\\n[ 0.031635] \\tTrampoline variant of Tasks RCU enabled.\\n[ 0.031635] \\tRude variant of Tasks RCU enabled.\\n[ 0.031635] \\tTracing variant of Tasks RCU enabled.\\n[ 0.031636] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.\\n[ 0.031637] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1\\n[ 0.031642] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.\\n[ 0.031644] RCU Tasks Rude: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.\\n[ 0.031646] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.\\n[ 0.035420] NR_IRQS: 524544, nr_irqs: 256, preallocated irqs: 16\\n[ 0.035783] rcu: srcu_init: Setting srcu_struct sizes based on contention.\\n[ 0.035892] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)\\n[ 0.078055] Console: colour VGA+ 80x25\\n[ 0.078159] printk: console [ttyS0] enabled\\n[ 0.361357] ACPI: Core revision 20230331\\n[ 0.362830] APIC: Switch to symmetric I/O mode setup\\n[ 0.365738] x2apic enabled\\n[ 0.367961] APIC: Switched APIC routing to: physical x2apic\\n[ 0.374686] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x285c40e2248, max_idle_ns: 440795340634 ns\\n[ 0.378431] Calibrating delay loop (skipped) preset value.. 5600.00 BogoMIPS (lpj=2800000)\\n[ 0.379426] x86/cpu: User Mode Instruction Prevention (UMIP) activated\\n[ 0.379426] Last level iTLB entries: 4KB 512, 2MB 255, 4MB 127\\n[ 0.379426] Last level dTLB entries: 4KB 512, 2MB 255, 4MB 127, 1GB 0\\n[ 0.379426] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization\\n[ 0.379426] Spectre V2 : Mitigation: Retpolines\\n[ 0.37942
2026-03-13 11:05:44,306 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action 3.103s
2026-03-13 11:05:44,307 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:42 GMT', 'server': 'Apache', 'content-length': '101585', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-411bde51-295e-4102-84ab-6df99e93e990', 'x-compute-request-id': 'req-411bde51-295e-4102-84ab-6df99e93e990', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd/action'}
Body: b'{"output": "tered nosave memory: [mem 0x0009f000-0x0009ffff]\\n[ 0.014507] PM: hibernation: Registered nosave memory: [mem 0x000a0000-0x000effff]\\n[ 0.014507] PM: hibernation: Registered nosave memory: [mem 0x000f0000-0x000fffff]\\n[ 0.014509] [mem 0x40000000-0xafffffff] available for PCI devices\\n[ 0.014510] Booting paravirtualized kernel on KVM\\n[ 0.014512] clocksource: refined-jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 1910969940391419 ns\\n[ 0.019923] setup_percpu: NR_CPUS:8192 nr_cpumask_bits:1 nr_cpu_ids:1 nr_node_ids:1\\n[ 0.020126] percpu: Embedded 64 pages/cpu s225280 r8192 d28672 u2097152\\n[ 0.020231] kvm-guest: PV spinlocks disabled, single CPU\\n[ 0.020233] Kernel command line: BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64 console=ttyS0,115200n8 no_timer_check crashkernel=1G-4G:192M,4G-64G:256M,64G-:512M net.ifnames=0 root=UUID=0dddae77-65d9-4a11-8963-b8bae9a916b7\\n[ 0.020311] Unknown kernel command line parameters \\"BOOT_IMAGE=(hd0,gpt3)/vmlinuz-5.14.0-611.5.1.el9_7.x86_64\\", will be passed to user space.\\n[ 0.020340] random: crng init done\\n[ 0.020421] Dentry cache hash table entries: 131072 (order: 8, 1048576 bytes, linear)\\n[ 0.020464] Inode-cache hash table entries: 65536 (order: 7, 524288 bytes, linear)\\n[ 0.020531] Fallback order for Node 0: 0 \\n[ 0.020534] Built 1 zonelists, mobility grouping on. Total pages: 257755\\n[ 0.020535] Policy zone: DMA32\\n[ 0.020718] mem auto-init: stack:off, heap alloc:off, heap free:off\\n[ 0.022845] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1\\n[ 0.022866] ftrace: allocating 49295 entries in 193 pages\\n[ 0.030937] ftrace: allocated 193 pages with 3 groups\\n[ 0.031568] Dynamic Preempt: voluntary\\n[ 0.031631] rcu: Preemptible hierarchical RCU implementation.\\n[ 0.031632] rcu: \\tRCU event tracing is enabled.\\n[ 0.031633] rcu: \\tRCU restricting CPUs from NR_CPUS=8192 to nr_cpu_ids=1.\\n[ 0.031635] \\tTrampoline variant of Tasks RCU enabled.\\n[ 0.031635] \\tRude variant of Tasks RCU enabled.\\n[ 0.031635] \\tTracing variant of Tasks RCU enabled.\\n[ 0.031636] rcu: RCU calculated value of scheduler-enlistment delay is 100 jiffies.\\n[ 0.031637] rcu: Adjusting geometry for rcu_fanout_leaf=16, nr_cpu_ids=1\\n[ 0.031642] RCU Tasks: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.\\n[ 0.031644] RCU Tasks Rude: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.\\n[ 0.031646] RCU Tasks Trace: Setting shift to 0 and lim to 1 rcu_task_cb_adjust=1 rcu_task_cpu_ids=1.\\n[ 0.035420] NR_IRQS: 524544, nr_irqs: 256, preallocated irqs: 16\\n[ 0.035783] rcu: srcu_init: Setting srcu_struct sizes based on contention.\\n[ 0.035892] kfence: initialized - using 2097152 bytes for 255 objects at 0x(____ptrval____)-0x(____ptrval____)\\n[ 0.078055] Console: colour VGA+ 80x25\\n[ 0.078159] printk: console [ttyS0] enabled\\n[ 0.361357] ACPI: Core revision 20230331\\n[ 0.362830] APIC: Switch to symmetric I/O mode setup\\n[ 0.365738] x2apic enabled\\n[ 0.367961] APIC: Switched APIC routing to: physical x2apic\\n[ 0.374686] clocksource: tsc-early: mask: 0xffffffffffffffff max_cycles: 0x285c40e2248, max_idle_ns: 440795340634 ns\\n[ 0.378431] Calibrating delay loop (skipped) preset value.. 5600.00 BogoMIPS (lpj=2800000)\\n[ 0.379426] x86/cpu: User Mode Instruction Prevention (UMIP) activated\\n[ 0.379426] Last level iTLB entries: 4KB 512, 2MB 255, 4MB 127\\n[ 0.379426] Last level dTLB entries: 4KB 512, 2MB 255, 4MB 127, 1GB 0\\n[ 0.379426] Spectre V1 : Mitigation: usercopy/swapgs barriers and __user pointer sanitization\\n[ 0.379426] Spectre V2 : Mitigation: Retpolines\\n[ 0.379426] Spectre V2 : Spectre v2 / SpectreRSB: Filling RSB on context switch and VMEXIT\\n[ 0.379426] Spectre V2 : Enabling Speculation Barrier for firmware calls\\n[ 0.379426] RETBleed: Mitigation: untrained return thunk\\n[ 0.379426] Spectre V2 : mitigation: Enabling c
2026-03-13 11:05:45,722 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd 1.334s
2026-03-13 11:05:45,786 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:44 GMT', 'server': 'Apache', 'content-length': '1662', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-0ce99a6b-58fe-4c54-a7b8-712bad4ead50', 'x-compute-request-id': 'req-0ce99a6b-58fe-4c54-a7b8-712bad4ead50', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd'}
Body: b'{"server": {"id": "737a82a2-7b8f-4942-a335-d10854e9a2fd", "name": "tempest-broadcast-sender-124-871859995", "status": "ACTIVE", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "user_id": "a9a47b8e25484743a2cdea75c240296d", "metadata": {}, "hostId": "ecb5939eee087933ae450e0e5c2c86f56f8d7e59c37c4d8fce9463eb", "image": {"id": "11111111-1111-1111-1111-111111111111", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/11111111-1111-1111-1111-111111111111"}]}, "flavor": {"id": "22222222-2222-2222-2222-222222222222", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/22222222-2222-2222-2222-222222222222"}]}, "created": "2026-03-13T11:04:09Z", "updated": "2026-03-13T11:04:23Z", "addresses": {"tempest-test-network--450998678": [{"version": 4, "addr": "10.100.0.10", "OS-EXT-IPS:type": "fixed", "OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:0c:5c:37"}]}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "True", "key_name": "tempest-keypair-test-1346459391", "OS-SRV-USG:launched_at": "2026-03-13T11:04:23.000000", "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "secgroup_l2_flood"}], "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-STS:power_state": 1, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:05:46,159 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 200 GET https://neutron-public-openstack.apps-crc.testing/v2.0/ports?device_id=737a82a2-7b8f-4942-a335-d10854e9a2fd 0.361s
2026-03-13 11:05:46,160 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:46 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '1130', 'x-openstack-request-id': 'req-6053b01f-6e5b-4166-a614-ce6b91fd027c', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/ports?device_id=737a82a2-7b8f-4942-a335-d10854e9a2fd'}
Body: b'{"ports":[{"id":"40b73308-83aa-4949-800d-f5a7942c6226","name":"","network_id":"abf5125e-2ddd-4d4d-9207-62a9e5795b5e","tenant_id":"75a99164fa9e49e296861ee9cee088f5","mac_address":"fa:16:3e:0c:5c:37","admin_state_up":true,"status":"ACTIVE","device_id":"737a82a2-7b8f-4942-a335-d10854e9a2fd","device_owner":"compute:nova","fixed_ips":[{"subnet_id":"0c6afb05-e8cd-4451-8be2-e46953405c2e","ip_address":"10.100.0.10"}],"allowed_address_pairs":[{"mac_address":"fa:16:3e:0c:5c:37","ip_address":"192.168.111.13/24"}],"extra_dhcp_opts":[],"security_groups":["98c2e656-981c-45c8-8a22-8690b5481ef5"],"description":"","binding:vnic_type":"normal","qos_policy_id":null,"qos_network_policy_id":null,"port_security_enabled":true,"dns_name":"tempest-broadcast-sender-124-871859995","dns_assignment":[{"ip_address":"10.100.0.10","hostname":"tempest-broadcast-sender-124-871859995","fqdn":"tempest-broadcast-sender-124-871859995.openstackgate.local."}],"dns_domain":"","ip_allocation":"immediate","tags":[],"created_at":"2026-03-13T11:04:05Z","updated_at":"2026-03-13T11:04:20Z","revision_number":4,"project_id":"75a99164fa9e49e296861ee9cee088f5"}]}'
2026-03-13 11:05:49,646 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/floatingips 3.485s
2026-03-13 11:05:49,646 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"floatingip": {"floating_network_id": "d90d10b6-a44a-47b5-bcd6-630085d51c8e", "port_id": "40b73308-83aa-4949-800d-f5a7942c6226"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:49 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '882', 'x-openstack-request-id': 'req-8a558ef8-8be9-49b3-9b1c-9f1d6885bf0b', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/floatingips'}
Body: b'{"floatingip": {"id": "867f62d2-d43d-4ce2-99be-96777b23e6a5", "tenant_id": "75a99164fa9e49e296861ee9cee088f5", "floating_ip_address": "192.168.122.223", "floating_network_id": "d90d10b6-a44a-47b5-bcd6-630085d51c8e", "router_id": "4c5cf4e7-7fa9-4a98-8a95-59fffe36f1a6", "port_id": "40b73308-83aa-4949-800d-f5a7942c6226", "fixed_ip_address": "10.100.0.10", "status": "DOWN", "project_id": "75a99164fa9e49e296861ee9cee088f5", "description": "", "qos_policy_id": null, "port_details": {"name": "", "network_id": "abf5125e-2ddd-4d4d-9207-62a9e5795b5e", "mac_address": "fa:16:3e:0c:5c:37", "admin_state_up": true, "status": "ACTIVE", "device_id": "737a82a2-7b8f-4942-a335-d10854e9a2fd", "device_owner": "compute:nova"}, "dns_domain": "", "dns_name": "", "port_forwardings": [], "tags": [], "created_at": "2026-03-13T11:05:48Z", "updated_at": "2026-03-13T11:05:48Z", "revision_number": 0}}'
2026-03-13 11:05:49,683 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.223:22' as 'rocky' with public key authentication
2026-03-13 11:05:49,717 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:05:50,186 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:05:50,188 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.223 successfully created
2026-03-13 11:05:50,765 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address list" on remote host '192.168.122.223' (timeout=None)...
2026-03-13 11:05:50,766 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.223:22' as 'rocky' with public key authentication
2026-03-13 11:05:50,788 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:05:50,882 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:05:50,883 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.223 successfully created
2026-03-13 11:05:51,054 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address list" succeeded:
stderr:
None
stdout:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc fq_codel state UP group default qlen 1000
link/ether fa:16:3e:0c:5c:37 brd ff:ff:ff:ff:ff:ff
altname enp3s0
inet 10.100.0.10/28 brd 10.100.0.15 scope global dynamic noprefixroute eth0
valid_lft 43181sec preferred_lft 43181sec
inet6 fe80::f816:3eff:fe0c:5c37/64 scope link
valid_lft forever preferred_lft forever
2026-03-13 11:05:51,054 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:05:51,054 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/loopback', address='00:00:00:00:00:00', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'brd': '00:00:00:00:00:00'})
2026-03-13 11:05:51,054 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='127.0.0.1/8', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:05:51,054 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:05:51,055 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='::1/128', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:05:51,055 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:05:51,055 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:05:51,055 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:0c:5c:37', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:05:51,055 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='altname', address='enp3s0', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={})
2026-03-13 11:05:51,055 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='10.100.0.10/28', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute'})
2026-03-13 11:05:51,055 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute', 'valid_lft': '43181sec', 'preferred_lft': '43181sec'}
2026-03-13 11:05:51,055 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe0c:5c37/64', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:05:51,056 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:05:51,056 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address list" on remote host '192.168.122.223' (timeout=None)...
2026-03-13 11:05:51,056 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.223:22' as 'rocky' with public key authentication
2026-03-13 11:05:51,081 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:05:51,170 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:05:51,195 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.223 successfully created
2026-03-13 11:05:51,334 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address list" succeeded:
stderr:
None
stdout:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc fq_codel state UP group default qlen 1000
link/ether fa:16:3e:0c:5c:37 brd ff:ff:ff:ff:ff:ff
altname enp3s0
inet 10.100.0.10/28 brd 10.100.0.15 scope global dynamic noprefixroute eth0
valid_lft 43181sec preferred_lft 43181sec
inet6 fe80::f816:3eff:fe0c:5c37/64 scope link
valid_lft forever preferred_lft forever
2026-03-13 11:05:51,335 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:05:51,335 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/loopback', address='00:00:00:00:00:00', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'brd': '00:00:00:00:00:00'})
2026-03-13 11:05:51,335 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='127.0.0.1/8', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:05:51,336 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:05:51,336 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='::1/128', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:05:51,336 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:05:51,336 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:05:51,336 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:0c:5c:37', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:05:51,336 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='altname', address='enp3s0', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={})
2026-03-13 11:05:51,337 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='10.100.0.10/28', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute'})
2026-03-13 11:05:51,337 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute', 'valid_lft': '43181sec', 'preferred_lft': '43181sec'}
2026-03-13 11:05:51,337 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe0c:5c37/64', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:05:51,337 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:05:51,338 40 DEBUG [neutron_tempest_plugin.common.ip] Configuring VLAN subport interface 'eth0.124' on top of interface 'eth0' with IPs: 192.168.111.13/24
2026-03-13 11:05:51,338 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' link add link eth0 name eth0.124 type vlan id 124" on remote host '192.168.122.223' (timeout=None)...
2026-03-13 11:05:51,338 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.223:22' as 'rocky' with public key authentication
2026-03-13 11:05:51,350 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:05:51,435 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:05:51,435 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.223 successfully created
2026-03-13 11:05:51,708 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' link add link eth0 name eth0.124 type vlan id 124" succeeded:
stderr:
None
stdout:
2026-03-13 11:05:51,709 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' link set dev eth0.124 up" on remote host '192.168.122.223' (timeout=None)...
2026-03-13 11:05:51,709 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.223:22' as 'rocky' with public key authentication
2026-03-13 11:05:51,740 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:05:51,854 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:05:51,855 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.223 successfully created
2026-03-13 11:05:52,060 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' link set dev eth0.124 up" succeeded:
stderr:
None
stdout:
2026-03-13 11:05:52,060 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address add 192.168.111.13/24 dev eth0.124" on remote host '192.168.122.223' (timeout=None)...
2026-03-13 11:05:52,060 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.223:22' as 'rocky' with public key authentication
2026-03-13 11:05:52,073 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:05:52,182 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:05:52,182 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.223 successfully created
2026-03-13 11:05:52,344 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address add 192.168.111.13/24 dev eth0.124" succeeded:
stderr:
None
stdout:
2026-03-13 11:05:52,344 40 DEBUG [neutron_tempest_plugin.common.shell] Executing command "sudo '/sbin/ip' address list" on remote host '192.168.122.223' (timeout=None)...
2026-03-13 11:05:52,344 40 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.223:22' as 'rocky' with public key authentication
2026-03-13 11:05:52,372 40 INFO [paramiko.transport] Connected (version 2.0, client OpenSSH_8.7)
2026-03-13 11:05:52,465 40 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:05:52,465 40 INFO [tempest.lib.common.ssh] ssh connection to rocky@192.168.122.223 successfully created
2026-03-13 11:05:52,607 40 DEBUG [neutron_tempest_plugin.common.shell] Command "sudo '/sbin/ip' address list" succeeded:
stderr:
None
stdout:
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc fq_codel state UP group default qlen 1000
link/ether fa:16:3e:0c:5c:37 brd ff:ff:ff:ff:ff:ff
altname enp3s0
inet 10.100.0.10/28 brd 10.100.0.15 scope global dynamic noprefixroute eth0
valid_lft 43180sec preferred_lft 43180sec
inet6 fe80::f816:3eff:fe0c:5c37/64 scope link
valid_lft forever preferred_lft forever
3: eth0.124@eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1342 qdisc noqueue state UP group default qlen 1000
link/ether fa:16:3e:0c:5c:37 brd ff:ff:ff:ff:ff:ff
inet 192.168.111.13/24 scope global eth0.124
valid_lft forever preferred_lft forever
inet6 fe80::f816:3eff:fe0c:5c37/64 scope link tentative
valid_lft forever preferred_lft forever
2026-03-13 11:05:52,688 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:05:52,689 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/loopback', address='00:00:00:00:00:00', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'brd': '00:00:00:00:00:00'})
2026-03-13 11:05:52,690 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='127.0.0.1/8', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:05:52,690 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:05:52,690 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='::1/128', device=Device(name='lo', parent=None, flags=['LOOPBACK', 'UP', 'LOWER_UP>'], properties={'mtu': '65536', 'qdisc': 'noqueue', 'state': 'UNKNOWN', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'host'})
2026-03-13 11:05:52,690 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'host', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:05:52,690 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:05:52,691 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:0c:5c:37', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:05:52,691 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='altname', address='enp3s0', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={})
2026-03-13 11:05:52,691 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='10.100.0.10/28', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute'})
2026-03-13 11:05:52,691 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'brd': '10.100.0.15', 'scope': 'global', 'dynamic': 'noprefixroute', 'valid_lft': '43180sec', 'preferred_lft': '43180sec'}
2026-03-13 11:05:52,691 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe0c:5c37/64', device=Device(name='eth0', parent=None, flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'fq_codel', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:05:52,692 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:05:52,692 40 DEBUG [neutron_tempest_plugin.common.ip] Device parsed: Device(name='eth0.124', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'})
2026-03-13 11:05:52,699 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: Address(family='link/ether', address='fa:16:3e:0c:5c:37', device=Device(name='eth0.124', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'brd': 'ff:ff:ff:ff:ff:ff'})
2026-03-13 11:05:52,700 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet', address='192.168.111.13/24', device=Device(name='eth0.124', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'global'})
2026-03-13 11:05:52,700 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'global', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:05:52,700 40 DEBUG [neutron_tempest_plugin.common.ip] Address parsed: InetAddress(family='inet6', address='fe80::f816:3eff:fe0c:5c37/64', device=Device(name='eth0.124', parent='eth0', flags=['BROADCAST', 'MULTICAST', 'UP', 'LOWER_UP>'], properties={'mtu': '1342', 'qdisc': 'noqueue', 'state': 'UP', 'group': 'default', 'qlen': '1000'}), properties={'scope': 'link'})
2026-03-13 11:05:52,700 40 DEBUG [neutron_tempest_plugin.common.ip] Address properties parsed: {'scope': 'link', 'valid_lft': 'forever', 'preferred_lft': 'forever'}
2026-03-13 11:05:57,169 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/ports 4.468s
2026-03-13 11:05:57,185 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"port": {"network_id": "abf5125e-2ddd-4d4d-9207-62a9e5795b5e", "security_groups": ["98c2e656-981c-45c8-8a22-8690b5481ef5"], "allowed_address_pairs": [{"ip_address": "192.168.111.14/24"}]}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:57 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '991', 'x-openstack-request-id': 'req-6b3e7618-87c7-45b6-9118-5e31700bf98c', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/ports'}
Body: b'{"port":{"id":"0ca9bcc7-2c1a-4d09-aaf6-2ee26d11ae64","name":"","network_id":"abf5125e-2ddd-4d4d-9207-62a9e5795b5e","tenant_id":"75a99164fa9e49e296861ee9cee088f5","mac_address":"fa:16:3e:af:4e:2e","admin_state_up":true,"status":"DOWN","device_id":"","device_owner":"","fixed_ips":[{"subnet_id":"0c6afb05-e8cd-4451-8be2-e46953405c2e","ip_address":"10.100.0.9"}],"project_id":"75a99164fa9e49e296861ee9cee088f5","qos_policy_id":null,"port_security_enabled":true,"security_groups":["98c2e656-981c-45c8-8a22-8690b5481ef5"],"binding:vnic_type":"normal","allowed_address_pairs":[{"mac_address":"fa:16:3e:af:4e:2e","ip_address":"192.168.111.14/24"}],"extra_dhcp_opts":[],"description":"","qos_network_policy_id":null,"dns_name":"","dns_assignment":[{"ip_address":"10.100.0.9","hostname":"host-10-100-0-9","fqdn":"host-10-100-0-9.openstackgate.local."}],"dns_domain":"","ip_allocation":"immediate","tags":[],"created_at":"2026-03-13T11:05:55Z","updated_at":"2026-03-13T11:05:55Z","revision_number":1}}'
2026-03-13 11:06:04,859 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:test_broadcast_vlan_transparency): 500 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers 7.673s
2026-03-13 11:06:04,880 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"server": {"flavorRef": "22222222-2222-2222-2222-222222222222", "imageRef": "11111111-1111-1111-1111-111111111111", "key_name": "tempest-keypair-test-1346459391", "networks": [{"port": "0ca9bcc7-2c1a-4d09-aaf6-2ee26d11ae64"}], "security_groups": [{"name": "secgroup_l2_flood"}], "name": "tempest-broadcast-receiver-124-933197332"}, "os:scheduler_hints": {"different_host": "737a82a2-7b8f-4942-a335-d10854e9a2fd"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:57 GMT', 'server': 'Apache', 'content-length': '202', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-81c8e56c-d7b4-40c9-8bf2-ee73948a0d3c', 'x-compute-request-id': 'req-81c8e56c-d7b4-40c9-8bf2-ee73948a0d3c', 'content-type': 'application/json; charset=UTF-8', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '500', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers'}
Body: b'{"computeFault": {"code": 500, "message": "Unexpected API Error. Please report this at http://bugs.launchpad.net/nova/ and attach the Nova API log if possible.\\n<class \'nova.exception.NovaException\'>"}}'
2026-03-13 11:06:07,108 40 INFO [tempest.lib.common.rest_client] Request (BroadcastTestVlanTransparency:_run_cleanups): 503 DELETE https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd 1.946s
2026-03-13 11:06:07,118 40 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:06:05 GMT', 'server': 'Apache', 'content-length': '218', 'x-openstack-request-id': 'req-2a5d0c5f-2234-4f84-afb6-53b946c898ee', 'x-compute-request-id': 'req-2a5d0c5f-2234-4f84-afb6-53b946c898ee', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '503', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd'}
Body: b'{"message": "The server is currently unavailable. Please try again at a later time.<br /><br />\\nThe Keystone service is temporarily unavailable.\\n\\n", "code": "503 Service Unavailable", "title": "Service Unavailable"}'
2026-03-13 11:06:07,523 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=9, connect=None, read=None, redirect=5, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd
2026-03-13 11:06:07,547 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=8, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b3ed5d5e0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd
2026-03-13 11:06:07,557 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=7, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b3ed5de50>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd
2026-03-13 11:06:07,563 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=6, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b3ed5dbe0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd
2026-03-13 11:06:07,572 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=5, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b3ed5d910>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd
2026-03-13 11:06:07,652 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=4, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b3ed5d9a0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd
2026-03-13 11:06:07,732 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=3, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b3ed5d8e0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd
2026-03-13 11:06:07,740 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=2, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40d05430>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd
2026-03-13 11:06:07,745 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=1, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40dc24c0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd
2026-03-13 11:06:07,751 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=0, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b3ec68820>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd
2026-03-13 11:06:08,214 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=9, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43d3cd90>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,217 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=8, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43d3cb50>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,220 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=7, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b410ab0d0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,222 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=6, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b410ab1c0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,225 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=5, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b410ab9a0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,235 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=4, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b410abc40>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,238 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=3, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b410ab430>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,249 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=2, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40e5ce50>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,252 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=1, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b41162d90>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,263 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=0, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b41162fa0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,311 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=9, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40d05190>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,334 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=8, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40d05160>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,336 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=7, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40d05910>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,338 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=6, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43c82490>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,341 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=5, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43c82130>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,343 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=4, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43c82610>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,345 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=3, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43c82940>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,347 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=2, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43c825b0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,350 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=1, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43c82310>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,352 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=0, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b3ec7fc10>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488
2026-03-13 11:06:08,356 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=9, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40e24b80>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,358 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=8, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40dce820>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,360 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=7, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40d218e0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,366 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=6, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40d21b80>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,368 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=5, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40d21700>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,370 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=4, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40d217f0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,372 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=3, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40d21f70>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,374 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=2, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40d21940>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,376 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=1, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b411185e0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,379 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=0, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b41118a00>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,400 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=9, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40db1370>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,402 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=8, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b41118670>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,404 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=7, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40db1c40>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,406 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=6, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40db18e0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,408 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=5, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40db1160>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,410 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=4, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40db1190>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,411 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=3, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b41079dc0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,414 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=2, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b41079b50>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,416 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=1, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40e9adc0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,417 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=0, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b40e9af70>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35
2026-03-13 11:06:08,425 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=9, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b4106d2b0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,427 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=8, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b4106d4f0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,429 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=7, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b4106d1c0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,430 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=6, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b41120fa0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,432 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=5, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b41120e80>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,433 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=4, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b411201f0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,435 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=3, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43d61880>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,437 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=2, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43d615b0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,438 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=1, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43d619a0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,440 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=0, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43d61a60>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,444 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=9, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43d613d0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,445 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=8, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43d61100>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,447 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=7, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43d61ca0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,449 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=6, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43dcae80>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,451 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=5, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43dcae50>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,453 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=4, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43dcad90>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,457 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=3, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43db81c0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,459 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=2, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43db8970>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,461 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=1, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43db83d0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
2026-03-13 11:06:08,463 40 WARNING [urllib3.connectionpool] Retrying (Retry(total=0, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43db8e50>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725
}}}
traceback-1: {{{
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/lib/common/utils/test_utils.py", line 87, in call_and_ignore_notfound_exc
return func(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/servers_client.py", line 172, in delete_server
resp, body = self.delete("servers/%s" % server_id)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 359, in delete
return self.request('DELETE', url, extra_headers, headers, body)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/base_compute_client.py", line 47, in request
resp, resp_body = super(BaseComputeClient, self).request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 762, in request
self._error_checker(resp, resp_body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 946, in _error_checker
raise exceptions.UnexpectedResponseCode(str(resp.status),
tempest.lib.exceptions.UnexpectedResponseCode: Unexpected response code received
Details: 503
}}}
traceback-2: {{{
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f0b410feb80>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/lib/common/utils/test_utils.py", line 87, in call_and_ignore_notfound_exc
return func(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/tempest/common/waiters.py", line 110, in wait_for_server_termination
body = client.show_server(server_id)['server']
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/servers_client.py", line 159, in show_server
resp, body = self.get("servers/%s" % server_id)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 342, in get
return self.request('GET', url, extra_headers, headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/base_compute_client.py", line 47, in request
resp, resp_body = super(BaseComputeClient, self).request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 74, in request
return self.request_encode_url(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 96, in request_encode_url
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='nova-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v2.1/servers/737a82a2-7b8f-4942-a335-d10854e9a2fd (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b410feb80>: Failed to establish a new connection: [Errno 111] Connection refused'))
}}}
traceback-3: {{{
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f0b41162d60>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/lib/common/utils/test_utils.py", line 87, in call_and_ignore_notfound_exc
return func(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/servers_client.py", line 172, in delete_server
resp, body = self.delete("servers/%s" % server_id)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 359, in delete
return self.request('DELETE', url, extra_headers, headers, body)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/base_compute_client.py", line 47, in request
resp, resp_body = super(BaseComputeClient, self).request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 74, in request
return self.request_encode_url(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 96, in request_encode_url
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='nova-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b41162d60>: Failed to establish a new connection: [Errno 111] Connection refused'))
}}}
traceback-4: {{{
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f0b3ec7fca0>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/lib/common/utils/test_utils.py", line 87, in call_and_ignore_notfound_exc
return func(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/tempest/common/waiters.py", line 110, in wait_for_server_termination
body = client.show_server(server_id)['server']
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/servers_client.py", line 159, in show_server
resp, body = self.get("servers/%s" % server_id)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 342, in get
return self.request('GET', url, extra_headers, headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/base_compute_client.py", line 47, in request
resp, resp_body = super(BaseComputeClient, self).request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 74, in request
return self.request_encode_url(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 96, in request_encode_url
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='nova-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v2.1/servers/748797fb-3ef1-42af-a728-291310d61488 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b3ec7fca0>: Failed to establish a new connection: [Errno 111] Connection refused'))
}}}
traceback-5: {{{
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f0b41118610>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/lib/common/utils/test_utils.py", line 87, in call_and_ignore_notfound_exc
return func(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/servers_client.py", line 172, in delete_server
resp, body = self.delete("servers/%s" % server_id)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 359, in delete
return self.request('DELETE', url, extra_headers, headers, body)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/base_compute_client.py", line 47, in request
resp, resp_body = super(BaseComputeClient, self).request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 74, in request
return self.request_encode_url(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 96, in request_encode_url
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='nova-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b41118610>: Failed to establish a new connection: [Errno 111] Connection refused'))
}}}
traceback-6: {{{
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f0b4106d670>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/lib/common/utils/test_utils.py", line 87, in call_and_ignore_notfound_exc
return func(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/tempest/common/waiters.py", line 110, in wait_for_server_termination
body = client.show_server(server_id)['server']
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/servers_client.py", line 159, in show_server
resp, body = self.get("servers/%s" % server_id)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 342, in get
return self.request('GET', url, extra_headers, headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/base_compute_client.py", line 47, in request
resp, resp_body = super(BaseComputeClient, self).request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 74, in request
return self.request_encode_url(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 96, in request_encode_url
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='nova-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v2.1/servers/20a866d6-d3e9-474f-b57e-8e751dbd1f35 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b4106d670>: Failed to establish a new connection: [Errno 111] Connection refused'))
}}}
traceback-7: {{{
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f0b43d61580>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/lib/common/utils/test_utils.py", line 87, in call_and_ignore_notfound_exc
return func(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/servers_client.py", line 172, in delete_server
resp, body = self.delete("servers/%s" % server_id)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 359, in delete
return self.request('DELETE', url, extra_headers, headers, body)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/base_compute_client.py", line 47, in request
resp, resp_body = super(BaseComputeClient, self).request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 74, in request
return self.request_encode_url(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 96, in request_encode_url
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='nova-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43d61580>: Failed to establish a new connection: [Errno 111] Connection refused'))
}}}
traceback-8: {{{
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f0b43db8e80>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/lib/common/utils/test_utils.py", line 87, in call_and_ignore_notfound_exc
return func(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/tempest/common/waiters.py", line 110, in wait_for_server_termination
body = client.show_server(server_id)['server']
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/servers_client.py", line 159, in show_server
resp, body = self.get("servers/%s" % server_id)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 342, in get
return self.request('GET', url, extra_headers, headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/base_compute_client.py", line 47, in request
resp, resp_body = super(BaseComputeClient, self).request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 74, in request
return self.request_encode_url(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 96, in request_encode_url
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='nova-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v2.1/servers/48f2c13f-b3c2-4aa0-83d2-26fd947d0725 (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f0b43db8e80>: Failed to establish a new connection: [Errno 111] Connection refused'))
}}}
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_broadcast.py", line 294, in test_broadcast_vlan_transparency
self._create_server('broadcast-receiver-%d' % vlan_group,
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_broadcast.py", line 97, in _create_server
server = self.create_server(**params)['server']
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/scenario/base.py", line 136, in create_server
server = client.create_server(
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/servers_client.py", line 117, in create_server
resp, body = self.post('servers', post_body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/base_compute_client.py", line 47, in request
resp, resp_body = super(BaseComputeClient, self).request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 762, in request
self._error_checker(resp, resp_body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 942, in _error_checker
raise exceptions.ServerFault(resp_body, resp=resp,
tempest.lib.exceptions.ServerFault: Got server fault
Details: Unexpected API Error. Please report this at http://bugs.launchpad.net/nova/ and attach the Nova API log if possible.
<class 'nova.exception.NovaException'>
|
||||||
| whitebox_neutron_tempest_plugin.tests.scenario.test_extra_dhcp_opts.ExtraDhcpOptionsTest | 4 | 3 | 1 | 0 | 0 | Detail | |
test_extra_dhcp_opts_disabled_dhcp6[id-abb12899-690a-407d-99d4-49eca030ce94] |
pass
pt10.1: whitebox_neutron_tempest_plugin.tests.scenario.test_extra_dhcp_opts.ExtraDhcpOptionsTest.test_extra_dhcp_opts_disabled_dhcp6[id-abb12899-690a-407d-99d4-49eca030ce94]
|
||||||
test_extra_dhcp_opts_disabled_enabled_dhcp4[id-ef41d6d8-f2bf-44e4-9f4d-bb8a3fed50ad] |
pass
pt10.2: whitebox_neutron_tempest_plugin.tests.scenario.test_extra_dhcp_opts.ExtraDhcpOptionsTest.test_extra_dhcp_opts_disabled_enabled_dhcp4[id-ef41d6d8-f2bf-44e4-9f4d-bb8a3fed50ad]
|
||||||
test_extra_dhcp_opts_ipv4_ipv6_stateful[id-8f52b4dc-faae-4f1d-b113-d2f3e86bf0d6] |
pass
pt10.3: whitebox_neutron_tempest_plugin.tests.scenario.test_extra_dhcp_opts.ExtraDhcpOptionsTest.test_extra_dhcp_opts_ipv4_ipv6_stateful[id-8f52b4dc-faae-4f1d-b113-d2f3e86bf0d6]
|
||||||
test_extra_dhcp_opts_ipv4_ipv6_stateless[id-e9e32249-6148-4565-b7b1-e64c77c9f4ec] |
fail
ft10.4: whitebox_neutron_tempest_plugin.tests.scenario.test_extra_dhcp_opts.ExtraDhcpOptionsTest.test_extra_dhcp_opts_ipv4_ipv6_stateless[id-e9e32249-6148-4565-b7b1-e64c77c9f4ec]testtools.testresult.real._StringException: pythonlogging:'': {{{
2026-03-13 11:05:32,035 41 INFO [tempest.lib.common.rest_client] Request (ExtraDhcpOptionsTest:test_extra_dhcp_opts_ipv4_ipv6_stateless): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/networks 2.785s
2026-03-13 11:05:32,035 41 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"network": {"name": "tempest-ExtraDhcpOptionsTest-1543210864-test_extra_dhcp_opts_ipv4_ipv6_stateless"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:31 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '699', 'x-openstack-request-id': 'req-bd74c700-2cf7-4293-b903-86d8499ba207', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/networks'}
Body: b'{"network":{"id":"8d37aa56-b8e8-4c31-af5b-68798e679914","name":"tempest-ExtraDhcpOptionsTest-1543210864-test_extra_dhcp_opts_ipv4_ipv6_stateless","tenant_id":"4f3bd72a7e8d42708d589a2009c3fb10","admin_state_up":true,"mtu":1342,"status":"ACTIVE","subnets":[],"shared":false,"project_id":"4f3bd72a7e8d42708d589a2009c3fb10","qos_policy_id":null,"port_security_enabled":true,"dns_domain":"","router:external":false,"vlan_transparent":false,"is_default":false,"availability_zone_hints":[],"availability_zones":[],"ipv4_address_scope":null,"ipv6_address_scope":null,"description":"","l2_adjacency":true,"tags":[],"created_at":"2026-03-13T11:05:29Z","updated_at":"2026-03-13T11:05:29Z","revision_number":1}}'
2026-03-13 11:05:35,937 41 INFO [tempest.lib.common.rest_client] Request (ExtraDhcpOptionsTest:test_extra_dhcp_opts_ipv4_ipv6_stateless): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/subnets 3.901s
2026-03-13 11:05:35,984 41 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"subnet": {"network_id": "8d37aa56-b8e8-4c31-af5b-68798e679914", "cidr": "192.168.5.0/24", "ip_version": 4, "name": "tempest-ExtraDhcpOptionsTest-1543210864-test_extra_dhcp_opts_ipv4_ipv6_stateless", "enable_dhcp": true, "gateway_ip": "192.168.5.1"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:35 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '687', 'x-openstack-request-id': 'req-e0edd256-3d3c-4108-ab30-9efbab6940b5', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/subnets'}
Body: b'{"subnet":{"id":"05504e10-9569-48d4-af1d-c4c201886f22","name":"tempest-ExtraDhcpOptionsTest-1543210864-test_extra_dhcp_opts_ipv4_ipv6_stateless","tenant_id":"4f3bd72a7e8d42708d589a2009c3fb10","network_id":"8d37aa56-b8e8-4c31-af5b-68798e679914","ip_version":4,"subnetpool_id":null,"enable_dhcp":true,"ipv6_ra_mode":null,"ipv6_address_mode":null,"gateway_ip":"192.168.5.1","cidr":"192.168.5.0/24","allocation_pools":[{"start":"192.168.5.2","end":"192.168.5.254"}],"host_routes":[],"dns_nameservers":[],"description":"","service_types":[],"tags":[],"created_at":"2026-03-13T11:05:34Z","updated_at":"2026-03-13T11:05:34Z","revision_number":0,"project_id":"4f3bd72a7e8d42708d589a2009c3fb10"}}'
2026-03-13 11:05:41,884 41 INFO [tempest.lib.common.rest_client] Request (ExtraDhcpOptionsTest:test_extra_dhcp_opts_ipv4_ipv6_stateless): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/routers 5.895s
2026-03-13 11:05:41,984 41 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"router": {"external_gateway_info": {"network_id": "d90d10b6-a44a-47b5-bcd6-630085d51c8e"}, "name": "tempest-router-1353145522", "admin_state_up": true}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:41 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '652', 'x-openstack-request-id': 'req-63566b68-9b70-4529-aae9-8006ac5437dc', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/routers'}
Body: b'{"router": {"id": "6c00831c-fbb8-47f0-a77a-4d2962769d13", "name": "tempest-router-1353145522", "tenant_id": "4f3bd72a7e8d42708d589a2009c3fb10", "admin_state_up": true, "status": "ACTIVE", "external_gateway_info": {"network_id": "d90d10b6-a44a-47b5-bcd6-630085d51c8e", "external_fixed_ips": [{"subnet_id": "f0c41028-eb3e-4f1f-8cbf-c725c121bca4", "ip_address": "192.168.122.232"}], "enable_snat": true}, "description": "", "availability_zones": [], "availability_zone_hints": [], "routes": [], "tags": [], "created_at": "2026-03-13T11:05:36Z", "updated_at": "2026-03-13T11:05:39Z", "revision_number": 2, "project_id": "4f3bd72a7e8d42708d589a2009c3fb10"}}'
2026-03-13 11:05:41,984 41 DEBUG [neutron_tempest_plugin.scenario.base] Created router tempest-router-1353145522
2026-03-13 11:05:43,246 41 INFO [tempest.lib.common.rest_client] Request (ExtraDhcpOptionsTest:test_extra_dhcp_opts_ipv4_ipv6_stateless): 200 GET https://neutron-public-openstack.apps-crc.testing/v2.0/routers/6c00831c-fbb8-47f0-a77a-4d2962769d13 1.239s
2026-03-13 11:05:43,283 41 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:43 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '652', 'x-openstack-request-id': 'req-a25b35c0-46c0-4a90-9be3-e6bf7f5460aa', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/routers/6c00831c-fbb8-47f0-a77a-4d2962769d13'}
Body: b'{"router": {"id": "6c00831c-fbb8-47f0-a77a-4d2962769d13", "name": "tempest-router-1353145522", "tenant_id": "4f3bd72a7e8d42708d589a2009c3fb10", "admin_state_up": true, "status": "ACTIVE", "external_gateway_info": {"network_id": "d90d10b6-a44a-47b5-bcd6-630085d51c8e", "external_fixed_ips": [{"subnet_id": "f0c41028-eb3e-4f1f-8cbf-c725c121bca4", "ip_address": "192.168.122.232"}], "enable_snat": true}, "description": "", "availability_zones": [], "availability_zone_hints": [], "routes": [], "tags": [], "created_at": "2026-03-13T11:05:36Z", "updated_at": "2026-03-13T11:05:39Z", "revision_number": 2, "project_id": "4f3bd72a7e8d42708d589a2009c3fb10"}}'
2026-03-13 11:05:48,490 41 INFO [tempest.lib.common.rest_client] Request (ExtraDhcpOptionsTest:test_extra_dhcp_opts_ipv4_ipv6_stateless): 200 PUT https://neutron-public-openstack.apps-crc.testing/v2.0/routers/6c00831c-fbb8-47f0-a77a-4d2962769d13/add_router_interface 5.205s
2026-03-13 11:05:48,490 41 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"subnet_id": "05504e10-9569-48d4-af1d-c4c201886f22"}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:48 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '309', 'x-openstack-request-id': 'req-4b05d29e-1f28-4885-aa9d-f9b2cfd507e5', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/routers/6c00831c-fbb8-47f0-a77a-4d2962769d13/add_router_interface'}
Body: b'{"id": "6c00831c-fbb8-47f0-a77a-4d2962769d13", "tenant_id": "4f3bd72a7e8d42708d589a2009c3fb10", "port_id": "3254d31f-3266-48b5-8d67-402e0fdf005b", "network_id": "8d37aa56-b8e8-4c31-af5b-68798e679914", "subnet_id": "05504e10-9569-48d4-af1d-c4c201886f22", "subnet_ids": ["05504e10-9569-48d4-af1d-c4c201886f22"]}'
2026-03-13 11:05:55,796 41 INFO [tempest.lib.common.rest_client] Request (ExtraDhcpOptionsTest:test_extra_dhcp_opts_ipv4_ipv6_stateless): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/subnets 7.306s
2026-03-13 11:05:55,803 41 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"subnet": {"network_id": "8d37aa56-b8e8-4c31-af5b-68798e679914", "cidr": "2001:5::/64", "ip_version": 6, "name": "tempest-ExtraDhcpOptionsTest-1543210864-test_extra_dhcp_opts_ipv4_ipv6_stateless-ipv6", "ipv6_ra_mode": "dhcpv6-stateless", "ipv6_address_mode": "dhcpv6-stateless", "gateway_ip": "2001:5::1"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:55 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '727', 'x-openstack-request-id': 'req-8764eb83-4df0-4ab7-9713-86a7e71da3c3', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/subnets'}
Body: b'{"subnet":{"id":"6255ff39-ba98-4ab9-ad9d-945e25a786d6","name":"tempest-ExtraDhcpOptionsTest-1543210864-test_extra_dhcp_opts_ipv4_ipv6_stateless-ipv6","tenant_id":"4f3bd72a7e8d42708d589a2009c3fb10","network_id":"8d37aa56-b8e8-4c31-af5b-68798e679914","ip_version":6,"subnetpool_id":null,"enable_dhcp":true,"ipv6_ra_mode":"dhcpv6-stateless","ipv6_address_mode":"dhcpv6-stateless","gateway_ip":"2001:5::1","cidr":"2001:5::/64","allocation_pools":[{"start":"2001:5::2","end":"2001:5::ffff:ffff:ffff:ffff"}],"host_routes":[],"dns_nameservers":[],"description":"","service_types":[],"tags":[],"created_at":"2026-03-13T11:05:50Z","updated_at":"2026-03-13T11:05:50Z","revision_number":0,"project_id":"4f3bd72a7e8d42708d589a2009c3fb10"}}'
2026-03-13 11:06:07,679 41 WARNING [urllib3.connectionpool] Retrying (Retry(total=9, connect=None, read=None, redirect=5, status=None)) after connection broken by 'ProtocolError('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))': /v2.0/routers/6c00831c-fbb8-47f0-a77a-4d2962769d13/add_router_interface
2026-03-13 11:06:07,705 41 WARNING [urllib3.connectionpool] Retrying (Retry(total=8, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f4b20c2ca60>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/routers/6c00831c-fbb8-47f0-a77a-4d2962769d13/add_router_interface
2026-03-13 11:06:07,715 41 WARNING [urllib3.connectionpool] Retrying (Retry(total=7, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f4b20c2cac0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/routers/6c00831c-fbb8-47f0-a77a-4d2962769d13/add_router_interface
2026-03-13 11:06:07,725 41 WARNING [urllib3.connectionpool] Retrying (Retry(total=6, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f4b21fe4700>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/routers/6c00831c-fbb8-47f0-a77a-4d2962769d13/add_router_interface
2026-03-13 11:06:07,728 41 WARNING [urllib3.connectionpool] Retrying (Retry(total=5, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f4b21fe41f0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/routers/6c00831c-fbb8-47f0-a77a-4d2962769d13/add_router_interface
2026-03-13 11:06:07,733 41 WARNING [urllib3.connectionpool] Retrying (Retry(total=4, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f4b20cc6b50>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/routers/6c00831c-fbb8-47f0-a77a-4d2962769d13/add_router_interface
2026-03-13 11:06:07,740 41 WARNING [urllib3.connectionpool] Retrying (Retry(total=3, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f4b20cb6ca0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/routers/6c00831c-fbb8-47f0-a77a-4d2962769d13/add_router_interface
2026-03-13 11:06:07,745 41 WARNING [urllib3.connectionpool] Retrying (Retry(total=2, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f4b20cb6a30>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/routers/6c00831c-fbb8-47f0-a77a-4d2962769d13/add_router_interface
2026-03-13 11:06:07,751 41 WARNING [urllib3.connectionpool] Retrying (Retry(total=1, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f4b20cb6880>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/routers/6c00831c-fbb8-47f0-a77a-4d2962769d13/add_router_interface
2026-03-13 11:06:07,753 41 WARNING [urllib3.connectionpool] Retrying (Retry(total=0, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f4b20cb6910>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/routers/6c00831c-fbb8-47f0-a77a-4d2962769d13/add_router_interface
}}}
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7f4b20cb6730>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_extra_dhcp_opts.py", line 197, in test_extra_dhcp_opts_ipv4_ipv6_stateless
self._test_extra_dhcp_opts_ipv4_ipv6('dhcpv6-stateless')
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_extra_dhcp_opts.py", line 141, in _test_extra_dhcp_opts_ipv4_ipv6
self._create_port_and_check_dhcp_opts(
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_extra_dhcp_opts.py", line 112, in _create_port_and_check_dhcp_opts
self.create_router_interface(router['id'], subnetv6['id'])
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 880, in create_router_interface
interface = client.add_router_interface_with_subnet_id(
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/services/network/json/network_client.py", line 433, in add_router_interface_with_subnet_id
resp, body = self.put(uri, update_body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 392, in put
return self.request('PUT', url, extra_headers, headers, body, chunked)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 78, in request
return self.request_encode_body(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 170, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='neutron-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v2.0/routers/6c00831c-fbb8-47f0-a77a-4d2962769d13/add_router_interface (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f4b20cb6730>: Failed to establish a new connection: [Errno 111] Connection refused'))
|
||||||
| whitebox_neutron_tempest_plugin.tests.scenario.test_extra_dhcp_opts.OvnExtraDhcpOptionsTest | 5 | 1 | 4 | 0 | 0 | Detail | |
test_extra_dhcp_opts_dhcp_disabled_option[id-30ef3221-e46b-4358-b550-d98c08272e1c] |
pass
pt11.1: whitebox_neutron_tempest_plugin.tests.scenario.test_extra_dhcp_opts.OvnExtraDhcpOptionsTest.test_extra_dhcp_opts_dhcp_disabled_option[id-30ef3221-e46b-4358-b550-d98c08272e1c]
|
||||||
test_extra_dhcp_opts_disabled_dhcp6[id-abb12899-690a-407d-99d4-49eca030ce94] |
fail
ft11.2: whitebox_neutron_tempest_plugin.tests.scenario.test_extra_dhcp_opts.OvnExtraDhcpOptionsTest.test_extra_dhcp_opts_disabled_dhcp6[id-abb12899-690a-407d-99d4-49eca030ce94]testtools.testresult.real._StringException: pythonlogging:'': {{{
2026-03-13 11:05:52,094 37 INFO [tempest.lib.common.rest_client] Request (OvnExtraDhcpOptionsTest:test_extra_dhcp_opts_disabled_dhcp6): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/networks 2.783s
2026-03-13 11:05:52,094 37 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"network": {"name": "tempest-OvnExtraDhcpOptionsTest-528917309-test_extra_dhcp_opts_disabled_dhcp6"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:51 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '696', 'x-openstack-request-id': 'req-fd5c429e-cbcb-4e79-906a-caeea0b288ac', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/networks'}
Body: b'{"network":{"id":"01327cda-2846-4241-9d14-3f2e77dff5ff","name":"tempest-OvnExtraDhcpOptionsTest-528917309-test_extra_dhcp_opts_disabled_dhcp6","tenant_id":"4154fdc49ea14649a5baafe4b02c0d14","admin_state_up":true,"mtu":1342,"status":"ACTIVE","subnets":[],"shared":false,"project_id":"4154fdc49ea14649a5baafe4b02c0d14","qos_policy_id":null,"port_security_enabled":true,"dns_domain":"","router:external":false,"vlan_transparent":false,"is_default":false,"availability_zone_hints":[],"availability_zones":[],"ipv4_address_scope":null,"ipv6_address_scope":null,"description":"","l2_adjacency":true,"tags":[],"created_at":"2026-03-13T11:05:49Z","updated_at":"2026-03-13T11:05:50Z","revision_number":1}}'
2026-03-13 11:05:58,293 37 INFO [tempest.lib.common.rest_client] Request (OvnExtraDhcpOptionsTest:test_extra_dhcp_opts_disabled_dhcp6): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/subnets 6.198s
2026-03-13 11:05:58,301 37 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"subnet": {"network_id": "01327cda-2846-4241-9d14-3f2e77dff5ff", "cidr": "192.168.2.0/24", "ip_version": 4, "name": "tempest-OvnExtraDhcpOptionsTest-528917309-test_extra_dhcp_opts_disabled_dhcp6", "enable_dhcp": true, "gateway_ip": "192.168.2.1"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:58 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '684', 'x-openstack-request-id': 'req-e3830f93-f552-47ac-a168-36796b2bc240', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/subnets'}
Body: b'{"subnet":{"id":"ac2e1d66-0e24-4e24-b15e-d773179edb71","name":"tempest-OvnExtraDhcpOptionsTest-528917309-test_extra_dhcp_opts_disabled_dhcp6","tenant_id":"4154fdc49ea14649a5baafe4b02c0d14","network_id":"01327cda-2846-4241-9d14-3f2e77dff5ff","ip_version":4,"subnetpool_id":null,"enable_dhcp":true,"ipv6_ra_mode":null,"ipv6_address_mode":null,"gateway_ip":"192.168.2.1","cidr":"192.168.2.0/24","allocation_pools":[{"start":"192.168.2.2","end":"192.168.2.254"}],"host_routes":[],"dns_nameservers":[],"description":"","service_types":[],"tags":[],"created_at":"2026-03-13T11:05:55Z","updated_at":"2026-03-13T11:05:55Z","revision_number":0,"project_id":"4154fdc49ea14649a5baafe4b02c0d14"}}'
}}}
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 446, in _make_request
six.raise_from(e, None)
File "<string>", line 3, in raise_from
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 441, in _make_request
httplib_response = conn.getresponse()
File "/usr/lib64/python3.9/http/client.py", line 1377, in getresponse
response.begin()
File "/usr/lib64/python3.9/http/client.py", line 320, in begin
version, status, reason = self._read_status()
File "/usr/lib64/python3.9/http/client.py", line 289, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
http.client.RemoteDisconnected: Remote end closed connection without response
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_extra_dhcp_opts.py", line 249, in test_extra_dhcp_opts_disabled_dhcp6
self._create_port_and_check_dhcp_opts(ipv6=True, dhcp6_enabled=False)
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_extra_dhcp_opts.py", line 92, in _create_port_and_check_dhcp_opts
router = self.create_router_by_client()
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/scenario/base.py", line 230, in create_router_by_client
router = cls.create_router(**kwargs)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 656, in create_router
return cls._create_router_with_client(cls.client, *args, **kwargs)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 647, in _create_router_with_client
body = client.create_router(
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/services/network/json/network_client.py", line 366, in create_router
resp, body = self.post(uri, body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 78, in request
return self.request_encode_body(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 170, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 534, in increment
raise six.reraise(type(error), error, _stacktrace)
File "/usr/lib/python3.9/site-packages/urllib3/packages/six.py", line 708, in reraise
raise value.with_traceback(tb)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 446, in _make_request
six.raise_from(e, None)
File "<string>", line 3, in raise_from
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 441, in _make_request
httplib_response = conn.getresponse()
File "/usr/lib64/python3.9/http/client.py", line 1377, in getresponse
response.begin()
File "/usr/lib64/python3.9/http/client.py", line 320, in begin
version, status, reason = self._read_status()
File "/usr/lib64/python3.9/http/client.py", line 289, in _read_status
raise RemoteDisconnected("Remote end closed connection without"
urllib3.exceptions.ProtocolError: ('Connection aborted.', RemoteDisconnected('Remote end closed connection without response'))
|
||||||
test_extra_dhcp_opts_disabled_enabled_dhcp4[id-ef41d6d8-f2bf-44e4-9f4d-bb8a3fed50ad] |
fail
ft11.3: whitebox_neutron_tempest_plugin.tests.scenario.test_extra_dhcp_opts.OvnExtraDhcpOptionsTest.test_extra_dhcp_opts_disabled_enabled_dhcp4[id-ef41d6d8-f2bf-44e4-9f4d-bb8a3fed50ad]testtools.testresult.real._StringException: pythonlogging:'': {{{
2026-03-13 11:06:08,357 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=9, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720ab43a0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,359 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=8, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc7209e51c0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,365 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=7, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc7211500d0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,368 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=6, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc7211502e0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,370 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=5, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc721150bb0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,372 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=4, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc721150250>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,374 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=3, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc721150340>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,378 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=2, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a00a00>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,381 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=1, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720ad7130>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,383 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=0, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a7c670>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
}}}
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7fc720ad03d0>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_extra_dhcp_opts.py", line 209, in test_extra_dhcp_opts_disabled_enabled_dhcp4
self._create_port_and_check_dhcp_opts(dhcp4_enabled=False)
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_extra_dhcp_opts.py", line 84, in _create_port_and_check_dhcp_opts
network = self.create_network(name=rand_name_test)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 418, in create_network
network = client.create_network(name=name, **kwargs)['network']
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/services/network/json/network_client.py", line 146, in _create
resp, body = self.post(uri, post_data)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 78, in request
return self.request_encode_body(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 170, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='neutron-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v2.0/networks (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720ad03d0>: Failed to establish a new connection: [Errno 111] Connection refused'))
|
||||||
test_extra_dhcp_opts_ipv4_ipv6_stateful[id-8f52b4dc-faae-4f1d-b113-d2f3e86bf0d6] |
fail
ft11.4: whitebox_neutron_tempest_plugin.tests.scenario.test_extra_dhcp_opts.OvnExtraDhcpOptionsTest.test_extra_dhcp_opts_ipv4_ipv6_stateful[id-8f52b4dc-faae-4f1d-b113-d2f3e86bf0d6]testtools.testresult.real._StringException: pythonlogging:'': {{{
2026-03-13 11:06:08,413 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=9, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a00c70>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,416 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=8, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc7209e5340>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,422 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=7, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a00d30>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,425 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=6, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a00b50>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,427 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=5, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a008b0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,428 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=4, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a00280>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,430 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=3, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a00400>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,432 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=2, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a86a90>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,434 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=1, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a868e0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,435 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=0, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a86760>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
}}}
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7fc720a86e50>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_extra_dhcp_opts.py", line 185, in test_extra_dhcp_opts_ipv4_ipv6_stateful
self._test_extra_dhcp_opts_ipv4_ipv6('dhcpv6-stateful')
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_extra_dhcp_opts.py", line 141, in _test_extra_dhcp_opts_ipv4_ipv6
self._create_port_and_check_dhcp_opts(
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_extra_dhcp_opts.py", line 84, in _create_port_and_check_dhcp_opts
network = self.create_network(name=rand_name_test)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 418, in create_network
network = client.create_network(name=name, **kwargs)['network']
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/services/network/json/network_client.py", line 146, in _create
resp, body = self.post(uri, post_data)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 78, in request
return self.request_encode_body(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 170, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='neutron-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v2.0/networks (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a86e50>: Failed to establish a new connection: [Errno 111] Connection refused'))
|
||||||
test_extra_dhcp_opts_ipv4_ipv6_stateless[id-e9e32249-6148-4565-b7b1-e64c77c9f4ec] |
fail
ft11.5: whitebox_neutron_tempest_plugin.tests.scenario.test_extra_dhcp_opts.OvnExtraDhcpOptionsTest.test_extra_dhcp_opts_ipv4_ipv6_stateless[id-e9e32249-6148-4565-b7b1-e64c77c9f4ec]testtools.testresult.real._StringException: pythonlogging:'': {{{
2026-03-13 11:06:08,442 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=9, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc72113c5e0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,444 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=8, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc71a22edf0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,446 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=7, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a86d60>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,447 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=6, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a86dc0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,449 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=5, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a86b80>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,451 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=4, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a86760>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,454 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=3, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a86e20>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,457 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=2, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a86af0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,459 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=1, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a00be0>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
2026-03-13 11:06:08,461 37 WARNING [urllib3.connectionpool] Retrying (Retry(total=0, connect=None, read=None, redirect=5, status=None)) after connection broken by 'NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a00b20>: Failed to establish a new connection: [Errno 111] Connection refused')': /v2.0/networks
}}}
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 169, in _new_conn
conn = connection.create_connection(
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 96, in create_connection
raise err
File "/usr/lib/python3.9/site-packages/urllib3/util/connection.py", line 86, in create_connection
sock.connect(sa)
ConnectionRefusedError: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 700, in urlopen
httplib_response = self._make_request(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 383, in _make_request
self._validate_conn(conn)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 1015, in _validate_conn
conn.connect()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 353, in connect
conn = self._new_conn()
File "/usr/lib/python3.9/site-packages/urllib3/connection.py", line 181, in _new_conn
raise NewConnectionError(
urllib3.exceptions.NewConnectionError: <urllib3.connection.HTTPSConnection object at 0x7fc720a007c0>: Failed to establish a new connection: [Errno 111] Connection refused
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_extra_dhcp_opts.py", line 197, in test_extra_dhcp_opts_ipv4_ipv6_stateless
self._test_extra_dhcp_opts_ipv4_ipv6('dhcpv6-stateless')
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_extra_dhcp_opts.py", line 141, in _test_extra_dhcp_opts_ipv4_ipv6
self._create_port_and_check_dhcp_opts(
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_extra_dhcp_opts.py", line 84, in _create_port_and_check_dhcp_opts
network = self.create_network(name=rand_name_test)
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/api/base.py", line 418, in create_network
network = client.create_network(name=name, **kwargs)['network']
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/services/network/json/network_client.py", line 146, in _create
resp, body = self.post(uri, post_data)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 746, in request
resp, resp_body = self._request(method, url, headers=headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 612, in _request
resp, resp_body = self.raw_request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 661, in raw_request
resp, resp_body = self.http_obj.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/http.py", line 115, in request
r = super(ClosingHttp, self).request(method, url, retries=retry,
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 78, in request
return self.request_encode_body(
File "/usr/lib/python3.9/site-packages/urllib3/request.py", line 170, in request_encode_body
return self.urlopen(method, url, **extra_kw)
File "/usr/lib/python3.9/site-packages/urllib3/poolmanager.py", line 376, in urlopen
response = conn.urlopen(method, u.request_uri, **kw)
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 784, in urlopen
return self.urlopen(
[Previous line repeated 7 more times]
File "/usr/lib/python3.9/site-packages/urllib3/connectionpool.py", line 756, in urlopen
retries = retries.increment(
File "/usr/lib/python3.9/site-packages/urllib3/util/retry.py", line 576, in increment
raise MaxRetryError(_pool, url, error or ResponseError(cause))
urllib3.exceptions.MaxRetryError: HTTPSConnectionPool(host='neutron-public-openstack.apps-crc.testing', port=443): Max retries exceeded with url: /v2.0/networks (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7fc720a007c0>: Failed to establish a new connection: [Errno 111] Connection refused'))
|
||||||
| whitebox_neutron_tempest_plugin.tests.scenario.test_security_groups.NetworkDefaultSecGroupTest | 3 | 1 | 2 | 0 | 0 | Detail | |
test_remove_security_group_negative[id-cc5f679e-7196-4e68-8a82-10b73bf11e48,negative] |
pass
pt12.1: whitebox_neutron_tempest_plugin.tests.scenario.test_security_groups.NetworkDefaultSecGroupTest.test_remove_security_group_negative[id-cc5f679e-7196-4e68-8a82-10b73bf11e48,negative]
|
||||||
test_securitygroup_udp[id-921f91f8-7734-4c42-8934-a1438d45747b] |
fail
ft12.2: whitebox_neutron_tempest_plugin.tests.scenario.test_security_groups.NetworkDefaultSecGroupTest.test_securitygroup_udp[id-921f91f8-7734-4c42-8934-a1438d45747b]testtools.testresult.real._StringException: pythonlogging:'': {{{
2026-03-13 11:04:16,041 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/security-groups 0.534s
2026-03-13 11:04:16,042 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"security_group": {"name": "udp-secgrp"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:16 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '1543', 'x-openstack-request-id': 'req-9e4ab102-34d0-4af0-8498-773ed398b345', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/security-groups'}
Body: b'{"security_group": {"id": "fc595511-a33f-49ce-9e92-b343b7486d96", "name": "udp-secgrp", "stateful": true, "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "description": "", "shared": false, "security_group_rules": [{"id": "38a76bcc-0dae-45c1-bd0f-ecad4c0abe44", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "security_group_id": "fc595511-a33f-49ce-9e92-b343b7486d96", "ethertype": "IPv4", "direction": "egress", "protocol": null, "port_range_min": null, "port_range_max": null, "remote_ip_prefix": null, "remote_address_group_id": null, "normalized_cidr": null, "remote_group_id": null, "standard_attr_id": 311, "description": null, "tags": [], "created_at": "2026-03-13T11:04:15Z", "updated_at": "2026-03-13T11:04:15Z", "revision_number": 0, "project_id": "d18e64bb8b59475aa7e7165cba9029c9"}, {"id": "7617fa93-3e67-4670-814c-e19070a27d8f", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "security_group_id": "fc595511-a33f-49ce-9e92-b343b7486d96", "ethertype": "IPv6", "direction": "egress", "protocol": null, "port_range_min": null, "port_range_max": null, "remote_ip_prefix": null, "remote_address_group_id": null, "normalized_cidr": null, "remote_group_id": null, "standard_attr_id": 312, "description": null, "tags": [], "created_at": "2026-03-13T11:04:15Z", "updated_at": "2026-03-13T11:04:15Z", "revision_number": 0, "project_id": "d18e64bb8b59475aa7e7165cba9029c9"}], "tags": [], "created_at": "2026-03-13T11:04:15Z", "updated_at": "2026-03-13T11:04:15Z", "revision_number": 1, "project_id": "d18e64bb8b59475aa7e7165cba9029c9"}}'
2026-03-13 11:04:16,500 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/security-group-rules 0.457s
2026-03-13 11:04:16,500 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"security_group_rule": {"protocol": "tcp", "port_range_min": 22, "port_range_max": 22, "ethertype": "IPv4", "remote_ip_prefix": "0.0.0.0/0", "direction": "ingress", "security_group_id": "fc595511-a33f-49ce-9e92-b343b7486d96"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:16 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '579', 'x-openstack-request-id': 'req-676ae7a2-2f69-4d14-a023-1232d31abf24', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/security-group-rules'}
Body: b'{"security_group_rule": {"id": "8f4776a6-e719-4127-927a-397dd66dbf83", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "security_group_id": "fc595511-a33f-49ce-9e92-b343b7486d96", "ethertype": "IPv4", "direction": "ingress", "protocol": "tcp", "port_range_min": 22, "port_range_max": 22, "remote_ip_prefix": "0.0.0.0/0", "remote_address_group_id": null, "normalized_cidr": "0.0.0.0/0", "remote_group_id": null, "description": "", "created_at": "2026-03-13T11:04:16Z", "updated_at": "2026-03-13T11:04:16Z", "revision_number": 0, "project_id": "d18e64bb8b59475aa7e7165cba9029c9"}}'
2026-03-13 11:04:19,608 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 202 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers 3.107s
2026-03-13 11:04:19,608 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"server": {"flavorRef": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "imageRef": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "key_name": "tempest-keypair-test-1225746857", "networks": [{"uuid": "8d28fb07-e142-4b37-9745-2a3753e1beda"}], "security_groups": [{"name": "udp-secgrp"}], "name": "tempest-server-test-694306128"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:16 GMT', 'server': 'Apache', 'content-length': '423', 'location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-8c33d0a7-2c75-43ef-8dd4-114346885f76', 'x-compute-request-id': 'req-8c33d0a7-2c75-43ef-8dd4-114346885f76', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '202', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers'}
Body: b'{"server": {"id": "f1965a36-e956-4dec-b2fb-2bf4aaba6655", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}], "OS-DCF:diskConfig": "MANUAL", "security_groups": [{"name": "udp-secgrp"}], "adminPass": "Gt4DvGwigMEq"}}'
2026-03-13 11:04:21,236 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655 1.620s
2026-03-13 11:04:21,237 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:19 GMT', 'server': 'Apache', 'content-length': '1372', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-36b7d542-fdf3-41ea-abcb-a1daa29242c6', 'x-compute-request-id': 'req-36b7d542-fdf3-41ea-abcb-a1daa29242c6', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655'}
Body: b'{"server": {"id": "f1965a36-e956-4dec-b2fb-2bf4aaba6655", "name": "tempest-server-test-694306128", "status": "BUILD", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:19Z", "updated": "2026-03-13T11:04:20Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "", "config_drive": "", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "OS-EXT-STS:task_state": "scheduling", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:23,834 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655 1.589s
2026-03-13 11:04:23,834 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:22 GMT', 'server': 'Apache', 'content-length': '1430', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-b3a4f7a1-8ab1-43c6-bcc3-1242616224b7', 'x-compute-request-id': 'req-b3a4f7a1-8ab1-43c6-bcc3-1242616224b7', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655'}
Body: b'{"server": {"id": "f1965a36-e956-4dec-b2fb-2bf4aaba6655", "name": "tempest-server-test-694306128", "status": "BUILD", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "5c78c5b5031476c6e0ed7d0e8a36c7d72e5e583d90a850cfcf9cd328", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:19Z", "updated": "2026-03-13T11:04:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:23,852 39 INFO [tempest.common.waiters] State transition "BUILD/scheduling" ==> "BUILD/spawning" after 2 second wait
2026-03-13 11:04:27,711 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655 2.858s
2026-03-13 11:04:27,711 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:24 GMT', 'server': 'Apache', 'content-length': '1475', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-603b29c8-0376-439c-9ff5-b633b82dbbec', 'x-compute-request-id': 'req-603b29c8-0376-439c-9ff5-b633b82dbbec', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655'}
Body: b'{"server": {"id": "f1965a36-e956-4dec-b2fb-2bf4aaba6655", "name": "tempest-server-test-694306128", "status": "BUILD", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "5c78c5b5031476c6e0ed7d0e8a36c7d72e5e583d90a850cfcf9cd328", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:19Z", "updated": "2026-03-13T11:04:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "udp-secgrp"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:30,183 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655 1.466s
2026-03-13 11:04:30,183 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:28 GMT', 'server': 'Apache', 'content-length': '1475', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-46217445-2786-4d90-984d-39223c68c2b2', 'x-compute-request-id': 'req-46217445-2786-4d90-984d-39223c68c2b2', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655'}
Body: b'{"server": {"id": "f1965a36-e956-4dec-b2fb-2bf4aaba6655", "name": "tempest-server-test-694306128", "status": "BUILD", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "5c78c5b5031476c6e0ed7d0e8a36c7d72e5e583d90a850cfcf9cd328", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:19Z", "updated": "2026-03-13T11:04:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "udp-secgrp"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:32,028 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655 0.801s
2026-03-13 11:04:32,029 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:31 GMT', 'server': 'Apache', 'content-length': '1475', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-1ad1abc7-1810-4f36-b85b-4b22242d57a5', 'x-compute-request-id': 'req-1ad1abc7-1810-4f36-b85b-4b22242d57a5', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655'}
Body: b'{"server": {"id": "f1965a36-e956-4dec-b2fb-2bf4aaba6655", "name": "tempest-server-test-694306128", "status": "BUILD", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "5c78c5b5031476c6e0ed7d0e8a36c7d72e5e583d90a850cfcf9cd328", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:19Z", "updated": "2026-03-13T11:04:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "udp-secgrp"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:33,765 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655 0.732s
2026-03-13 11:04:33,765 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:33 GMT', 'server': 'Apache', 'content-length': '1475', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-8c052da6-bd3b-4f5a-b71f-090adb59c290', 'x-compute-request-id': 'req-8c052da6-bd3b-4f5a-b71f-090adb59c290', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655'}
Body: b'{"server": {"id": "f1965a36-e956-4dec-b2fb-2bf4aaba6655", "name": "tempest-server-test-694306128", "status": "BUILD", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "5c78c5b5031476c6e0ed7d0e8a36c7d72e5e583d90a850cfcf9cd328", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:19Z", "updated": "2026-03-13T11:04:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "udp-secgrp"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:35,634 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655 0.864s
2026-03-13 11:04:35,634 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:34 GMT', 'server': 'Apache', 'content-length': '1475', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-49f6ac92-e108-4022-aa71-99655054652f', 'x-compute-request-id': 'req-49f6ac92-e108-4022-aa71-99655054652f', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655'}
Body: b'{"server": {"id": "f1965a36-e956-4dec-b2fb-2bf4aaba6655", "name": "tempest-server-test-694306128", "status": "BUILD", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "5c78c5b5031476c6e0ed7d0e8a36c7d72e5e583d90a850cfcf9cd328", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:19Z", "updated": "2026-03-13T11:04:22Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "udp-secgrp"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:37,620 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655 0.981s
2026-03-13 11:04:37,621 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:36 GMT', 'server': 'Apache', 'content-length': '1647', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-623f0b26-b2f2-4902-ab8f-699ac32f0efe', 'x-compute-request-id': 'req-623f0b26-b2f2-4902-ab8f-699ac32f0efe', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655'}
Body: b'{"server": {"id": "f1965a36-e956-4dec-b2fb-2bf4aaba6655", "name": "tempest-server-test-694306128", "status": "ACTIVE", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "5c78c5b5031476c6e0ed7d0e8a36c7d72e5e583d90a850cfcf9cd328", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:19Z", "updated": "2026-03-13T11:04:35Z", "addresses": {"tempest-test-network--1887024904": [{"version": 4, "addr": "10.100.0.12", "OS-EXT-IPS:type": "fixed", "OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:56:4d:f6"}]}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "True", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": "2026-03-13T11:04:35.000000", "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "udp-secgrp"}], "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-STS:power_state": 1, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:37,627 39 INFO [tempest.common.waiters] State transition "BUILD/spawning" ==> "ACTIVE/None" after 16 second wait
2026-03-13 11:04:37,772 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655/action 0.144s
2026-03-13 11:04:37,773 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:37 GMT', 'server': 'Apache', 'content-length': '16145', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-d9c49253-b6dd-4937-b3dd-2617ac8cd5a1', 'x-compute-request-id': 'req-d9c49253-b6dd-4937-b3dd-2617ac8cd5a1', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.15.0-71-generic (buildd@lcy02-amd64-044) (gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #78-Ubuntu SMP Tue Apr 18 09:00:29 UTC 2023 (Ubuntu 5.15.0-71.78-generic 5.15.92)\\n[ 0.000000] Command line: LABEL=cirros-rootfs ro console=tty1 console=ttyS0\\n[ 0.000000] KERNEL supported cpus:\\n[ 0.000000] Intel GenuineIntel\\n[ 0.000000] AMD AuthenticAMD\\n[ 0.000000] Hygon HygonGenuine\\n[ 0.000000] Centaur CentaurHauls\\n[ 0.000000] zhaoxin Shanghai \\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: \'x87 floating point registers\'\\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: \'SSE registers\'\\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: \'AVX registers\'\\n[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256\\n[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using \'standard\' format.\\n[ 0.000000] signal: max sigframe size: 1776\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000007fdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x0000000007fdb000-0x0000000007ffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: cpu 0, msr 3a01001, primary cpu clock\\n[ 0.000001] kvm-clock: using sched offset of 1779839832 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000007] tsc: Detected 2799.998 MHz processor\\n[ 0.001202] last_pfn = 0x7fdb max_arch_pfn = 0x400000000\\n[ 0.001576] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.004398] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.004432] Using GB pages for direct mapping\\n[ 0.004655] RAMDISK: [mem 0x07741000-0x07fcafff]\\n[ 0.004660] ACPI: Early table checksum verification disabled\\n[ 0.004665] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.004670] ACPI: RSDT 0x0000000007FE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004677] ACPI: FACP 0x0000000007FE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004684] ACPI: DSDT 0x0000000007FE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004688] ACPI: FACS 0x0000000007FE0000 000040\\n[ 0.004691] ACPI: APIC 0x0000000007FE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004696] ACPI: MCFG 0x0000000007FE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004701] ACPI: WAET 0x0000000007FE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004705] ACPI: Reserving FACP table memory at [mem 0x7fe3f94-0x7fe4087]\\n[ 0.004707] ACPI: Reserving DSDT table memory at [mem 0x7fe0040-0x7fe3f93]\\n[ 0.004709] ACPI: Reserving FACS table memory at [mem 0x7fe0000-0x7fe003f]\\n[ 0.004710] ACPI: Reserving APIC table memory at [mem 0x7fe4088-0x7fe40ff]\\n[ 0.004712] ACPI: Reserving MCFG table memory at [mem 0x7fe4100-0x7fe413b]\\n[ 0.004713] ACPI: Reserving WAET table memory at [mem 0x7fe413c-0x7fe4163]\\n[ 0.005946] No NUMA configuration fo
2026-03-13 11:04:43,069 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655/action 0.289s
2026-03-13 11:04:43,069 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:42 GMT', 'server': 'Apache', 'content-length': '48081', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-c279c6a3-c7df-465e-ab64-016fa138f437', 'x-compute-request-id': 'req-c279c6a3-c7df-465e-ab64-016fa138f437', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.15.0-71-generic (buildd@lcy02-amd64-044) (gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #78-Ubuntu SMP Tue Apr 18 09:00:29 UTC 2023 (Ubuntu 5.15.0-71.78-generic 5.15.92)\\n[ 0.000000] Command line: LABEL=cirros-rootfs ro console=tty1 console=ttyS0\\n[ 0.000000] KERNEL supported cpus:\\n[ 0.000000] Intel GenuineIntel\\n[ 0.000000] AMD AuthenticAMD\\n[ 0.000000] Hygon HygonGenuine\\n[ 0.000000] Centaur CentaurHauls\\n[ 0.000000] zhaoxin Shanghai \\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: \'x87 floating point registers\'\\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: \'SSE registers\'\\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: \'AVX registers\'\\n[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256\\n[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using \'standard\' format.\\n[ 0.000000] signal: max sigframe size: 1776\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000007fdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x0000000007fdb000-0x0000000007ffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: cpu 0, msr 3a01001, primary cpu clock\\n[ 0.000001] kvm-clock: using sched offset of 1779839832 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000007] tsc: Detected 2799.998 MHz processor\\n[ 0.001202] last_pfn = 0x7fdb max_arch_pfn = 0x400000000\\n[ 0.001576] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.004398] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.004432] Using GB pages for direct mapping\\n[ 0.004655] RAMDISK: [mem 0x07741000-0x07fcafff]\\n[ 0.004660] ACPI: Early table checksum verification disabled\\n[ 0.004665] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.004670] ACPI: RSDT 0x0000000007FE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004677] ACPI: FACP 0x0000000007FE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004684] ACPI: DSDT 0x0000000007FE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004688] ACPI: FACS 0x0000000007FE0000 000040\\n[ 0.004691] ACPI: APIC 0x0000000007FE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004696] ACPI: MCFG 0x0000000007FE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004701] ACPI: WAET 0x0000000007FE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004705] ACPI: Reserving FACP table memory at [mem 0x7fe3f94-0x7fe4087]\\n[ 0.004707] ACPI: Reserving DSDT table memory at [mem 0x7fe0040-0x7fe3f93]\\n[ 0.004709] ACPI: Reserving FACS table memory at [mem 0x7fe0000-0x7fe003f]\\n[ 0.004710] ACPI: Reserving APIC table memory at [mem 0x7fe4088-0x7fe40ff]\\n[ 0.004712] ACPI: Reserving MCFG table memory at [mem 0x7fe4100-0x7fe413b]\\n[ 0.004713] ACPI: Reserving WAET table memory at [mem 0x7fe413c-0x7fe4163]\\n[ 0.005946] No NUMA configuration fo
2026-03-13 11:04:48,982 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655/action 0.906s
2026-03-13 11:04:48,983 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:48 GMT', 'server': 'Apache', 'content-length': '75383', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-8cec7dbf-f78f-4680-849f-cd7962521fd1', 'x-compute-request-id': 'req-8cec7dbf-f78f-4680-849f-cd7962521fd1', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.15.0-71-generic (buildd@lcy02-amd64-044) (gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #78-Ubuntu SMP Tue Apr 18 09:00:29 UTC 2023 (Ubuntu 5.15.0-71.78-generic 5.15.92)\\n[ 0.000000] Command line: LABEL=cirros-rootfs ro console=tty1 console=ttyS0\\n[ 0.000000] KERNEL supported cpus:\\n[ 0.000000] Intel GenuineIntel\\n[ 0.000000] AMD AuthenticAMD\\n[ 0.000000] Hygon HygonGenuine\\n[ 0.000000] Centaur CentaurHauls\\n[ 0.000000] zhaoxin Shanghai \\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: \'x87 floating point registers\'\\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: \'SSE registers\'\\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: \'AVX registers\'\\n[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256\\n[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using \'standard\' format.\\n[ 0.000000] signal: max sigframe size: 1776\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000007fdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x0000000007fdb000-0x0000000007ffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: cpu 0, msr 3a01001, primary cpu clock\\n[ 0.000001] kvm-clock: using sched offset of 1779839832 cycles\\n[ 0.000003] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000007] tsc: Detected 2799.998 MHz processor\\n[ 0.001202] last_pfn = 0x7fdb max_arch_pfn = 0x400000000\\n[ 0.001576] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.004398] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.004432] Using GB pages for direct mapping\\n[ 0.004655] RAMDISK: [mem 0x07741000-0x07fcafff]\\n[ 0.004660] ACPI: Early table checksum verification disabled\\n[ 0.004665] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.004670] ACPI: RSDT 0x0000000007FE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004677] ACPI: FACP 0x0000000007FE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004684] ACPI: DSDT 0x0000000007FE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004688] ACPI: FACS 0x0000000007FE0000 000040\\n[ 0.004691] ACPI: APIC 0x0000000007FE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004696] ACPI: MCFG 0x0000000007FE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004701] ACPI: WAET 0x0000000007FE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004705] ACPI: Reserving FACP table memory at [mem 0x7fe3f94-0x7fe4087]\\n[ 0.004707] ACPI: Reserving DSDT table memory at [mem 0x7fe0040-0x7fe3f93]\\n[ 0.004709] ACPI: Reserving FACS table memory at [mem 0x7fe0000-0x7fe003f]\\n[ 0.004710] ACPI: Reserving APIC table memory at [mem 0x7fe4088-0x7fe40ff]\\n[ 0.004712] ACPI: Reserving MCFG table memory at [mem 0x7fe4100-0x7fe413b]\\n[ 0.004713] ACPI: Reserving WAET table memory at [mem 0x7fe413c-0x7fe4163]\\n[ 0.005946] No NUMA configuration fo
2026-03-13 11:04:52,002 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 202 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers 3.015s
2026-03-13 11:04:52,003 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"server": {"flavorRef": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "imageRef": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "key_name": "tempest-keypair-test-1225746857", "networks": [{"uuid": "8d28fb07-e142-4b37-9745-2a3753e1beda"}], "security_groups": [{"name": "udp-secgrp"}], "name": "tempest-server-test-342444120"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:49 GMT', 'server': 'Apache', 'content-length': '423', 'location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-cde817ae-5032-45bc-9a5d-cce861597aae', 'x-compute-request-id': 'req-cde817ae-5032-45bc-9a5d-cce861597aae', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '202', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers'}
Body: b'{"server": {"id": "cb327811-9bd1-416b-82dd-fad804cbaa16", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}], "OS-DCF:diskConfig": "MANUAL", "security_groups": [{"name": "udp-secgrp"}], "adminPass": "UVgvf7x47FhU"}}'
2026-03-13 11:04:52,650 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16 0.636s
2026-03-13 11:04:52,651 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:52 GMT', 'server': 'Apache', 'content-length': '1372', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-d14574ce-3cce-4f35-b4e8-87faf4a27f65', 'x-compute-request-id': 'req-d14574ce-3cce-4f35-b4e8-87faf4a27f65', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16'}
Body: b'{"server": {"id": "cb327811-9bd1-416b-82dd-fad804cbaa16", "name": "tempest-server-test-342444120", "status": "BUILD", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:51Z", "updated": "2026-03-13T11:04:52Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "", "config_drive": "", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "OS-EXT-STS:task_state": "scheduling", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:54,134 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16 0.477s
2026-03-13 11:04:54,134 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:53 GMT', 'server': 'Apache', 'content-length': '1442', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-2a596fb5-8a3a-4ed3-a3c3-87c8f34178dd', 'x-compute-request-id': 'req-2a596fb5-8a3a-4ed3-a3c3-87c8f34178dd', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16'}
Body: b'{"server": {"id": "cb327811-9bd1-416b-82dd-fad804cbaa16", "name": "tempest-server-test-342444120", "status": "BUILD", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "99752bdada841bba7d3b1160c88331b974f5049bd88ab60c0181e23a", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:51Z", "updated": "2026-03-13T11:04:53Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "OS-EXT-STS:task_state": "block_device_mapping", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:54,145 39 INFO [tempest.common.waiters] State transition "BUILD/scheduling" ==> "BUILD/block_device_mapping" after 2 second wait
2026-03-13 11:04:56,393 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16 1.219s
2026-03-13 11:04:56,395 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:55 GMT', 'server': 'Apache', 'content-length': '1430', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-9a71bd04-deb7-4a39-8fc4-cfb61b07e6e8', 'x-compute-request-id': 'req-9a71bd04-deb7-4a39-8fc4-cfb61b07e6e8', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16'}
Body: b'{"server": {"id": "cb327811-9bd1-416b-82dd-fad804cbaa16", "name": "tempest-server-test-342444120", "status": "BUILD", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "99752bdada841bba7d3b1160c88331b974f5049bd88ab60c0181e23a", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:51Z", "updated": "2026-03-13T11:04:53Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:04:56,398 39 INFO [tempest.common.waiters] State transition "BUILD/block_device_mapping" ==> "BUILD/spawning" after 4 second wait
2026-03-13 11:04:59,130 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16 1.730s
2026-03-13 11:04:59,131 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:04:57 GMT', 'server': 'Apache', 'content-length': '1475', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-c6a1b294-6c8c-4014-aa55-bc831b82cd30', 'x-compute-request-id': 'req-c6a1b294-6c8c-4014-aa55-bc831b82cd30', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16'}
Body: b'{"server": {"id": "cb327811-9bd1-416b-82dd-fad804cbaa16", "name": "tempest-server-test-342444120", "status": "BUILD", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "99752bdada841bba7d3b1160c88331b974f5049bd88ab60c0181e23a", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:51Z", "updated": "2026-03-13T11:04:53Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "udp-secgrp"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:05:03,034 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16 2.894s
2026-03-13 11:05:03,034 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:00 GMT', 'server': 'Apache', 'content-length': '1475', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-71f0ddad-79d6-44b0-a325-52dc4d44a857', 'x-compute-request-id': 'req-71f0ddad-79d6-44b0-a325-52dc4d44a857', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16'}
Body: b'{"server": {"id": "cb327811-9bd1-416b-82dd-fad804cbaa16", "name": "tempest-server-test-342444120", "status": "BUILD", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "99752bdada841bba7d3b1160c88331b974f5049bd88ab60c0181e23a", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:51Z", "updated": "2026-03-13T11:04:53Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "udp-secgrp"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:05:06,804 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16 2.764s
2026-03-13 11:05:06,805 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:04 GMT', 'server': 'Apache', 'content-length': '1475', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-83514362-6baf-4755-b130-ffe5ab3e07f1', 'x-compute-request-id': 'req-83514362-6baf-4755-b130-ffe5ab3e07f1', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16'}
Body: b'{"server": {"id": "cb327811-9bd1-416b-82dd-fad804cbaa16", "name": "tempest-server-test-342444120", "status": "BUILD", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "99752bdada841bba7d3b1160c88331b974f5049bd88ab60c0181e23a", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:51Z", "updated": "2026-03-13T11:04:53Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "udp-secgrp"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:05:09,826 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16 2.008s
2026-03-13 11:05:09,826 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:07 GMT', 'server': 'Apache', 'content-length': '1475', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-5b09aad4-d4b0-423a-8f0e-678f049b68fb', 'x-compute-request-id': 'req-5b09aad4-d4b0-423a-8f0e-678f049b68fb', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16'}
Body: b'{"server": {"id": "cb327811-9bd1-416b-82dd-fad804cbaa16", "name": "tempest-server-test-342444120", "status": "BUILD", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "99752bdada841bba7d3b1160c88331b974f5049bd88ab60c0181e23a", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:51Z", "updated": "2026-03-13T11:04:53Z", "addresses": {}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": null, "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "udp-secgrp"}], "OS-EXT-STS:task_state": "spawning", "OS-EXT-STS:vm_state": "building", "OS-EXT-STS:power_state": 0, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:05:12,248 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16 1.419s
2026-03-13 11:05:12,309 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:10 GMT', 'server': 'Apache', 'content-length': '1647', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-93443cc8-4445-445f-8cb2-9c64af75b7c3', 'x-compute-request-id': 'req-93443cc8-4445-445f-8cb2-9c64af75b7c3', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16'}
Body: b'{"server": {"id": "cb327811-9bd1-416b-82dd-fad804cbaa16", "name": "tempest-server-test-342444120", "status": "ACTIVE", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "user_id": "a46f286c689645878db2f173fa4f85be", "metadata": {}, "hostId": "99752bdada841bba7d3b1160c88331b974f5049bd88ab60c0181e23a", "image": {"id": "35d1dec7-1787-4313-83af-9fa95a54c0e8", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/images/35d1dec7-1787-4313-83af-9fa95a54c0e8"}]}, "flavor": {"id": "11756433-da5b-4f1f-86b2-b98f3a6b6274", "links": [{"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/flavors/11756433-da5b-4f1f-86b2-b98f3a6b6274"}]}, "created": "2026-03-13T11:04:51Z", "updated": "2026-03-13T11:05:09Z", "addresses": {"tempest-test-network--1887024904": [{"version": 4, "addr": "10.100.0.14", "OS-EXT-IPS:type": "fixed", "OS-EXT-IPS-MAC:mac_addr": "fa:16:3e:29:c0:b5"}]}, "accessIPv4": "", "accessIPv6": "", "links": [{"rel": "self", "href": "https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}, {"rel": "bookmark", "href": "https://nova-public-openstack.apps-crc.testing/servers/cb327811-9bd1-416b-82dd-fad804cbaa16"}], "OS-DCF:diskConfig": "MANUAL", "progress": 0, "OS-EXT-AZ:availability_zone": "nova", "config_drive": "True", "key_name": "tempest-keypair-test-1225746857", "OS-SRV-USG:launched_at": "2026-03-13T11:05:08.000000", "OS-SRV-USG:terminated_at": null, "security_groups": [{"name": "udp-secgrp"}], "OS-EXT-STS:task_state": null, "OS-EXT-STS:vm_state": "active", "OS-EXT-STS:power_state": 1, "os-extended-volumes:volumes_attached": []}}'
2026-03-13 11:05:12,326 39 INFO [tempest.common.waiters] State transition "BUILD/spawning" ==> "ACTIVE/None" after 20 second wait
2026-03-13 11:05:12,671 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16/action 0.344s
2026-03-13 11:05:12,672 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:12 GMT', 'server': 'Apache', 'content-length': '26067', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-92959c2c-9e3e-48f8-bcf7-261def697b18', 'x-compute-request-id': 'req-92959c2c-9e3e-48f8-bcf7-261def697b18', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.15.0-71-generic (buildd@lcy02-amd64-044) (gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #78-Ubuntu SMP Tue Apr 18 09:00:29 UTC 2023 (Ubuntu 5.15.0-71.78-generic 5.15.92)\\n[ 0.000000] Command line: LABEL=cirros-rootfs ro console=tty1 console=ttyS0\\n[ 0.000000] KERNEL supported cpus:\\n[ 0.000000] Intel GenuineIntel\\n[ 0.000000] AMD AuthenticAMD\\n[ 0.000000] Hygon HygonGenuine\\n[ 0.000000] Centaur CentaurHauls\\n[ 0.000000] zhaoxin Shanghai \\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: \'x87 floating point registers\'\\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: \'SSE registers\'\\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: \'AVX registers\'\\n[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256\\n[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using \'standard\' format.\\n[ 0.000000] signal: max sigframe size: 1776\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000007fdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x0000000007fdb000-0x0000000007ffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: cpu 0, msr 3a01001, primary cpu clock\\n[ 0.000002] kvm-clock: using sched offset of 1288070209 cycles\\n[ 0.000004] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000008] tsc: Detected 2800.000 MHz processor\\n[ 0.001218] last_pfn = 0x7fdb max_arch_pfn = 0x400000000\\n[ 0.001571] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.004379] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.004417] Using GB pages for direct mapping\\n[ 0.004634] RAMDISK: [mem 0x07741000-0x07fcafff]\\n[ 0.004639] ACPI: Early table checksum verification disabled\\n[ 0.004644] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.004649] ACPI: RSDT 0x0000000007FE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004656] ACPI: FACP 0x0000000007FE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004663] ACPI: DSDT 0x0000000007FE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004667] ACPI: FACS 0x0000000007FE0000 000040\\n[ 0.004671] ACPI: APIC 0x0000000007FE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004675] ACPI: MCFG 0x0000000007FE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004678] ACPI: WAET 0x0000000007FE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004682] ACPI: Reserving FACP table memory at [mem 0x7fe3f94-0x7fe4087]\\n[ 0.004684] ACPI: Reserving DSDT table memory at [mem 0x7fe0040-0x7fe3f93]\\n[ 0.004685] ACPI: Reserving FACS table memory at [mem 0x7fe0000-0x7fe003f]\\n[ 0.004687] ACPI: Reserving APIC table memory at [mem 0x7fe4088-0x7fe40ff]\\n[ 0.004688] ACPI: Reserving MCFG table memory at [mem 0x7fe4100-0x7fe413b]\\n[ 0.004689] ACPI: Reserving WAET table memory at [mem 0x7fe413c-0x7fe4163]\\n[ 0.005850] No NUMA configuration fo
2026-03-13 11:05:18,992 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16/action 1.313s
2026-03-13 11:05:19,006 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:17 GMT', 'server': 'Apache', 'content-length': '69481', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-6cb915e2-2c26-45a1-8e40-3b5610021edf', 'x-compute-request-id': 'req-6cb915e2-2c26-45a1-8e40-3b5610021edf', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.15.0-71-generic (buildd@lcy02-amd64-044) (gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #78-Ubuntu SMP Tue Apr 18 09:00:29 UTC 2023 (Ubuntu 5.15.0-71.78-generic 5.15.92)\\n[ 0.000000] Command line: LABEL=cirros-rootfs ro console=tty1 console=ttyS0\\n[ 0.000000] KERNEL supported cpus:\\n[ 0.000000] Intel GenuineIntel\\n[ 0.000000] AMD AuthenticAMD\\n[ 0.000000] Hygon HygonGenuine\\n[ 0.000000] Centaur CentaurHauls\\n[ 0.000000] zhaoxin Shanghai \\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: \'x87 floating point registers\'\\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: \'SSE registers\'\\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: \'AVX registers\'\\n[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256\\n[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using \'standard\' format.\\n[ 0.000000] signal: max sigframe size: 1776\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000007fdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x0000000007fdb000-0x0000000007ffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: cpu 0, msr 3a01001, primary cpu clock\\n[ 0.000002] kvm-clock: using sched offset of 1288070209 cycles\\n[ 0.000004] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000008] tsc: Detected 2800.000 MHz processor\\n[ 0.001218] last_pfn = 0x7fdb max_arch_pfn = 0x400000000\\n[ 0.001571] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.004379] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.004417] Using GB pages for direct mapping\\n[ 0.004634] RAMDISK: [mem 0x07741000-0x07fcafff]\\n[ 0.004639] ACPI: Early table checksum verification disabled\\n[ 0.004644] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.004649] ACPI: RSDT 0x0000000007FE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004656] ACPI: FACP 0x0000000007FE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004663] ACPI: DSDT 0x0000000007FE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004667] ACPI: FACS 0x0000000007FE0000 000040\\n[ 0.004671] ACPI: APIC 0x0000000007FE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004675] ACPI: MCFG 0x0000000007FE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004678] ACPI: WAET 0x0000000007FE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004682] ACPI: Reserving FACP table memory at [mem 0x7fe3f94-0x7fe4087]\\n[ 0.004684] ACPI: Reserving DSDT table memory at [mem 0x7fe0040-0x7fe3f93]\\n[ 0.004685] ACPI: Reserving FACS table memory at [mem 0x7fe0000-0x7fe003f]\\n[ 0.004687] ACPI: Reserving APIC table memory at [mem 0x7fe4088-0x7fe40ff]\\n[ 0.004688] ACPI: Reserving MCFG table memory at [mem 0x7fe4100-0x7fe413b]\\n[ 0.004689] ACPI: Reserving WAET table memory at [mem 0x7fe413c-0x7fe4163]\\n[ 0.005850] No NUMA configuration fo
2026-03-13 11:05:24,339 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 POST https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16/action 0.324s
2026-03-13 11:05:24,340 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"os-getConsoleOutput": {}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:24 GMT', 'server': 'Apache', 'content-length': '75089', 'openstack-api-version': 'compute 2.1', 'x-openstack-nova-api-version': '2.1', 'vary': 'OpenStack-API-Version,X-OpenStack-Nova-API-Version', 'x-openstack-request-id': 'req-bfe215be-7bac-4cfb-9058-7e8d9f96ecf9', 'x-compute-request-id': 'req-bfe215be-7bac-4cfb-9058-7e8d9f96ecf9', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16/action'}
Body: b'{"output": "[ 0.000000] Linux version 5.15.0-71-generic (buildd@lcy02-amd64-044) (gcc (Ubuntu 11.3.0-1ubuntu1~22.04.1) 11.3.0, GNU ld (GNU Binutils for Ubuntu) 2.38) #78-Ubuntu SMP Tue Apr 18 09:00:29 UTC 2023 (Ubuntu 5.15.0-71.78-generic 5.15.92)\\n[ 0.000000] Command line: LABEL=cirros-rootfs ro console=tty1 console=ttyS0\\n[ 0.000000] KERNEL supported cpus:\\n[ 0.000000] Intel GenuineIntel\\n[ 0.000000] AMD AuthenticAMD\\n[ 0.000000] Hygon HygonGenuine\\n[ 0.000000] Centaur CentaurHauls\\n[ 0.000000] zhaoxin Shanghai \\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x001: \'x87 floating point registers\'\\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x002: \'SSE registers\'\\n[ 0.000000] x86/fpu: Supporting XSAVE feature 0x004: \'AVX registers\'\\n[ 0.000000] x86/fpu: xstate_offset[2]: 576, xstate_sizes[2]: 256\\n[ 0.000000] x86/fpu: Enabled xstate features 0x7, context size is 832 bytes, using \'standard\' format.\\n[ 0.000000] signal: max sigframe size: 1776\\n[ 0.000000] BIOS-provided physical RAM map:\\n[ 0.000000] BIOS-e820: [mem 0x0000000000000000-0x000000000009fbff] usable\\n[ 0.000000] BIOS-e820: [mem 0x000000000009fc00-0x000000000009ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000000f0000-0x00000000000fffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x0000000000100000-0x0000000007fdafff] usable\\n[ 0.000000] BIOS-e820: [mem 0x0000000007fdb000-0x0000000007ffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000b0000000-0x00000000bfffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fed1c000-0x00000000fed1ffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000feffc000-0x00000000feffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x00000000fffc0000-0x00000000ffffffff] reserved\\n[ 0.000000] BIOS-e820: [mem 0x000000fd00000000-0x000000ffffffffff] reserved\\n[ 0.000000] NX (Execute Disable) protection: active\\n[ 0.000000] SMBIOS 2.8 present.\\n[ 0.000000] DMI: RDO OpenStack Compute/RHEL, BIOS 1.16.3-5.el9 11/05/2023\\n[ 0.000000] Hypervisor detected: KVM\\n[ 0.000000] kvm-clock: Using msrs 4b564d01 and 4b564d00\\n[ 0.000000] kvm-clock: cpu 0, msr 3a01001, primary cpu clock\\n[ 0.000002] kvm-clock: using sched offset of 1288070209 cycles\\n[ 0.000004] clocksource: kvm-clock: mask: 0xffffffffffffffff max_cycles: 0x1cd42e4dffb, max_idle_ns: 881590591483 ns\\n[ 0.000008] tsc: Detected 2800.000 MHz processor\\n[ 0.001218] last_pfn = 0x7fdb max_arch_pfn = 0x400000000\\n[ 0.001571] x86/PAT: Configuration [0-7]: WB WC UC- UC WB WP UC- WT \\n[ 0.004379] found SMP MP-table at [mem 0x000f5480-0x000f548f]\\n[ 0.004417] Using GB pages for direct mapping\\n[ 0.004634] RAMDISK: [mem 0x07741000-0x07fcafff]\\n[ 0.004639] ACPI: Early table checksum verification disabled\\n[ 0.004644] ACPI: RSDP 0x00000000000F5210 000014 (v00 BOCHS )\\n[ 0.004649] ACPI: RSDT 0x0000000007FE4164 000034 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004656] ACPI: FACP 0x0000000007FE3F94 0000F4 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004663] ACPI: DSDT 0x0000000007FE0040 003F54 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004667] ACPI: FACS 0x0000000007FE0000 000040\\n[ 0.004671] ACPI: APIC 0x0000000007FE4088 000078 (v03 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004675] ACPI: MCFG 0x0000000007FE4100 00003C (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004678] ACPI: WAET 0x0000000007FE413C 000028 (v01 BOCHS BXPC 00000001 BXPC 00000001)\\n[ 0.004682] ACPI: Reserving FACP table memory at [mem 0x7fe3f94-0x7fe4087]\\n[ 0.004684] ACPI: Reserving DSDT table memory at [mem 0x7fe0040-0x7fe3f93]\\n[ 0.004685] ACPI: Reserving FACS table memory at [mem 0x7fe0000-0x7fe003f]\\n[ 0.004687] ACPI: Reserving APIC table memory at [mem 0x7fe4088-0x7fe40ff]\\n[ 0.004688] ACPI: Reserving MCFG table memory at [mem 0x7fe4100-0x7fe413b]\\n[ 0.004689] ACPI: Reserving WAET table memory at [mem 0x7fe413c-0x7fe4163]\\n[ 0.005850] No NUMA configuration fo
2026-03-13 11:05:24,572 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://neutron-public-openstack.apps-crc.testing/v2.0/ports?network_id=8d28fb07-e142-4b37-9745-2a3753e1beda&device_id=f1965a36-e956-4dec-b2fb-2bf4aaba6655 0.231s
2026-03-13 11:05:24,572 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:24 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '1035', 'x-openstack-request-id': 'req-ed7bd332-0ea4-4a68-b1b5-a28a96c1be53', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/ports?network_id=8d28fb07-e142-4b37-9745-2a3753e1beda&device_id=f1965a36-e956-4dec-b2fb-2bf4aaba6655'}
Body: b'{"ports":[{"id":"d17e6eb6-5a2f-4d9b-be5c-057511786100","name":"","network_id":"8d28fb07-e142-4b37-9745-2a3753e1beda","tenant_id":"d18e64bb8b59475aa7e7165cba9029c9","mac_address":"fa:16:3e:56:4d:f6","admin_state_up":true,"status":"ACTIVE","device_id":"f1965a36-e956-4dec-b2fb-2bf4aaba6655","device_owner":"compute:nova","fixed_ips":[{"subnet_id":"81673213-66d2-45f9-98f5-97905befe388","ip_address":"10.100.0.12"}],"allowed_address_pairs":[],"extra_dhcp_opts":[],"security_groups":["fc595511-a33f-49ce-9e92-b343b7486d96"],"description":"","binding:vnic_type":"normal","qos_policy_id":null,"qos_network_policy_id":null,"port_security_enabled":true,"dns_name":"tempest-server-test-694306128","dns_assignment":[{"ip_address":"10.100.0.12","hostname":"tempest-server-test-694306128","fqdn":"tempest-server-test-694306128.openstackgate.local."}],"dns_domain":"","ip_allocation":"immediate","tags":[],"created_at":"2026-03-13T11:04:24Z","updated_at":"2026-03-13T11:04:34Z","revision_number":4,"project_id":"d18e64bb8b59475aa7e7165cba9029c9"}]}'
2026-03-13 11:05:27,952 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/floatingips 3.320s
2026-03-13 11:05:27,952 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"floatingip": {"floating_network_id": "d90d10b6-a44a-47b5-bcd6-630085d51c8e", "port_id": "d17e6eb6-5a2f-4d9b-be5c-057511786100"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:27 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '882', 'x-openstack-request-id': 'req-34407b0d-32e5-4aa7-ab5c-8ae4e27d615a', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/floatingips'}
Body: b'{"floatingip": {"id": "37bd3d2d-eff6-4da1-af65-c713a8943781", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "floating_ip_address": "192.168.122.197", "floating_network_id": "d90d10b6-a44a-47b5-bcd6-630085d51c8e", "router_id": "d581a84c-f34b-4e11-a5be-5d360699a254", "port_id": "d17e6eb6-5a2f-4d9b-be5c-057511786100", "fixed_ip_address": "10.100.0.12", "status": "DOWN", "project_id": "d18e64bb8b59475aa7e7165cba9029c9", "description": "", "qos_policy_id": null, "port_details": {"name": "", "network_id": "8d28fb07-e142-4b37-9745-2a3753e1beda", "mac_address": "fa:16:3e:56:4d:f6", "admin_state_up": true, "status": "ACTIVE", "device_id": "f1965a36-e956-4dec-b2fb-2bf4aaba6655", "device_owner": "compute:nova"}, "dns_domain": "", "dns_name": "", "port_forwardings": [], "tags": [], "created_at": "2026-03-13T11:05:25Z", "updated_at": "2026-03-13T11:05:25Z", "revision_number": 0}}'
2026-03-13 11:05:28,378 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 200 GET https://neutron-public-openstack.apps-crc.testing/v2.0/ports?network_id=8d28fb07-e142-4b37-9745-2a3753e1beda&device_id=cb327811-9bd1-416b-82dd-fad804cbaa16 0.423s
2026-03-13 11:05:28,378 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:28 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '1035', 'x-openstack-request-id': 'req-cd83d854-36cb-46a7-ad78-7bc3f56c57f2', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '200', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/ports?network_id=8d28fb07-e142-4b37-9745-2a3753e1beda&device_id=cb327811-9bd1-416b-82dd-fad804cbaa16'}
Body: b'{"ports":[{"id":"e1fe8f4f-0faa-4e96-976d-a4e2a30f7222","name":"","network_id":"8d28fb07-e142-4b37-9745-2a3753e1beda","tenant_id":"d18e64bb8b59475aa7e7165cba9029c9","mac_address":"fa:16:3e:29:c0:b5","admin_state_up":true,"status":"ACTIVE","device_id":"cb327811-9bd1-416b-82dd-fad804cbaa16","device_owner":"compute:nova","fixed_ips":[{"subnet_id":"81673213-66d2-45f9-98f5-97905befe388","ip_address":"10.100.0.14"}],"allowed_address_pairs":[],"extra_dhcp_opts":[],"security_groups":["fc595511-a33f-49ce-9e92-b343b7486d96"],"description":"","binding:vnic_type":"normal","qos_policy_id":null,"qos_network_policy_id":null,"port_security_enabled":true,"dns_name":"tempest-server-test-342444120","dns_assignment":[{"ip_address":"10.100.0.14","hostname":"tempest-server-test-342444120","fqdn":"tempest-server-test-342444120.openstackgate.local."}],"dns_domain":"","ip_allocation":"immediate","tags":[],"created_at":"2026-03-13T11:04:56Z","updated_at":"2026-03-13T11:05:07Z","revision_number":4,"project_id":"d18e64bb8b59475aa7e7165cba9029c9"}]}'
2026-03-13 11:05:32,827 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 201 POST https://neutron-public-openstack.apps-crc.testing/v2.0/floatingips 4.447s
2026-03-13 11:05:32,915 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"floatingip": {"floating_network_id": "d90d10b6-a44a-47b5-bcd6-630085d51c8e", "port_id": "e1fe8f4f-0faa-4e96-976d-a4e2a30f7222"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:05:32 GMT', 'server': 'Apache', 'content-type': 'application/json', 'content-length': '882', 'x-openstack-request-id': 'req-573f11ec-fb6c-4165-a9e1-37c0bca362ee', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '201', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/floatingips'}
Body: b'{"floatingip": {"id": "63cf67bc-7c16-406f-8c8e-a6671b89bc8b", "tenant_id": "d18e64bb8b59475aa7e7165cba9029c9", "floating_ip_address": "192.168.122.172", "floating_network_id": "d90d10b6-a44a-47b5-bcd6-630085d51c8e", "router_id": "d581a84c-f34b-4e11-a5be-5d360699a254", "port_id": "e1fe8f4f-0faa-4e96-976d-a4e2a30f7222", "fixed_ip_address": "10.100.0.14", "status": "DOWN", "project_id": "d18e64bb8b59475aa7e7165cba9029c9", "description": "", "qos_policy_id": null, "port_details": {"name": "", "network_id": "8d28fb07-e142-4b37-9745-2a3753e1beda", "mac_address": "fa:16:3e:29:c0:b5", "admin_state_up": true, "status": "ACTIVE", "device_id": "cb327811-9bd1-416b-82dd-fad804cbaa16", "device_owner": "compute:nova"}, "dns_domain": "", "dns_name": "", "port_forwardings": [], "tags": [], "created_at": "2026-03-13T11:05:29Z", "updated_at": "2026-03-13T11:05:29Z", "revision_number": 0}}'
2026-03-13 11:05:32,919 39 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.172:22' as 'cirros' with public key authentication
2026-03-13 11:05:33,091 39 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2020.81)
2026-03-13 11:05:33,167 39 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:05:33,168 39 INFO [tempest.lib.common.ssh] ssh connection to cirros@192.168.122.172 successfully created
2026-03-13 11:05:33,175 39 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.172:22' as 'cirros' with public key authentication
2026-03-13 11:05:33,177 39 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2020.81)
2026-03-13 11:05:33,290 39 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:05:33,294 39 INFO [tempest.lib.common.ssh] ssh connection to cirros@192.168.122.172 successfully created
2026-03-13 11:05:33,511 39 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.197:22' as 'cirros' with public key authentication
2026-03-13 11:05:33,520 39 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2020.81)
2026-03-13 11:05:33,630 39 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:05:33,630 39 INFO [tempest.lib.common.ssh] ssh connection to cirros@192.168.122.197 successfully created
2026-03-13 11:05:53,693 39 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.172:22' as 'cirros' with public key authentication
2026-03-13 11:05:53,708 39 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2020.81)
2026-03-13 11:05:54,097 39 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:05:54,098 39 INFO [tempest.lib.common.ssh] ssh connection to cirros@192.168.122.172 successfully created
2026-03-13 11:05:54,106 39 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.172:22' as 'cirros' with public key authentication
2026-03-13 11:05:54,109 39 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2020.81)
2026-03-13 11:05:54,219 39 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:05:54,220 39 INFO [tempest.lib.common.ssh] ssh connection to cirros@192.168.122.172 successfully created
2026-03-13 11:05:54,237 39 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.172:22' as 'cirros' with public key authentication
2026-03-13 11:05:54,239 39 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2020.81)
2026-03-13 11:05:54,347 39 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:05:54,347 39 INFO [tempest.lib.common.ssh] ssh connection to cirros@192.168.122.172 successfully created
2026-03-13 11:05:54,354 39 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.172:22' as 'cirros' with public key authentication
2026-03-13 11:05:54,357 39 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2020.81)
2026-03-13 11:05:54,467 39 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:05:54,468 39 INFO [tempest.lib.common.ssh] ssh connection to cirros@192.168.122.172 successfully created
2026-03-13 11:05:54,632 39 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.197:22' as 'cirros' with public key authentication
2026-03-13 11:05:54,637 39 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2020.81)
2026-03-13 11:05:54,772 39 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:05:54,774 39 INFO [tempest.lib.common.ssh] ssh connection to cirros@192.168.122.197 successfully created
2026-03-13 11:06:14,822 39 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.172:22' as 'cirros' with public key authentication
2026-03-13 11:06:14,855 39 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2020.81)
2026-03-13 11:06:14,959 39 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:06:14,964 39 INFO [tempest.lib.common.ssh] ssh connection to cirros@192.168.122.172 successfully created
2026-03-13 11:06:14,987 39 INFO [tempest.lib.common.ssh] Creating ssh connection to '192.168.122.172:22' as 'cirros' with public key authentication
2026-03-13 11:06:14,991 39 INFO [paramiko.transport] Connected (version 2.0, client dropbear_2020.81)
2026-03-13 11:06:15,163 39 INFO [paramiko.transport] Authentication (publickey) successful!
2026-03-13 11:06:15,164 39 INFO [tempest.lib.common.ssh] ssh connection to cirros@192.168.122.172 successfully created
2026-03-13 11:06:15,834 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp): 503 POST https://neutron-public-openstack.apps-crc.testing/v2.0/security-group-rules 0.643s
2026-03-13 11:06:15,835 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"security_group_rule": {"protocol": "udp", "port_range_min": 60000, "port_range_max": 60000, "remote_ip_prefix": "0.0.0.0/0", "direction": "ingress", "security_group_id": "fc595511-a33f-49ce-9e92-b343b7486d96"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:06:15 GMT', 'server': 'Apache', 'content-length': '218', 'content-type': 'application/json', 'x-openstack-request-id': 'req-30d7d249-1979-41b8-a59f-6f2d64f1cb42', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '503', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/security-group-rules'}
Body: b'{"message": "The server is currently unavailable. Please try again at a later time.<br /><br />\\nThe Keystone service is temporarily unavailable.\\n\\n", "code": "503 Service Unavailable", "title": "Service Unavailable"}'
2026-03-13 11:06:16,226 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:_run_cleanups): 503 DELETE https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16 0.344s
2026-03-13 11:06:16,226 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:06:15 GMT', 'server': 'Apache', 'content-length': '218', 'x-openstack-request-id': 'req-abd41721-ce0c-4681-a711-6297e41177bd', 'x-compute-request-id': 'req-abd41721-ce0c-4681-a711-6297e41177bd', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '503', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16'}
Body: b'{"message": "The server is currently unavailable. Please try again at a later time.<br /><br />\\nThe Keystone service is temporarily unavailable.\\n\\n", "code": "503 Service Unavailable", "title": "Service Unavailable"}'
2026-03-13 11:06:16,386 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:_run_cleanups): 503 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16 0.152s
2026-03-13 11:06:16,386 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:06:16 GMT', 'server': 'Apache', 'content-length': '218', 'x-openstack-request-id': 'req-1a225be8-a408-4c5a-a660-ef4fff0ea698', 'x-compute-request-id': 'req-1a225be8-a408-4c5a-a660-ef4fff0ea698', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '503', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/cb327811-9bd1-416b-82dd-fad804cbaa16'}
Body: b'{"message": "The server is currently unavailable. Please try again at a later time.<br /><br />\\nThe Keystone service is temporarily unavailable.\\n\\n", "code": "503 Service Unavailable", "title": "Service Unavailable"}'
2026-03-13 11:06:16,586 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:_run_cleanups): 503 DELETE https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655 0.196s
2026-03-13 11:06:16,587 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:06:16 GMT', 'server': 'Apache', 'content-length': '218', 'x-openstack-request-id': 'req-d6fa0aff-8259-4271-b7b8-2359bc218573', 'x-compute-request-id': 'req-d6fa0aff-8259-4271-b7b8-2359bc218573', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '503', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655'}
Body: b'{"message": "The server is currently unavailable. Please try again at a later time.<br /><br />\\nThe Keystone service is temporarily unavailable.\\n\\n", "code": "503 Service Unavailable", "title": "Service Unavailable"}'
2026-03-13 11:06:17,117 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:_run_cleanups): 503 GET https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655 0.530s
2026-03-13 11:06:17,118 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: None
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:06:16 GMT', 'server': 'Apache', 'content-length': '218', 'x-openstack-request-id': 'req-7df6e93e-f4c4-4345-97fe-95977c4d750c', 'x-compute-request-id': 'req-7df6e93e-f4c4-4345-97fe-95977c4d750c', 'content-type': 'application/json', 'set-cookie': '0dc6017b143850df8350099417b4ec9f=94dc96e81afed76e3a00442bee65244c; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '503', 'content-location': 'https://nova-public-openstack.apps-crc.testing/v2.1/servers/f1965a36-e956-4dec-b2fb-2bf4aaba6655'}
Body: b'{"message": "The server is currently unavailable. Please try again at a later time.<br /><br />\\nThe Keystone service is temporarily unavailable.\\n\\n", "code": "503 Service Unavailable", "title": "Service Unavailable"}'
}}}
traceback-1: {{{
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/lib/common/utils/test_utils.py", line 87, in call_and_ignore_notfound_exc
return func(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/servers_client.py", line 172, in delete_server
resp, body = self.delete("servers/%s" % server_id)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 359, in delete
return self.request('DELETE', url, extra_headers, headers, body)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/base_compute_client.py", line 47, in request
resp, resp_body = super(BaseComputeClient, self).request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 762, in request
self._error_checker(resp, resp_body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 946, in _error_checker
raise exceptions.UnexpectedResponseCode(str(resp.status),
tempest.lib.exceptions.UnexpectedResponseCode: Unexpected response code received
Details: 503
}}}
traceback-2: {{{
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/lib/common/utils/test_utils.py", line 87, in call_and_ignore_notfound_exc
return func(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/tempest/common/waiters.py", line 110, in wait_for_server_termination
body = client.show_server(server_id)['server']
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/servers_client.py", line 159, in show_server
resp, body = self.get("servers/%s" % server_id)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 342, in get
return self.request('GET', url, extra_headers, headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/base_compute_client.py", line 47, in request
resp, resp_body = super(BaseComputeClient, self).request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 762, in request
self._error_checker(resp, resp_body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 946, in _error_checker
raise exceptions.UnexpectedResponseCode(str(resp.status),
tempest.lib.exceptions.UnexpectedResponseCode: Unexpected response code received
Details: 503
}}}
traceback-3: {{{
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/lib/common/utils/test_utils.py", line 87, in call_and_ignore_notfound_exc
return func(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/servers_client.py", line 172, in delete_server
resp, body = self.delete("servers/%s" % server_id)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 359, in delete
return self.request('DELETE', url, extra_headers, headers, body)
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/base_compute_client.py", line 47, in request
resp, resp_body = super(BaseComputeClient, self).request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 762, in request
self._error_checker(resp, resp_body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 946, in _error_checker
raise exceptions.UnexpectedResponseCode(str(resp.status),
tempest.lib.exceptions.UnexpectedResponseCode: Unexpected response code received
Details: 503
}}}
traceback-4: {{{
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/tempest/lib/common/utils/test_utils.py", line 87, in call_and_ignore_notfound_exc
return func(*args, **kwargs)
File "/usr/lib/python3.9/site-packages/tempest/common/waiters.py", line 110, in wait_for_server_termination
body = client.show_server(server_id)['server']
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/servers_client.py", line 159, in show_server
resp, body = self.get("servers/%s" % server_id)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 342, in get
return self.request('GET', url, extra_headers, headers,
File "/usr/lib/python3.9/site-packages/tempest/lib/services/compute/base_compute_client.py", line 47, in request
resp, resp_body = super(BaseComputeClient, self).request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 762, in request
self._error_checker(resp, resp_body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 946, in _error_checker
raise exceptions.UnexpectedResponseCode(str(resp.status),
tempest.lib.exceptions.UnexpectedResponseCode: Unexpected response code received
Details: 503
}}}
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_security_groups.py", line 188, in test_securitygroup_udp
self.create_secgroup_rules(rulesets,
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/scenario/base.py", line 169, in create_secgroup_rules
resp.append(client.create_security_group_rule(
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/services/network/json/network_client.py", line 869, in create_security_group_rule
resp, body = self.post(uri, body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 762, in request
self._error_checker(resp, resp_body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 946, in _error_checker
raise exceptions.UnexpectedResponseCode(str(resp.status),
tempest.lib.exceptions.UnexpectedResponseCode: Unexpected response code received
Details: 503
|
||||||
test_securitygroup_udp_dns[id-db6ab68e-0b9b-46e8-9b15-c9612da57a08] |
fail
ft12.3: whitebox_neutron_tempest_plugin.tests.scenario.test_security_groups.NetworkDefaultSecGroupTest.test_securitygroup_udp_dns[id-db6ab68e-0b9b-46e8-9b15-c9612da57a08]testtools.testresult.real._StringException: pythonlogging:'': {{{
2026-03-13 11:06:17,218 39 INFO [tempest.lib.common.rest_client] Request (NetworkDefaultSecGroupTest:test_securitygroup_udp_dns): 503 POST https://neutron-public-openstack.apps-crc.testing/v2.0/security-groups 0.083s
2026-03-13 11:06:17,219 39 DEBUG [tempest.lib.common.rest_client] Request - Headers: {'Content-Type': 'application/json', 'Accept': 'application/json', 'X-Auth-Token': '<omitted>'}
Body: {"security_group": {"name": "udp-dns-secgrp"}}
Response - Headers: {'date': 'Fri, 13 Mar 2026 11:06:17 GMT', 'server': 'Apache', 'content-length': '218', 'content-type': 'application/json', 'x-openstack-request-id': 'req-1c263b60-b9ff-4a08-a52a-c97715caf03d', 'set-cookie': '38cec1d9c789c59243203143f8ef839e=39f1aa30005420021f13440443bdb2ca; path=/; HttpOnly; Secure; SameSite=None', 'connection': 'close', 'status': '503', 'content-location': 'https://neutron-public-openstack.apps-crc.testing/v2.0/security-groups'}
Body: b'{"message": "The server is currently unavailable. Please try again at a later time.<br /><br />\\nThe Keystone service is temporarily unavailable.\\n\\n", "code": "503 Service Unavailable", "title": "Service Unavailable"}'
}}}
Traceback (most recent call last):
File "/usr/lib/python3.9/site-packages/whitebox_neutron_tempest_plugin/tests/scenario/test_security_groups.py", line 224, in test_securitygroup_udp_dns
secgrp = self.os_primary.network_client.create_security_group(
File "/usr/lib/python3.9/site-packages/neutron_tempest_plugin/services/network/json/network_client.py", line 146, in _create
resp, body = self.post(uri, post_data)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 314, in post
resp_header, resp_body = self.request(
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 762, in request
self._error_checker(resp, resp_body)
File "/usr/lib/python3.9/site-packages/tempest/lib/common/rest_client.py", line 946, in _error_checker
raise exceptions.UnexpectedResponseCode(str(resp.status),
tempest.lib.exceptions.UnexpectedResponseCode: Unexpected response code received
Details: 503
|
||||||
| whitebox_neutron_tempest_plugin.tests.scenario.test_basic.NetworkBasicTest | 2 | 2 | 0 | 0 | 0 | Detail | |
test_basic_instance_kuku[id-df9e38fd-4eb3-4d6c-b26a-a472856fdcb8] |
pass
pt13.1: whitebox_neutron_tempest_plugin.tests.scenario.test_basic.NetworkBasicTest.test_basic_instance_kuku[id-df9e38fd-4eb3-4d6c-b26a-a472856fdcb8]
|
||||||
test_soft_hard_vm_reboot[id-ff7f6a84-4705-4638-9fce-cdc79f8b2c73] |
pass
pt13.2: whitebox_neutron_tempest_plugin.tests.scenario.test_basic.NetworkBasicTest.test_soft_hard_vm_reboot[id-ff7f6a84-4705-4638-9fce-cdc79f8b2c73]
|
||||||
| whitebox_neutron_tempest_plugin.tests.scenario.test_broadcast.BroadcastTestIPv4Common | 1 | 1 | 0 | 0 | 0 | Detail | |
test_broadcast_same_network[id-7f33370a-5f46-4452-8b2f-166acda1720f] |
pass
pt14.1: whitebox_neutron_tempest_plugin.tests.scenario.test_broadcast.BroadcastTestIPv4Common.test_broadcast_same_network[id-7f33370a-5f46-4452-8b2f-166acda1720f]
|
||||||
| whitebox_neutron_tempest_plugin.tests.scenario.test_multicast.MulticastTestVlanTransparency | 1 | 1 | 0 | 0 | 0 | Detail | |
test_igmp_snooping_vlan_transparency[id-c480cec8-3ca4-4781-baad-2e1190079467] |
pass
pt15.1: whitebox_neutron_tempest_plugin.tests.scenario.test_multicast.MulticastTestVlanTransparency.test_igmp_snooping_vlan_transparency[id-c480cec8-3ca4-4781-baad-2e1190079467]
|
||||||
| whitebox_neutron_tempest_plugin.tests.scenario.test_portsecurity.PortSecurityTest | 2 | 2 | 0 | 0 | 0 | Detail | |
test_port_security_disabled[id-f9523922-9e71-4fa1-9cca-303bedf230bc] |
pass
pt16.1: whitebox_neutron_tempest_plugin.tests.scenario.test_portsecurity.PortSecurityTest.test_port_security_disabled[id-f9523922-9e71-4fa1-9cca-303bedf230bc]
|
||||||
test_two_vms_same_compute_when_no_port_security[id-b99a014c-45e4-438d-8827-1063b44d611c] |
pass
pt16.2: whitebox_neutron_tempest_plugin.tests.scenario.test_portsecurity.PortSecurityTest.test_two_vms_same_compute_when_no_port_security[id-b99a014c-45e4-438d-8827-1063b44d611c]
|
||||||
| whitebox_neutron_tempest_plugin.tests.scenario.test_qos.QosTestOvn | 2 | 2 | 0 | 0 | 0 | Detail | |
test_attach_qos_port_to_vm_with_another_port[id-08b74ece-d7f2-4a80-9a1e-5fb7ec928a9b] |
pass
pt17.1: whitebox_neutron_tempest_plugin.tests.scenario.test_qos.QosTestOvn.test_attach_qos_port_to_vm_with_another_port[id-08b74ece-d7f2-4a80-9a1e-5fb7ec928a9b]
|
||||||
test_create_network_qos_policy_before_creating_vm[id-ba85bd87-f4f6-45a8-a2bd-97acb804b6f9] |
pass
pt17.2: whitebox_neutron_tempest_plugin.tests.scenario.test_qos.QosTestOvn.test_create_network_qos_policy_before_creating_vm[id-ba85bd87-f4f6-45a8-a2bd-97acb804b6f9]
|
||||||
| Total | 35 | 13 | 22 | 0 | 0 | ||