Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests: net: py: avoid all ports < 10k

When picking TCP ports to use, avoid all below 10k.
This should lower the chance of collision or running
afoul whatever random policies may be on the host.

Reviewed-by: Willem de Bruijn <willemb@google.com>
Link: https://lore.kernel.org/r/20240429144426.743476-5-kuba@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>

+1 -1
+1 -1
tools/testing/selftests/net/lib/py/utils.py
··· 77 77 """ 78 78 Get unprivileged port, for now just random, one day we may decide to check if used. 79 79 """ 80 - return random.randint(1024, 65535) 80 + return random.randint(10000, 65535) 81 81 82 82 83 83 def wait_port_listen(port, proto="tcp", ns=None, host=None, sleep=0.005, deadline=5):