sign: Clear ARP/NDP cache & ping before tx in test script
This helps setting ARP/NDP such that they do not expire during tx for unidirectional flows
This commit is contained in:
parent
58a16a253e
commit
72521f782e
@ -446,9 +446,24 @@ def test_unidir(drone, ports, dut, dut_ports, dut_ip, emul_ports, dgid_list,
|
|||||||
drone.resolveDeviceNeighbors(emul_ports)
|
drone.resolveDeviceNeighbors(emul_ports)
|
||||||
time.sleep(3)
|
time.sleep(3)
|
||||||
|
|
||||||
|
# clear ARP/NDP cache before ping from DUT to devices
|
||||||
|
# - this helps set up ARP/NDP on DUT so that it doesn't age out
|
||||||
|
# while traffic is flowing
|
||||||
|
sudo('ip neigh flush all')
|
||||||
|
out = run('ping -c3 10.10.1.101', warn_only=True)
|
||||||
|
assert '100% packet loss' not in out
|
||||||
|
out = run('ping -c3 10.10.2.101', warn_only=True)
|
||||||
|
assert '100% packet loss' not in out
|
||||||
|
out = run('ping -6 -c3 1234:1::65', warn_only=True)
|
||||||
|
assert '100% packet loss' not in out
|
||||||
|
out = run('ping -6 -c3 1234:2::65', warn_only=True)
|
||||||
|
assert '100% packet loss' not in out
|
||||||
|
|
||||||
# FIXME: dump ARP/NDP table on devices and DUT
|
# FIXME: dump ARP/NDP table on devices and DUT
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
#run('ip -6 neigh show')
|
||||||
|
|
||||||
drone.startCapture(ports.y)
|
drone.startCapture(ports.y)
|
||||||
drone.startCapture(ports.x)
|
drone.startCapture(ports.x)
|
||||||
time.sleep(1)
|
time.sleep(1)
|
||||||
@ -460,6 +475,8 @@ def test_unidir(drone, ports, dut, dut_ports, dut_ip, emul_ports, dgid_list,
|
|||||||
drone.stopCapture(ports.x)
|
drone.stopCapture(ports.x)
|
||||||
drone.stopCapture(ports.y)
|
drone.stopCapture(ports.y)
|
||||||
|
|
||||||
|
#run('ip -6 neigh show')
|
||||||
|
|
||||||
# verify port stats
|
# verify port stats
|
||||||
x_stats = drone.getStats(ports.x)
|
x_stats = drone.getStats(ports.x)
|
||||||
log.info('--> (x_stats)' + x_stats.__str__())
|
log.info('--> (x_stats)' + x_stats.__str__())
|
||||||
|
Loading…
Reference in New Issue
Block a user