From a37ad82030ea5288fb82c2581ef32eb17708b1cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20K=C3=BCthe?= Date: Sun, 8 Jan 2023 00:33:56 +0100 Subject: [PATCH] rename placeholders MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marek Küthe --- docs/routing/babeld/babeld.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/routing/babeld/babeld.md b/docs/routing/babeld/babeld.md index 0ef456e..02112ef 100644 --- a/docs/routing/babeld/babeld.md +++ b/docs/routing/babeld/babeld.md @@ -158,14 +158,14 @@ dump ``` This should produce an output according to the following scheme: ``` -add interface up true ipv6 +add interface up true ipv6 ``` -The configured interfaces are displayed here. Here `` is the interface name and `` is the own IPv6 link-local address. +The configured interfaces are displayed here. Here `` is the interface name and `` is the own IPv6 link-local address. ``` -add neighbour address if reach ffff ureach 0000 rxcost txcost cost +add neighbour address if reach ffff ureach 0000 rxcost txcost cost ``` -The babel neighbors are displayed here. Here `` is the router ID of the neighbor. `` is the link-local address of the peer and `` is the interface over which the peer is connected. `` describes the amount of cost it takes to send data from the peer to us. These costs are set by us manually or automatically by babeld. +The babel neighbors are displayed here. Here `` is the router ID of the neighbor. `` is the link-local address of the peer and `` is the interface over which the peer is connected. `` describes the amount of cost it takes to send data from the peer to us. These costs are set by us manually or automatically by babeld. `` describes the amount of cost it takes to send data to the peer. This value is set by the peer. ``` @@ -174,9 +174,9 @@ add xroute -::/0 prefix from ::/0 metric 0 The networks that originate from us are displayed here. This should only be our own network. Here `` is the network we originate. ``` -add route prefix from ::/0 installed id metric refmetric via if +add route prefix from ::/0 installed id metric refmetric via if ``` -The routes learned from the babel neighbors are displayed here. Here `` is the router ID of the neighbor and `` is the prefix learned about the neighbor. `` is either `yes` or `no`. If `yes` the route was exported to the kernel, if `no` it was not. `` shows the cost of consuming to reach the prefix via this route. `` shows the cost our neighbor needs to reach the prefix. `` shows the nexthop, which is normally the IPv6 link-local address of our neighbor. `` shows the interface this route goes through. +The routes learned from the babel neighbors are displayed here. Here `` is the router ID of the neighbor and `` is the prefix learned about the neighbor. `` is either `yes` or `no`. If `yes` the route was exported to the kernel, if `no` it was not. `` shows the cost of consuming to reach the prefix via this route. `` shows the cost our neighbor needs to reach the prefix. `` shows the nexthop, which is normally the IPv6 link-local address of our neighbor. `` shows the interface this route goes through. ## Further links