The dumpcap application supports an interface parameter via the `-i` [1] option however the current documentation utilizes a `-I` flag.
[1] https://git.dpdk.org/dpdk/tree/app/dumpcap/main.c#n314 Fixes: cbb44143be74 ("app/dumpcap: add new packet capture application") Cc: sta...@dpdk.org Signed-off-by: Ben Magistro <konce...@gmail.com> --- doc/guides/tools/dumpcap.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/guides/tools/dumpcap.rst b/doc/guides/tools/dumpcap.rst index 6fa284380c..d8a137b1cd 100644 --- a/doc/guides/tools/dumpcap.rst +++ b/doc/guides/tools/dumpcap.rst @@ -43,7 +43,7 @@ To list interfaces available for capture, use ``--list-interfaces``. To filter packets in style of *tshark*, use the ``-f`` flag. -To capture on multiple interfaces at once, use multiple ``-I`` flags. +To capture on multiple interfaces at once, use multiple ``-i`` flags. Example @@ -55,7 +55,7 @@ Example 0. 000:00:03.0 1. 000:00:03.1 - # <build_dir>/app/dpdk-dumpcap -I 0000:00:03.0 -c 6 -w /tmp/sample.pcapng + # <build_dir>/app/dpdk-dumpcap -i 0000:00:03.0 -c 6 -w /tmp/sample.pcapng Packets captured: 6 Packets received/dropped on interface '0000:00:03.0' 6/0 -- 2.27.0