Forrest logo
back to the birdc tool

birdc:tldr:a342d

birdc: Show all details of all routes from a given prefix.
$ birdc show route for ${fd00:-8} all
try on your machine

This command is using the "birdc" utility to display the routing information for a particular network prefix.

Here's a breakdown of the components:

  • birdc: It refers to the "birdc" command-line utility, which is the control interface for the BIRD (Border Gateway Protocol/OSPF/RIP routing daemon) routing software used in Linux operating systems.

  • show route: This part indicates that we want to display the routing table or routes.

  • for ${fd00:-8}: It specifies the network prefix for which we want to show routes. ${fd00:-8} is a variable that may contain a network prefix. If the variable is not defined, it defaults to the prefix "fd00/8". The fd00/8 prefix is commonly used for private IPv6 networks.

  • all: This option includes all routes available, regardless of their status.

So, when executed, this command will show the routing information for the specified network prefix (either the one defined by the variable or the default fd00/8 prefix), including all available routes.

This explanation was created by an AI. In most cases those are correct. But please always be careful and never run a command you are not sure if it is safe.
back to the birdc tool