diff options
Diffstat (limited to 'test/test_sflow.py')
-rw-r--r-- | test/test_sflow.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test_sflow.py b/test/test_sflow.py index d16c0e6a804..d37ed84f252 100644 --- a/test/test_sflow.py +++ b/test/test_sflow.py @@ -108,7 +108,7 @@ class SFlowTestCase(VppTestCase): p = ( Ether(dst=src_if.local_mac, src=src_if.remote_mac) / IP(src=src_if.remote_ip4, dst=dst_if.remote_ip4) - / UDP(sport=randint(1000, 2000), dport=5678) + / UDP(sport=randint(49152, 65535), dport=5678) / Raw(payload) ) # store a copy of the packet in the packet info |