Configuring BGP Hold Down Timers
BGP (Border Gateway Protocol) hold timers are critical for maintaining stable BGP sessions between routers. This document will guide you through configuring the BGP hold down timers to 5 seconds for the keepalive interval and 15 seconds for the hold time.
Prerequisites
- Basic BGP Configuration: You should have a basic BGP configuration set up.
- Basic Knowledge of FRR Configuration: Familiarity with FRR configuration commands and procedures.
Configuration Steps
Step 1: Setup BGP
- Create a new External Network.
- Set its IP address type to BGP/OSPF.
- Set an ASN (Autonomous System Number).
- Define the IP address and Network Address.
- If this is a VLAN, configure the Layer 2 ID.
- Select an interface network.
Step 2: Open the BGP Network
- Open the network you created.
- Select Routers from the left menu.
- Open the ASN you defined during network creation.
- Select New from the left menu.
- Select Timers from the command menu.
- Under Parameters, enter
bgp x y
wherex
is the keepalive interval andy
is the hold time. For example,bgp 5 15
. - Select Submit. This will return you to the Router page.
- Navigate back to the BGP network. A restart is required for the recent changes to take effect. Click Restart to apply changes.
Step 3: Verify the Setting
- Navigate back to the BGP network you configured.
- Select Network Diagnostics from the left menu.
- Choose FRRRouting BGP/OSPF from the Query dropdown.
- Run the default command
show running-config
. - The settings modified in Step 2 should now appear in the running configuration.
For more information on other values and variables, refer to the FRR documentation.