diff options
author | Daniel T. Lee <danieltimlee@gmail.com> | 2019-06-29 15:33:58 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-07-01 20:02:20 +0200 |
commit | 6e32a74a6f151c3e64d7d79e54948b8938be2cdc (patch) | |
tree | c7a2c4bbe88ad76971faf46adc92d8a4ae7de112 /samples/pktgen/README.rst | |
parent | samples: pktgen: add some helper functions for port parsing (diff) | |
download | linux-6e32a74a6f151c3e64d7d79e54948b8938be2cdc.tar.xz linux-6e32a74a6f151c3e64d7d79e54948b8938be2cdc.zip |
samples: pktgen: allow to specify destination port
Currently, kernel pktgen has the feature to specify udp destination port
for sending packet. (e.g. pgset "udp_dst_min 9")
But on samples, each of the scripts doesn't have any option to achieve this.
This commit adds the DST_PORT option to specify the target port(s) in the script.
-p : ($DST_PORT) destination PORT range (e.g. 433-444) is also allowed
Signed-off-by: Daniel T. Lee <danieltimlee@gmail.com>
Acked-by: Jesper Dangaard Brouer <brouer@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'samples/pktgen/README.rst')
-rw-r--r-- | samples/pktgen/README.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/samples/pktgen/README.rst b/samples/pktgen/README.rst index ff8929da61c5..fd39215db508 100644 --- a/samples/pktgen/README.rst +++ b/samples/pktgen/README.rst @@ -20,6 +20,7 @@ across the sample scripts. Usage example is printed on errors:: -s : ($PKT_SIZE) packet size -d : ($DEST_IP) destination IP -m : ($DST_MAC) destination MAC-addr + -p : ($DST_PORT) destination PORT range (e.g. 433-444) is also allowed -t : ($THREADS) threads to start -f : ($F_THREAD) index of first thread (zero indexed CPU number) -c : ($SKB_CLONE) SKB clones send before alloc new SKB |