diff options
author | Nathan Skrzypczak <nathan.skrzypczak@gmail.com> | 2021-09-29 15:37:34 +0200 |
---|---|---|
committer | Beno�t Ganne <bganne@cisco.com> | 2021-10-04 08:26:43 +0000 |
commit | d0ea764a5d7370747ca3dbb1288c62ee5ccba67c (patch) | |
tree | 415eda014b883d1572a6b9fcb1b28c77907c1bbc /src/plugins/geneve | |
parent | ddb192951c160c7bdb2c630a781b9a4878dae09a (diff) |
docs: plugin comment nitfixes
Type: improvement
Change-Id: Ib7e2f5f314144064de7b6be0fade3db2f9c943fe
Signed-off-by: Nathan Skrzypczak <nathan.skrzypczak@gmail.com>
Diffstat (limited to 'src/plugins/geneve')
-rw-r--r-- | src/plugins/geneve/geneve.c | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/src/plugins/geneve/geneve.c b/src/plugins/geneve/geneve.c index 62502ef3fde..5bd612257a5 100644 --- a/src/plugins/geneve/geneve.c +++ b/src/plugins/geneve/geneve.c @@ -995,7 +995,7 @@ set_ip4_geneve_bypass (vlib_main_t * vm, /*? * This command adds the 'ip4-geneve-bypass' graph node for a given interface. * By adding the IPv4 geneve-bypass graph node to an interface, the node checks - * for and validate input geneve packet and bypass ip4-lookup, ip4-local, + * for and validate input geneve packet and bypass ip4-lookup, ip4-local, * ip4-udp-lookup nodes to speedup geneve packet forwarding. This node will * cause extra overhead to for non-geneve packets which is kept at a minimum. * @@ -1014,13 +1014,13 @@ set_ip4_geneve_bypass (vlib_main_t * vm, * * Example of graph node after ip4-geneve-bypass is enabled: * @cliexstart{show vlib graph ip4-geneve-bypass} - * Name Next Previous - * ip4-geneve-bypass error-drop [0] ip4-input - * geneve4-input [1] ip4-input-no-checksum - * ip4-lookup [2] + * Name Next Previous + * ip4-geneve-bypass error-drop [0] ip4-input + * geneve4-input [1] ip4-input-no-checksum + * ip4-lookup [2] * @cliexend * - * Example of how to display the feature enabed on an interface: + * Example of how to display the feature enabled on an interface: * @cliexstart{show ip interface features GigabitEthernet2/0/0} * IP feature paths configured on GigabitEthernet2/0/0... * ... @@ -1052,7 +1052,7 @@ set_ip6_geneve_bypass (vlib_main_t * vm, /*? * This command adds the 'ip6-geneve-bypass' graph node for a given interface. * By adding the IPv6 geneve-bypass graph node to an interface, the node checks - * for and validate input geneve packet and bypass ip6-lookup, ip6-local, + * for and validate input geneve packet and bypass ip6-lookup, ip6-local, * ip6-udp-lookup nodes to speedup geneve packet forwarding. This node will * cause extra overhead to for non-geneve packets which is kept at a minimum. * @@ -1071,13 +1071,13 @@ set_ip6_geneve_bypass (vlib_main_t * vm, * * Example of graph node after ip6-geneve-bypass is enabled: * @cliexstart{show vlib graph ip6-geneve-bypass} - * Name Next Previous - * ip6-geneve-bypass error-drop [0] ip6-input - * geneve6-input [1] ip4-input-no-checksum - * ip6-lookup [2] + * Name Next Previous + * ip6-geneve-bypass error-drop [0] ip6-input + * geneve6-input [1] ip4-input-no-checksum + * ip6-lookup [2] * @cliexend * - * Example of how to display the feature enabed on an interface: + * Example of how to display the feature enabled on an interface: * @cliexstart{show ip interface features GigabitEthernet2/0/0} * IP feature paths configured on GigabitEthernet2/0/0... * ... |