summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorViacheslav Hletenko <v.gletenko@vyos.io>2026-01-30 16:39:03 +0200
committerGitHub <noreply@github.com>2026-01-30 16:39:03 +0200
commite30fc2f040a31649e9f2f5b25e883be97003785e (patch)
tree4e9b66b4196f7b531218a4893bce96b089cd6100
parent670e9bb98bc1123e81b4bd99983b4ef8b9d5833c (diff)
parentb6f7cbda1580e20d40d82e619d3731a3cef2c8c8 (diff)
downloadvyos-documentation-e30fc2f040a31649e9f2f5b25e883be97003785e.tar.gz
vyos-documentation-e30fc2f040a31649e9f2f5b25e883be97003785e.zip
Merge pull request #1749 from alexk37/vpp-bond-example
vpp: fix bonding interface examples
-rw-r--r--docs/vpp/configuration/interfaces/bonding.rst6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/vpp/configuration/interfaces/bonding.rst b/docs/vpp/configuration/interfaces/bonding.rst
index 1f287c4e..3d5c71cf 100644
--- a/docs/vpp/configuration/interfaces/bonding.rst
+++ b/docs/vpp/configuration/interfaces/bonding.rst
@@ -141,7 +141,7 @@ For detailed information about kernel interface integration, see :doc:`kernel`.
.. code-block:: none
- set vpp interfaces bonding bond0 kernel-interface vpptap0
+ set vpp interfaces bonding bond0 kernel-interface vpptun0
.. important::
@@ -169,10 +169,10 @@ Here's a complete example configuring a bonding interface with LACP:
set vpp interfaces bonding bond0 member interface eth1
# Create kernel interface for OS integration
- set vpp interfaces bonding bond0 kernel-interface vpptap0
+ set vpp interfaces bonding bond0 kernel-interface vpptun0
# Configure IP on kernel interface
- set vpp kernel-interfaces vpptap0 address 192.168.1.10/24
+ set vpp kernel-interfaces vpptun0 address 192.168.1.10/24
Best Practices
--------------