Difference between revisions of "Bgp frr"

From Teknologisk videncenter
Jump to: navigation, search
(Created page with "=Example= <source lang=bash> 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 ex...")
 
m
 
(One intermediate revision by the same user not shown)
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
Line 8: Line 14:
 
exit
 
exit
 
</source>
 
</source>
 +
=Links=
 +
*https://docs.frrouting.org/en/latest/bgp.html
 +
*https://www.watchguard.com/help/docs/help-center/en-us/content/en-us/fireware/dynamicrouting/bgp_sample_frr.html
 +
[[CAtegory:Network]][[Category:frr]]

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