From: Pablo de Lara Date: Wed, 26 Aug 2015 07:43:09 +0000 (+0100) Subject: doc: fix ethertype filter example in testpmd guide X-Git-Tag: spdx-start~8488 X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=4a9a307a990c7318e649cd36da28665b87242e0e;p=dpdk.git doc: fix ethertype filter example in testpmd guide The two examples of ethertype_filter in testpmd documentation were missing the mac address field, so the example was incorrect. Signed-off-by: Pablo de Lara --- diff --git a/doc/guides/testpmd_app_ug/testpmd_funcs.rst b/doc/guides/testpmd_app_ug/testpmd_funcs.rst index 3f076c8483..aa77a91599 100644 --- a/doc/guides/testpmd_app_ug/testpmd_funcs.rst +++ b/doc/guides/testpmd_app_ug/testpmd_funcs.rst @@ -1469,8 +1469,8 @@ Example, to add/remove an ethertype filter rule: .. code-block:: console - testpmd> ethertype_filter 0 add mac_ignr ethertype 0x0806 fwd queue 3 - testpmd> ethertype_filter 0 del mac_ignr ethertype 0x0806 fwd queue 3 + testpmd> ethertype_filter 0 add mac_ignr 00:11:22:33:44:55 ethertype 0x0806 fwd queue 3 + testpmd> ethertype_filter 0 del mac_ignr 00:11:22:33:44:55 ethertype 0x0806 fwd queue 3 2tuple_filter ~~~~~~~~~~~~~~~~~