On 14/05/2024 21:14, jspew...@iol.unh.edu wrote:
+            # adjust the MTU of the SUT ports
+            testpmd.set_port_mtu(0, 9000)
+            testpmd.set_port_mtu(1, 9000)

should you perhaps do this for every port in the testpmd shell instead?

  for port_id in range(testpmd.number_of_ports):
      testpmd.set_port_mtu(port_id, 9000)

              testpmd.stop()
+            # reset the MTU of the SUT ports
+            testpmd.set_port_mtu(0, 1500)
+            testpmd.set_port_mtu(1, 1500)

As above

Reply via email to