Difference between revisions of "Bgp frr"

From Teknologisk videncenter
Jump to: navigation, search
m
m
 
Line 1: Line 1:
 
=Example=
 
=Example=
 +
Enable bgp daemon in /etc/frr/daemons
 +
<source lang=bash>
 +
bgpd=yes
 +
</source>
 +
 +
Example configuration - notice ebgp policies and import-check are disabled
 
<source lang=bash>
 
<source lang=bash>
 
router bgp 4000
 
router bgp 4000

Latest revision as of 08:03, 9 February 2025

Example

Enable bgp daemon in /etc/frr/daemons

bgpd=yes

Example configuration - notice ebgp policies and import-check are disabled

router bgp 4000
 no bgp ebgp-requires-policy
 no bgp network import-check
 neighbor 3.3.4.1 remote-as 3320
 neighbor 3.3.4.1 update-source eth0
exit

Links