1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 16:42:08 +02:00
tldr/pages/common/birdc.md
Vitor Henrique c8f956319f
pages*: simplify page description (#12149)
Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-02-14 21:25:13 +01:00

37 lines
738 B
Markdown

# birdc
> BIRD remote control.
> Retrieve information like routes from bird and perform configurations during runtime.
> More information: <https://bird.network.cz/>.
- Open the remote control console:
`birdc`
- Reload the configuration without restarting BIRD:
`birdc configure`
- Show the current status of BIRD:
`birdc show status`
- Show all configured protocols:
`birdc show protocols`
- Show all details about a protocol:
`birdc show protocols {{upstream1}} all`
- Show all routes that contain a specific AS number:
`birdc "show route where bgp_path ~ [{{4242120045}}]"`
- Show all best routes:
`birdc show route primary`
- Show all details of all routes from a given prefix:
`birdc show route for {{fd00:/8}} all`