Replace all post_url with Hugo ref blocks

This commit is contained in:
2024-08-05 01:43:55 +02:00
parent c1f1775c91
commit a2f10236a3
56 changed files with 221 additions and 241 deletions

View File

@ -28,7 +28,7 @@ configured.
## My test setup
I've extended the setup from the [first post]({% post_url 2021-08-12-vpp-1 %}). The base
I've extended the setup from the [first post]({{< ref "2021-08-12-vpp-1" >}}). The base
configuration for the `enp66s0f0` interface remains exactly the same, but I've also added
an LACP `bond0` interface, which also has the whole kitten kaboodle of sub-interfaces defined, see
below in the Appendix for details, but here's the table again for reference:
@ -51,7 +51,7 @@ made to the plugin, in order to automatically create and delete sub-interfaces.
### Startingpoint
Based on the state of the plugin after the [second post]({% post_url 2021-08-13-vpp-2 %}),
Based on the state of the plugin after the [second post]({{< ref "2021-08-13-vpp-2" >}}),
operators must create _LIP_ instances for interfaces as well as each sub-interface
explicitly:
@ -124,7 +124,7 @@ The code for the configuration toggle is in this
The original plugin code (that ships with VPP 21.06) made a start by defining a function called
`lcp_itf_phy_add()` and registering an intent with `VNET_SW_INTERFACE_ADD_DEL_FUNCTION()`. I've
moved the function to the source file I created in [Part 2]({% post_url 2021-08-13-vpp-2 %})
moved the function to the source file I created in [Part 2]({{< ref "2021-08-13-vpp-2" >}})
(called `lcp_if_sync.c`), specifically to handle interface syncing, and gave it a name that
matches the VPP callback, so `lcp_itf_interface_add_del()`.