Skip to content

fix(perf): ASTFAssociation rules= + OFFLINE TRex profile validation#107

Merged
gspivey merged 1 commit into
developmentfrom
agent/trex-astf-offline-validate
Jul 1, 2026
Merged

fix(perf): ASTFAssociation rules= + OFFLINE TRex profile validation#107
gspivey merged 1 commit into
developmentfrom
agent/trex-astf-offline-validate

Conversation

@gspivey

@gspivey gspivey commented Jul 1, 2026

Copy link
Copy Markdown
Owner

Follow-up to #106. Run 28549496895 hit unexpected keyword argument 'port'. This is the 5th TRex-profile API error found one-at-a-time on EC2 — so instead of guessing again, I built the offline validator we discussed.

The fix (ground-truthed, not guessed)

Stood up the TRex control-plane profile module locally (its ArgVerify is pure Python — no NIC/server) and introspected the real API:

Fixed the association, and confirmed build_tcp_profile() builds a valid ASTFProfile for all payload sizes offline in <1s.

The tool (ends the whack-a-mole)

scripts/perf-tests/test/validate_tcp_profile.sh — sparse-clones the TRex control-plane, shims cgi (py3.13) + zmq (arm64), and builds the profile locally. Any future ASTF-API mistake is caught in <1s instead of a ~30-min EC2 run. Directly addresses the "testing at deployment is expensive" concern. Follow-up: wire it into CI as a per-PR gate.

Merge → the next EC2 run should finally get past profile-build to real CPS/throughput (or a genuine runtime issue, no longer a profile-build error).

🤖 Generated with Claude Code

… port=

+ add OFFLINE TRex-profile validation to end the one-error-per-EC2-run cycle.

Run 28549496895 (post-#106) hit 'unexpected keyword argument port'. Rather than
guess again, I stood up the TRex control-plane profile module locally (its
ArgVerify is pure Python — no NIC/server) and introspected the real API:
  - ASTFAssociation(rules=...) — NOT port=; the port goes on ASTFAssociationRule.
  - ASTFTCPClientTemplate DOES accept port= (my #106 guess there was fine).
Fixed the association and confirmed build_tcp_profile() builds a valid
ASTFProfile for all payload sizes OFFLINE in <1s.

scripts/perf-tests/test/validate_tcp_profile.sh reproduces this locally
(sparse-clones the TRex control-plane, shims cgi/zmq for py3.13/arm64, builds
the profile). This catches ASTF-API errors instantly instead of via ~30-min
EC2 runs — the fix for the 'testing at deployment is expensive' problem.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@github-actions

github-actions Bot commented Jul 1, 2026

Copy link
Copy Markdown

Synthetic Performance Results (run)

Commit: 6dfa5caf

✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)

Synthetic UDP Performance Results

Measures framework overhead: sync dpdk_udp::UdpSocket vs async (std::sync::Mutex + try_recv_from).

IPv4 Baseline

Test Payload Sync PPS Async PPS Ratio (sync/async) Async ns/op
TX send_to 64B 10.8M 11.2M 1.0x 89
RX recv_from 64B 3.6M 4.7M 0.8x 212
TX send_to 1400B 1.8M 1.8M 1.0x 555
RX recv_from 1400B 1.1M 1.2M 0.9x 814

IPv6

Test Payload Sync PPS Async PPS Ratio (sync/async) Async ns/op
TX send_to (IPv6) 64B 9.1M 8.8M 1.0x 113
RX recv_from (IPv6) 64B 4.0M 5.5M 0.7x 182
TX send_to (IPv6) 1400B 3.1M 3.0M 1.0x 328
RX recv_from (IPv6) 1400B 1.2M 1.3M 0.9x 791

IPv6 vs IPv4 Comparison (sync path)

Test Payload IPv4 PPS IPv6 PPS IPv4/IPv6 Ratio
TX send_to (sync) 64B 10.8M 9.1M 1.19x
RX recv_from (sync) 64B 3.6M 4.0M 0.90x
TX send_to (sync) 1400B 1.8M 3.1M 0.61x
RX recv_from (sync) 1400B 1.1M 1.2M 0.97x

IPv4 avg sync/async ratio: 0.9x, worst: 1.0x | IPv6 vs IPv4 worst ratio: 1.19x (OK)

OK: IPv6 is 18.6% slower than IPv4 — within acceptable threshold (<50%). Expected due to larger headers (40B vs 20B) and mandatory UDP checksum.

Good: Async wrapper is within 1.0x of sync — minimal framework overhead.

@github-actions

github-actions Bot commented Jul 1, 2026

Copy link
Copy Markdown

Synthetic Performance Results — Graviton (run)

Commit: 6dfa5caf

✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to 10.0.0.1:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)
✅ synthetic UDP socket bound to [2001:db8::1]:9000 (MAC: 02:00:00:00:00:01)

Synthetic UDP Performance Results

Measures framework overhead: sync dpdk_udp::UdpSocket vs async (std::sync::Mutex + try_recv_from).

IPv4 Baseline

Test Payload Sync PPS Async PPS Ratio (sync/async) Async ns/op
TX send_to 64B 11.7M 11.1M 1.1x 89
RX recv_from 64B 3.6M 4.3M 0.8x 231
TX send_to 1400B 1.8M 1.8M 1.0x 552
RX recv_from 1400B 1.1M 1.2M 0.9x 866

IPv6

Test Payload Sync PPS Async PPS Ratio (sync/async) Async ns/op
TX send_to (IPv6) 64B 9.0M 8.9M 1.0x 112
RX recv_from (IPv6) 64B 3.9M 4.9M 0.8x 202
TX send_to (IPv6) 1400B 3.0M 3.0M 1.0x 330
RX recv_from (IPv6) 1400B 1.1M 1.2M 0.9x 820

IPv6 vs IPv4 Comparison (sync path)

Test Payload IPv4 PPS IPv6 PPS IPv4/IPv6 Ratio
TX send_to (sync) 64B 11.7M 9.0M 1.31x
RX recv_from (sync) 64B 3.6M 3.9M 0.90x
TX send_to (sync) 1400B 1.8M 3.0M 0.61x
RX recv_from (sync) 1400B 1.1M 1.1M 0.95x

IPv4 avg sync/async ratio: 1.0x, worst: 1.1x | IPv6 vs IPv4 worst ratio: 1.31x (OK)

OK: IPv6 is 30.9% slower than IPv4 — within acceptable threshold (<50%). Expected due to larger headers (40B vs 20B) and mandatory UDP checksum.

Good: Async wrapper is within 1.1x of sync — minimal framework overhead.

@github-actions

github-actions Bot commented Jul 1, 2026

Copy link
Copy Markdown

[CI] Stage: Deploy

Infrastructure ready.

  • Sender: i-0fedf46d94bedce24 (DPDK ENI: 10.0.1.161)
  • Receiver: i-089f5fe5d8fa4842f (DPDK ENI: 10.0.1.241)
  • Both instances SSM-ready.

@github-actions

github-actions Bot commented Jul 1, 2026

Copy link
Copy Markdown

[CI] Stage: Deploy

Infrastructure ready.

  • Sender: i-0f2f121f9a0bdb9f7 (DPDK ENI: 10.0.1.96)
  • Receiver: i-0022eae51e6a0ca92 (DPDK ENI: 10.0.1.215)
  • Both instances SSM-ready.

@github-actions

github-actions Bot commented Jul 1, 2026

Copy link
Copy Markdown

[CI] Stage: Summary

All tests PASSED.

ARP seeding: kernel /proc/net/arp (automatic)

  • tier1-dpdk-echo: 6 tests, 0 failures
  • tier2-kernel-interop: 4 tests, 0 failures
  • tier3-iperf-interop: 1 tests, 0 failures
  • tier3-iperf-interop: 1 tests, 0 failures

1 similar comment
@github-actions

github-actions Bot commented Jul 1, 2026

Copy link
Copy Markdown

[CI] Stage: Summary

All tests PASSED.

ARP seeding: kernel /proc/net/arp (automatic)

  • tier1-dpdk-echo: 6 tests, 0 failures
  • tier2-kernel-interop: 4 tests, 0 failures
  • tier3-iperf-interop: 1 tests, 0 failures
  • tier3-iperf-interop: 1 tests, 0 failures

@github-actions

github-actions Bot commented Jul 1, 2026

Copy link
Copy Markdown

✅ Integration Tests Passed — Graviton (run)

Branch: 107/merge | Commit: 6dfa5caf

Test Results

  • tier1-dpdk-echo.xml: 6 tests, 0 failures
  • tier2-kernel-interop.xml: 4 tests, 0 failures
  • tier3-iperf-sends.xml: 1 tests, 0 failures
  • tier3-our-app-sends.xml: 1 tests, 0 failures

Application Logs (last 20 lines)

receiver-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.241:9000 (MAC: 02:1f:07:8c:ba:c7)
echo listening on 10.0.1.241:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.161:9000 (MAC: 02:30:5c:5f:0b:3b)
echo listening on 10.0.1.161:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-test-client.log

EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
TELEMETRY: No legacy callbacks, legacy socket not created
DPDK bind failed (Port init failed: Invalid port ID: 0), falling back to tokio
Backend: tokio
Sending packets...
Sent 12 bytes: 'arp-probe #1'
Received 12 bytes from 10.0.1.241:9000: 'arp-probe #1'
Test complete
[2026-07-01T22:26:52Z] INFO: ARP resolution succeeded (got response from peer)
[2026-07-01T22:26:52Z] INFO: Test: udp_send_receive
[2026-07-01T22:26:53Z] INFO: UDP send/receive succeeded
[2026-07-01T22:26:53Z] INFO: Test: echo_roundtrip
[2026-07-01T22:26:54Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-07-01T22:26:54Z] INFO: Test: payload_integrity
[2026-07-01T22:26:54Z] INFO: Response received, checking payload match...
[2026-07-01T22:26:54Z] INFO: Payload integrity verified (found in response)
[2026-07-01T22:26:54Z] INFO: JUnit XML written to: /tmp/test-results/tier2-kernel-interop.xml
[2026-07-01T22:26:54Z] INFO: Tier 2 sender tests complete. Results: /tmp/test-results/tier2-kernel-interop.xml

@github-actions

github-actions Bot commented Jul 1, 2026

Copy link
Copy Markdown

✅ Integration Tests Passed (Run 28551110519)

Branch: 107/merge | Commit: 6dfa5caf

Test Results

  • tier1-dpdk-echo.xml: 6 tests, 0 failures, skipped
  • tier2-kernel-interop.xml: 4 tests, 0 failures, skipped
  • tier3-iperf-sends.xml: 1 tests, 0 failures, skipped
  • tier3-our-app-sends.xml: 1 tests, 0 failures, skipped

Application Logs (last 20 lines)

receiver-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.215:9000 (MAC: 02:35:0e:4b:85:af)
echo listening on 10.0.1.215:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.96:9000 (MAC: 02:49:e8:e0:60:09)
echo listening on 10.0.1.96:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-test-client.log

EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
TELEMETRY: No legacy callbacks, legacy socket not created
DPDK bind failed (Port init failed: Invalid port ID: 0), falling back to tokio
Backend: tokio
Sending packets...
Sent 12 bytes: 'arp-probe #1'
Received 12 bytes from 10.0.1.215:9000: 'arp-probe #1'
Test complete
[2026-07-01T22:28:52Z] INFO: ARP resolution succeeded (got response from peer)
[2026-07-01T22:28:52Z] INFO: Test: udp_send_receive
[2026-07-01T22:28:53Z] INFO: UDP send/receive succeeded
[2026-07-01T22:28:53Z] INFO: Test: echo_roundtrip
[2026-07-01T22:28:54Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-07-01T22:28:54Z] INFO: Test: payload_integrity
[2026-07-01T22:28:54Z] INFO: Response received, checking payload match...
[2026-07-01T22:28:54Z] INFO: Payload integrity verified (found in response)
[2026-07-01T22:28:54Z] INFO: JUnit XML written to: /tmp/test-results/tier2-kernel-interop.xml
[2026-07-01T22:28:54Z] INFO: Tier 2 sender tests complete. Results: /tmp/test-results/tier2-kernel-interop.xml

receiver-test-client-iperf.log

[2026-07-01T22:35:39Z] INFO: iperf-sends: sent 10 packets, received 10 responses
[2026-07-01T22:35:39Z] INFO: iperf-sends: PASS (sent >= 5 packets)
[2026-07-01T22:35:39Z] INFO: JUnit XML written to: /tmp/test-results/tier3-iperf-sends.xml
[2026-07-01T22:35:39Z] INFO: iperf-sends test complete

sender-test-client-iperf.log

Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #3'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #4'
Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #4'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #5'
Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #5'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #6'
Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #6'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #7'
Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #7'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #8'
Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #8'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #9'
Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #9'
Sent 31 bytes: 'dpdk-to-kernel-test-payload #10'
Received 31 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #10'
Test complete
[2026-07-01T22:34:41Z] INFO: our-app-sends: sent 10 packets, received 10 responses
[2026-07-01T22:34:41Z] INFO: our-app-sends: PASS (sent >= 5 packets)
[2026-07-01T22:34:41Z] INFO: JUnit XML written to: /tmp/test-results/tier3-our-app-sends.xml
[2026-07-01T22:34:41Z] INFO: our-app-sends test complete
Full Application Logs (last 200 lines each)

receiver-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.215:9000 (MAC: 02:35:0e:4b:85:af)
echo listening on 10.0.1.215:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-echo-server.log

EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.96:9000 (MAC: 02:49:e8:e0:60:09)
echo listening on 10.0.1.96:9000 (MTU=9001, max_udp_payload=8973)
Shutting down gracefully...

sender-test-client.log

[2026-07-01T22:24:23Z] INFO: Test: arp_resolution
UDP Test Client
Target: 10.0.1.215:9000
Bind address: 10.0.1.96:0
Message: 'arp-probe'
Count: 1
EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.96:32768 (MAC: 02:49:e8:e0:60:09)
Backend: dpdk
Sending packets...
Sent 12 bytes: 'arp-probe #1'
Received 12 bytes from 10.0.1.215:9000: 'arp-probe #1'
Test complete
[2026-07-01T22:24:24Z] INFO: ARP resolution succeeded (got response from peer)
[2026-07-01T22:24:24Z] INFO: Test: udp_send_receive
[2026-07-01T22:24:26Z] INFO: UDP send/receive succeeded
[2026-07-01T22:24:26Z] INFO: Test: echo_roundtrip
[2026-07-01T22:24:27Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-07-01T22:24:27Z] INFO: Test: payload_integrity
[2026-07-01T22:24:28Z] INFO: Response received, checking payload match...
[2026-07-01T22:24:28Z] INFO: Payload integrity verified (found in response)
[2026-07-01T22:24:28Z] INFO: Test: jumbo_diagnostics
[2026-07-01T22:24:28Z] INFO: === JUMBO FRAME DIAGNOSTICS ===
[2026-07-01T22:24:28Z] INFO: Interface MTU:
  9001
  65536
[2026-07-01T22:24:28Z] INFO:   ens5: MTU=9001
[2026-07-01T22:24:28Z] INFO:   lo: MTU=65536
[2026-07-01T22:24:28Z] INFO: Routing table MTU column:
Iface	Destination	Gateway 	Flags	RefCnt	Use	Metric	Mask		MTU	Window	IRTT                                                       
ens5	00000000	0101000A	0003	0	0	512	00000000	0	0	0                                                                             
ens5	0200000A	0101000A	0007	0	0	512	FFFFFFFF	0	0	0                                                                             
ens5	0001000A	00000000	0001	0	0	512	00FFFFFF	0	0	0                                                                             
ens5	0101000A	00000000	0005	0	0	512	FFFFFFFF	0	0	0                                                                             
[2026-07-01T22:24:28Z] INFO: DPDK port config (from echo server log):
[2026-07-01T22:24:28Z] INFO:   (no MTU info in echo log)
[2026-07-01T22:24:28Z] INFO: === END JUMBO DIAGNOSTICS ===
[2026-07-01T22:24:28Z] INFO: Test: jumbo_echo_8000
[2026-07-01T22:24:30Z] INFO: Jumbo output: UDP Test Client
Target: 10.0.1.215:9000
Bind address: 10.0.1.96:0
Payload size: 8000 bytes
Count: 3
EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.96:32768 (MAC: 02:49:e8:e0:60:09)
Backend: dpdk
Sending packets...
Sent 8000 bytes (binary payload)
Received 8000 bytes from 10.0.1.215:9000 (expected 8000, OK)
Sent 8000 bytes (binary payload)
Received 8000 bytes from 10.0.1.215:9000 (expected 8000, OK)
Sent 8000 bytes (binary payload)
Received 8000 bytes from 10.0.1.215:9000 (expected 8000, OK)
Test complete
[2026-07-01T22:24:30Z] INFO: Jumbo frame echo succeeded: 3/3 responses with correct size
[2026-07-01T22:24:30Z] INFO: JUnit XML written to: /tmp/test-results/tier1-dpdk-echo.xml
[2026-07-01T22:24:30Z] INFO: Tier 1 sender tests complete. Results: /tmp/test-results/tier1-dpdk-echo.xml
[2026-07-01T22:28:52Z] INFO: Test: arp_resolution
UDP Test Client
Target: 10.0.1.215:9000
Bind address: 0.0.0.0:0
Message: 'arp-probe'
Count: 1
EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
TELEMETRY: No legacy callbacks, legacy socket not created
DPDK bind failed (Port init failed: Invalid port ID: 0), falling back to tokio
Backend: tokio
Sending packets...
Sent 12 bytes: 'arp-probe #1'
Received 12 bytes from 10.0.1.215:9000: 'arp-probe #1'
Test complete
[2026-07-01T22:28:52Z] INFO: ARP resolution succeeded (got response from peer)
[2026-07-01T22:28:52Z] INFO: Test: udp_send_receive
[2026-07-01T22:28:53Z] INFO: UDP send/receive succeeded
[2026-07-01T22:28:53Z] INFO: Test: echo_roundtrip
[2026-07-01T22:28:54Z] INFO: Echo roundtrip succeeded: 5/5 responses received
[2026-07-01T22:28:54Z] INFO: Test: payload_integrity
[2026-07-01T22:28:54Z] INFO: Response received, checking payload match...
[2026-07-01T22:28:54Z] INFO: Payload integrity verified (found in response)
[2026-07-01T22:28:54Z] INFO: JUnit XML written to: /tmp/test-results/tier2-kernel-interop.xml
[2026-07-01T22:28:54Z] INFO: Tier 2 sender tests complete. Results: /tmp/test-results/tier2-kernel-interop.xml

receiver-test-client-iperf.log

[2026-07-01T22:35:39Z] INFO: iperf-sends: sent 10 packets, received 10 responses
[2026-07-01T22:35:39Z] INFO: iperf-sends: PASS (sent >= 5 packets)
[2026-07-01T22:35:39Z] INFO: JUnit XML written to: /tmp/test-results/tier3-iperf-sends.xml
[2026-07-01T22:35:39Z] INFO: iperf-sends test complete

sender-test-client-iperf.log

[2026-07-01T22:34:38Z] INFO: Pre-flight: checking DPDK state and ARP cache...
[2026-07-01T22:34:38Z] INFO: Local IP: 10.0.1.96, Peer IP: 10.0.1.215, Port: 9000
[2026-07-01T22:34:38Z] INFO: /proc/net/arp contents:
IP address       HW type     Flags       HW address            Mask     Device
10.0.1.1         0x1         0x2         02:6b:27:a1:47:d1     *        ens5
10.0.1.60        0x1         0x2         02:2e:4d:aa:a0:03     *        ens5
10.0.1.215       0x1         0x2         02:35:0e:4b:85:af     *        ens5
10.0.1.96        0x1         0x2         02:49:e8:e0:60:09     *        ens5
[2026-07-01T22:34:38Z] INFO: DPDK runtime state:
No /var/run/dpdk/ directory
[2026-07-01T22:34:38Z] INFO: vfio-pci bindings:
0000:00:06.0
bind
module
new_id
remove_id
uevent
unbind
[2026-07-01T22:34:38Z] INFO: Test binary: /opt/dpdk-stdlib/target/release/test-client
-rwxr-xr-x. 2 root root 1950584 Jul  1 22:21 /opt/dpdk-stdlib/target/release/test-client
[2026-07-01T22:34:38Z] INFO: Launching test-client: /opt/dpdk-stdlib/target/release/test-client --target 10.0.1.215 --port 9000 --bind-ip 10.0.1.96 --count 10 --delay 200
[2026-07-01T22:34:41Z] INFO: Test client output: UDP Test Client
Target: 10.0.1.215:9000
Bind address: 10.0.1.96:0
Message: 'dpdk-to-kernel-test-payload'
Count: 10
EAL: Detected CPU lcores: 2
EAL: Detected NUMA nodes: 1
EAL: Detected shared linkage of DPDK
EAL: Multi-process socket /var/run/dpdk/rte/mp_socket
EAL: Selected IOVA mode 'PA'
EAL: VFIO support initialized
EAL: Using IOMMU type 8 (No-IOMMU)
EAL: Probe PCI driver: net_ena (1d0f:ec20) device: 0000:00:06.0 (socket -1)
TELEMETRY: No legacy callbacks, legacy socket not created
Warning: Some RX offloads not supported by device (flags: 0x1)
Warning: Some TX offloads not supported by device (flags: 0x1)
✅ DPDK UDP socket bound to 10.0.1.96:32768 (MAC: 02:49:e8:e0:60:09)
Backend: dpdk
Sending packets...
Sent 30 bytes: 'dpdk-to-kernel-test-payload #1'
Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #1'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #2'
Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #2'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #3'
Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #3'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #4'
Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #4'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #5'
Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #5'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #6'
Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #6'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #7'
Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #7'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #8'
Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #8'
Sent 30 bytes: 'dpdk-to-kernel-test-payload #9'
Received 30 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #9'
Sent 31 bytes: 'dpdk-to-kernel-test-payload #10'
Received 31 bytes from 10.0.1.215:9000: 'dpdk-to-kernel-test-payload #10'
Test complete
[2026-07-01T22:34:41Z] INFO: our-app-sends: sent 10 packets, received 10 responses
[2026-07-01T22:34:41Z] INFO: our-app-sends: PASS (sent >= 5 packets)
[2026-07-01T22:34:41Z] INFO: JUnit XML written to: /tmp/test-results/tier3-our-app-sends.xml
[2026-07-01T22:34:41Z] INFO: our-app-sends test complete
⚠️ SSM Command Failures (receiver-ssm-failure.log)
=== Polling timeout after 30s ===
Status: InProgress
Instance: i-0022eae51e6a0ca92 (receiver)
Command ID: b9f613ec-4596-4a44-a7e3-0e491ffd23c1

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-0022eae51e6a0ca92 (receiver)
Command ID: 32d84c59-d38d-46a0-b781-1c017b6a81a0

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-0022eae51e6a0ca92 (receiver)
Command ID: ab4614fb-c6aa-4142-bc89-055df004cdc9

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-0022eae51e6a0ca92 (receiver)
Command ID: a02e22b0-d35b-466c-bbc1-0f5ca8237ec0

=== STDOUT ===


=== STDERR ===


⚠️ SSM Command Failures (sender-ssm-failure.log)
=== Polling timeout 120s (SSM timeout: 90s, command: cd /opt/dpdk-stdlib && bash scripts/integration-tests/configure-eni.sh --action unbind && bash scripts/integration-tests/configure-eni.sh --action assign-ip --ip 10.0.1.96) ===
Status: InProgress
Instance: i-0f2f121f9a0bdb9f7 (sender)
Command ID: 950989a6-87cb-4b5b-a816-1728165b4525

=== STDOUT ===


=== STDERR ===


=== Polling timeout after 30s ===
Status: InProgress
Instance: i-0f2f121f9a0bdb9f7 (sender)
Command ID: 19f1cf5e-24a6-4f30-a0ed-cbbb9961de9f

=== STDOUT ===


=== STDERR ===


Network & PCI State

receiver-network-interfaces.log

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 noprefixroute 
       valid_lft forever preferred_lft forever
2: ens5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9001 qdisc mq state UP group default qlen 1000
    link/ether 02:7c:b5:cf:51:17 brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-0a86066acc6c8e90b
    altname device-number-0.0
    inet 10.0.1.227/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 2093sec preferred_lft 2093sec
    inet6 fe80::7c:b5ff:fecf:5117/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

sender-network-interfaces.log

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 noprefixroute 
       valid_lft forever preferred_lft forever
2: ens5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9001 qdisc mq state UP group default qlen 1000
    link/ether 02:d7:a0:34:dd:55 brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-01e1c024e05e78e0a
    altname device-number-0.0
    inet 10.0.1.189/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 2115sec preferred_lft 2115sec
    inet6 fe80::d7:a0ff:fe34:dd55/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

receiver-networking-diag-baseline.txt

=== NETWORKING DIAGNOSTICS ===
timestamp: 2026-07-01T22:23:45Z
hostname: ip-10-0-1-227.ec2.internal
kernel: 6.18.35-68.129.amzn2023.x86_64

=== DPDK PORT STATUS ===

Network devices using DPDK-compatible driver
============================================
0000:00:06.0 'Elastic Network Adapter (ENA) ec20' drv=vfio-pci unused=ena

Network devices using kernel driver
===================================
0000:00:05.0 'Elastic Network Adapter (ENA) ec20' if=ens5 drv=ena unused=vfio-pci *Active*

No 'Baseband' devices detected
==============================

No 'Crypto' devices detected
============================

No 'DMA' devices detected
=========================

No 'Eventdev' devices detected
==============================

No 'Mempool' devices detected
=============================

No 'Compress' devices detected
==============================

No 'Misc (rawdev)' devices detected
===================================

No 'Regex' devices detected
===========================

=== IP ADDRESSES ===
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 noprefixroute 
       valid_lft forever preferred_lft forever
2: ens5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9001 qdisc mq state UP group default qlen 1000
    link/ether 02:7c:b5:cf:51:17 brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-0a86066acc6c8e90b
    altname device-number-0.0
    inet 10.0.1.227/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 3103sec preferred_lft 3103sec
    inet6 fe80::7c:b5ff:fecf:5117/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

=== ARP TABLE ===
10.0.1.60 dev ens5 lladdr 02:2e:4d:aa:a0:03 REACHABLE 
10.0.1.1 dev ens5 lladdr 02:6b:27:a1:47:d1 REACHABLE 

=== ROUTE TABLE ===
default via 10.0.1.1 dev ens5 proto dhcp src 10.0.1.227 metric 512 
10.0.0.2 via 10.0.1.1 dev ens5 proto dhcp src 10.0.1.227 metric 512 
10.0.1.0/24 dev ens5 proto kernel scope link src 10.0.1.227 metric 512 
10.0.1.1 dev ens5 proto dhcp scope link src 10.0.1.227 metric 512 

=== IMDS: ENI INFORMATION ===
ENI MACs found: 02:35:0e:4b:85:af/ 02:7c:b5:cf:51:17/ 

--- ENI: 02:35:0e:4b:85:af/ ---
  device-number: 1
  local-ipv4s: 10.0.1.215
  subnet-id: subnet-00369d9331ff6de19
  subnet-cidr: 10.0.1.0/24

--- ENI: 02:7c:b5:cf:51:17/ ---
  device-number: 0
  local-ipv4s: 10.0.1.227
  subnet-id: subnet-00369d9331ff6de19
  subnet-cidr: 10.0.1.0/24


=== GATEWAY ARP TEST ===
Gateway IP: 10.0.1.1
Gateway ARP entry:
10.0.1.1 dev ens5 lladdr 02:6b:27:a1:47:d1 REACHABLE 

arping result:
ARPING 10.0.1.1 from 10.0.1.227 ens5
Unicast reply from 10.0.1.1 [02:6B:27:A1:47:D1]  0.532ms
Sent 1 probes (1 broadcast(s))
Received 1 response(s)

=== HUGEPAGE STATUS ===
AnonHugePages:         0 kB
ShmemHugePages:        0 kB
FileHugePages:     51200 kB
HugePages_Total:    1024
HugePages_Free:     1024
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
Hugetlb:         2097152 kB

=== VFIO STATUS ===
total 0
drwxr-xr-x.  2 root root       80 Jul  1 22:23 .
drwxr-xr-x. 14 root root     3100 Jul  1 22:22 ..
crw-------.  1 root root 243,   0 Jul  1 22:23 noiommu-0
crw-rw-rw-.  1 root root  10, 196 Jul  1 22:15 vfio

noiommu mode:
Y

=== DPDK SHARED MEMORY ===
no /var/run/dpdk/ directory (clean state)

=== DPDK-RELATED DMESG (last 30 lines) ===
[    0.054164] printk: legacy console [ttyS0] enabled
[    0.055192] x2apic enabled
[    0.059411] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[    0.059521] x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format.
[    0.069279] audit: type=2000 audit(1782944123.743:1): state=initialized audit_enabled=0 res=1
[    0.088754] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.141290] ACPI: Interpreter enabled
[    0.141290] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.159996] pci 0000:00:05.0: enabling Extended Tags
[    0.244568] SGI XFS with ACLs, security attributes, quota, no debug enabled
[    0.256768] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.345768] IPI shorthand broadcast: enabled
[    2.846453] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    2.889131] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    2.937207] VFIO - User Level meta-driver version: 0.3
[    3.409079] ena 0000:00:05.0: Elastic Network Adapter (ENA) v2.17.1g
[    3.420259] ena 0000:00:05.0: ENA device version: 0.10
[    3.420956] ena 0000:00:05.0: ENA controller version: 0.0.1 implementation version 1
[    3.522074] ena 0000:00:05.0: ENA Large LLQ is disabled
[    3.535703] ena 0000:00:05.0: Elastic Network Adapter (ENA) found at mem c0500000, mac addr 02:7c:b5:cf:51:17
[    3.556705] ena 0000:00:05.0 ens5: renamed from eth0
[  431.830986] pci 0000:00:06.0: enabling Extended Tags
[  431.834899] ena 0000:00:06.0: enabling device (0000 -> 0002)
[  431.845411] ena 0000:00:06.0: ENA device version: 0.10
[  431.846174] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  431.945384] ena 0000:00:06.0: ENA Large LLQ is disabled
[  431.958252] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:35:0e:4b:85:af
[  431.965301] ena 0000:00:06.0 ens6: renamed from eth0
[  489.397967] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  489.399414] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device

=== DPDK-RELATED PROCESSES ===
no DPDK processes running

=== END DIAGNOSTICS ===

sender-networking-diag-baseline.txt

=== NETWORKING DIAGNOSTICS ===
timestamp: 2026-07-01T22:23:38Z
hostname: ip-10-0-1-189.ec2.internal
kernel: 6.18.35-68.129.amzn2023.x86_64

=== DPDK PORT STATUS ===

Network devices using DPDK-compatible driver
============================================
0000:00:06.0 'Elastic Network Adapter (ENA) ec20' drv=vfio-pci unused=ena

Network devices using kernel driver
===================================
0000:00:05.0 'Elastic Network Adapter (ENA) ec20' if=ens5 drv=ena unused=vfio-pci *Active*

No 'Baseband' devices detected
==============================

No 'Crypto' devices detected
============================

No 'DMA' devices detected
=========================

No 'Eventdev' devices detected
==============================

No 'Mempool' devices detected
=============================

No 'Compress' devices detected
==============================

No 'Misc (rawdev)' devices detected
===================================

No 'Regex' devices detected
===========================

=== IP ADDRESSES ===
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 noprefixroute 
       valid_lft forever preferred_lft forever
2: ens5: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 9001 qdisc mq state UP group default qlen 1000
    link/ether 02:d7:a0:34:dd:55 brd ff:ff:ff:ff:ff:ff
    altname enp0s5
    altname eni-01e1c024e05e78e0a
    altname device-number-0.0
    inet 10.0.1.189/24 metric 512 brd 10.0.1.255 scope global dynamic ens5
       valid_lft 3111sec preferred_lft 3111sec
    inet6 fe80::d7:a0ff:fe34:dd55/64 scope link proto kernel_ll 
       valid_lft forever preferred_lft forever

=== ARP TABLE ===
10.0.1.1 dev ens5 lladdr 02:6b:27:a1:47:d1 REACHABLE 
10.0.1.60 dev ens5 lladdr 02:2e:4d:aa:a0:03 REACHABLE 

=== ROUTE TABLE ===
default via 10.0.1.1 dev ens5 proto dhcp src 10.0.1.189 metric 512 
10.0.0.2 via 10.0.1.1 dev ens5 proto dhcp src 10.0.1.189 metric 512 
10.0.1.0/24 dev ens5 proto kernel scope link src 10.0.1.189 metric 512 
10.0.1.1 dev ens5 proto dhcp scope link src 10.0.1.189 metric 512 

=== IMDS: ENI INFORMATION ===
ENI MACs found: 02:49:e8:e0:60:09/ 02:d7:a0:34:dd:55/ 

--- ENI: 02:49:e8:e0:60:09/ ---
  device-number: 1
  local-ipv4s: 10.0.1.96
  subnet-id: subnet-00369d9331ff6de19
  subnet-cidr: 10.0.1.0/24

--- ENI: 02:d7:a0:34:dd:55/ ---
  device-number: 0
  local-ipv4s: 10.0.1.189
  subnet-id: subnet-00369d9331ff6de19
  subnet-cidr: 10.0.1.0/24


=== GATEWAY ARP TEST ===
Gateway IP: 10.0.1.1
Gateway ARP entry:
10.0.1.1 dev ens5 lladdr 02:6b:27:a1:47:d1 REACHABLE 

arping result:
ARPING 10.0.1.1 from 10.0.1.189 ens5
Unicast reply from 10.0.1.1 [02:6B:27:A1:47:D1]  0.556ms
Sent 1 probes (1 broadcast(s))
Received 1 response(s)

=== HUGEPAGE STATUS ===
AnonHugePages:         0 kB
ShmemHugePages:        0 kB
FileHugePages:     51200 kB
HugePages_Total:    1024
HugePages_Free:     1024
HugePages_Rsvd:        0
HugePages_Surp:        0
Hugepagesize:       2048 kB
Hugetlb:         2097152 kB

=== VFIO STATUS ===
total 0
drwxr-xr-x.  2 root root       80 Jul  1 22:23 .
drwxr-xr-x. 14 root root     3100 Jul  1 22:22 ..
crw-------.  1 root root 243,   0 Jul  1 22:23 noiommu-0
crw-rw-rw-.  1 root root  10, 196 Jul  1 22:15 vfio

noiommu mode:
Y

=== DPDK SHARED MEMORY ===
no /var/run/dpdk/ directory (clean state)

=== DPDK-RELATED DMESG (last 30 lines) ===
[    0.053531] printk: legacy console [ttyS0] enabled
[    0.054550] x2apic enabled
[    0.058713] mitigations: Enabled attack vectors: user_kernel, user_user, guest_host, guest_guest, SMT mitigations: auto
[    0.058824] x86/fpu: Enabled xstate features 0x2ff, context size is 2568 bytes, using 'compacted' format.
[    0.068559] audit: type=2000 audit(1782944124.057:1): state=initialized audit_enabled=0 res=1
[    0.082039] kprobes: kprobe jump-optimization is enabled. All kprobes are optimized if possible.
[    0.138755] ACPI: Interpreter enabled
[    0.138755] ACPI: Enabled 2 GPEs in block 00 to 0F
[    0.158115] pci 0000:00:05.0: enabling Extended Tags
[    0.227780] SGI XFS with ACLs, security attributes, quota, no debug enabled
[    0.233201] ACPI: \_SB_.LNKD: Enabled at IRQ 11
[    0.334643] IPI shorthand broadcast: enabled
[    2.607033] systemd[1]: Mounting dev-hugepages.mount - Huge Pages File System...
[    2.650939] systemd[1]: Mounted dev-hugepages.mount - Huge Pages File System.
[    2.702491] VFIO - User Level meta-driver version: 0.3
[    3.088473] ena 0000:00:05.0: Elastic Network Adapter (ENA) v2.17.1g
[    3.104852] ena 0000:00:05.0: ENA device version: 0.10
[    3.105566] ena 0000:00:05.0: ENA controller version: 0.0.1 implementation version 1
[    3.210620] ena 0000:00:05.0: ENA Large LLQ is disabled
[    3.223678] ena 0000:00:05.0: Elastic Network Adapter (ENA) found at mem c0500000, mac addr 02:d7:a0:34:dd:55
[    3.239427] ena 0000:00:05.0 ens5: renamed from eth0
[  452.045685] pci 0000:00:06.0: enabling Extended Tags
[  452.049642] ena 0000:00:06.0: enabling device (0000 -> 0002)
[  452.062523] ena 0000:00:06.0: ENA device version: 0.10
[  452.063276] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  452.164453] ena 0000:00:06.0: ENA Large LLQ is disabled
[  452.177066] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:49:e8:e0:60:09
[  452.183924] ena 0000:00:06.0 ens6: renamed from eth0
[  482.551203] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  482.552670] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device

=== DPDK-RELATED PROCESSES ===
no DPDK processes running

=== END DIAGNOSTICS ===
⚠️ Crash Diagnostics

receiver-dmesg-crashes.log

[    0.068659] pid_max: default: 32768 minimum: 301
[    0.163793] iommu: Default domain type: Translated
[    0.163819] NetLabel:  unlabeled traffic allowed by default
[    0.183601] PCI: CLS 0 bytes, default 64
[    0.285995] nvme nvme0: 2/0/0 default/read/poll queues
[    0.420152] systemd[1]: systemd 252.23-12.amzn2023 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)
[    0.420280] systemd[1]: No hostname configured, using default hostname.
[    0.494769] systemd[1]: Queued start job for default target initrd.target.
[    2.236225] systemd[1]: systemd 252.23-12.amzn2023 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)
[  524.676804] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:8423)
[  792.790951] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:8958)
[ 1378.947892] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:10043)

sender-dmesg-crashes.log

[    0.067959] pid_max: default: 32768 minimum: 301
[    0.161970] iommu: Default domain type: Translated
[    0.162011] NetLabel:  unlabeled traffic allowed by default
[    0.178275] PCI: CLS 0 bytes, default 64
[    0.242112] nvme nvme0: 2/0/0 default/read/poll queues
[    0.429476] systemd[1]: systemd 252.23-12.amzn2023 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)
[    0.429603] systemd[1]: No hostname configured, using default hostname.
[    0.492892] systemd[1]: Queued start job for default target initrd.target.
[    1.971256] systemd[1]: systemd 252.23-12.amzn2023 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)
[ 1197.741372] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:9669)
Kernel Console (dmesg)

receiver-console-output.log (PCI/driver events only)

[  524.675245] vfio-pci 0000:00:06.0: reset done
[  524.676804] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:8423)
[  524.678190] vfio-pci 0000:00:06.0: resetting
[  524.895200] vfio-pci 0000:00:06.0: reset done
[  602.871962] vfio-pci 0000:00:06.0: Removing from iommu group 0
[  603.881629] ena 0000:00:06.0: ENA device version: 0.10
[  603.882375] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  603.981605] ena 0000:00:06.0: ENA Large LLQ is disabled
[  603.994383] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:35:0e:4b:85:af
[  604.006113] ena 0000:00:06.0 ens6: renamed from eth0 (while UP)
[  623.525105] vfio-pci 0000:00:06.0: Adding to iommu group 0
[  623.526525] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[  792.572724] vfio-pci 0000:00:06.0: resetting
[  792.789394] vfio-pci 0000:00:06.0: reset done
[  792.790951] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:8958)
[  792.792344] vfio-pci 0000:00:06.0: resetting
[  793.009202] vfio-pci 0000:00:06.0: reset done
[  865.361968] vfio-pci 0000:00:06.0: Removing from iommu group 0
[  866.375058] ena 0000:00:06.0: ENA device version: 0.10
[  866.375809] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[  866.475840] ena 0000:00:06.0: ENA Large LLQ is disabled
[  866.488479] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:35:0e:4b:85:af
[  866.496749] ena 0000:00:06.0 ens6: renamed from eth0
[ 1295.331177] vfio-pci 0000:00:06.0: Adding to iommu group 0
[ 1295.332618] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1378.721786] vfio-pci 0000:00:06.0: resetting
[ 1378.946336] vfio-pci 0000:00:06.0: reset done
[ 1378.947892] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (echo:10043)
[ 1378.949308] vfio-pci 0000:00:06.0: resetting
[ 1379.166260] vfio-pci 0000:00:06.0: reset done

sender-console-output.log (PCI/driver events only)

[ 1197.742764] vfio-pci 0000:00:06.0: resetting
[ 1197.959667] vfio-pci 0000:00:06.0: reset done
[ 1258.474169] vfio-pci 0000:00:06.0: Removing from iommu group 0
[ 1259.486754] ena 0000:00:06.0: ENA device version: 0.10
[ 1259.487530] ena 0000:00:06.0: ENA controller version: 0.0.1 implementation version 1
[ 1259.586733] ena 0000:00:06.0: ENA Large LLQ is disabled
[ 1259.598838] ena 0000:00:06.0: Elastic Network Adapter (ENA) found at mem c0508000, mac addr 02:49:e8:e0:60:09
[ 1259.607313] ena 0000:00:06.0 ens6: renamed from eth0
[ 1288.510363] vfio-pci 0000:00:06.0: Adding to iommu group 0
[ 1288.511813] vfio-pci 0000:00:06.0: Adding kernel taint for vfio-noiommu group on device
[ 1394.151451] vfio-pci 0000:00:06.0: resetting
[ 1394.375403] vfio-pci 0000:00:06.0: reset done
[ 1394.376961] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:10115)
[ 1394.378532] vfio-pci 0000:00:06.0: resetting
[ 1394.595209] vfio-pci 0000:00:06.0: reset done
[ 1394.882959] vfio-pci 0000:00:06.0: resetting
[ 1395.095238] vfio-pci 0000:00:06.0: reset done
[ 1395.096798] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:10135)
[ 1395.098367] vfio-pci 0000:00:06.0: resetting
[ 1395.315231] vfio-pci 0000:00:06.0: reset done
[ 1396.604777] vfio-pci 0000:00:06.0: resetting
[ 1396.825260] vfio-pci 0000:00:06.0: reset done
[ 1396.826807] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:10158)
[ 1396.828392] vfio-pci 0000:00:06.0: resetting
[ 1397.045217] vfio-pci 0000:00:06.0: reset done
[ 1398.334770] vfio-pci 0000:00:06.0: resetting
[ 1398.555199] vfio-pci 0000:00:06.0: reset done
[ 1398.556758] vfio-pci 0000:00:06.0: vfio-noiommu device opened by user (tokio-rt-worker:10181)
[ 1398.558325] vfio-pci 0000:00:06.0: resetting
[ 1398.775166] vfio-pci 0000:00:06.0: reset done

@gspivey gspivey merged commit c5e0e63 into development Jul 1, 2026
7 checks passed
@gspivey gspivey deleted the agent/trex-astf-offline-validate branch July 1, 2026 22:46
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant