From b340bc8dd928fcc2f89b46c9ad7f783d249ee78e Mon Sep 17 00:00:00 2001 From: GnomeZworc Date: Tue, 29 Apr 2025 10:54:15 +0200 Subject: [PATCH] add route reflector conf Signed-off-by: GnomeZworc --- base_data/frr/route_reflector/frr.conf | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/base_data/frr/route_reflector/frr.conf b/base_data/frr/route_reflector/frr.conf index e69de29..cdf4f83 100644 --- a/base_data/frr/route_reflector/frr.conf +++ b/base_data/frr/route_reflector/frr.conf @@ -0,0 +1,27 @@ +# default to using syslog. /etc/rsyslog.d/45-frr.conf places the log in +# /var/log/frr/frr.log +# +# Note: +# FRR's configuration shell, vtysh, dynamically edits the live, in-memory +# configuration while FRR is running. When instructed, vtysh will persist the +# live configuration to this file, overwriting its contents. If you want to +# avoid this, you can edit this file manually before starting FRR, or instruct +# vtysh to write configuration to a different file. +log syslog informational +router bgp 65000 + bgp router-id 192.168.14.100 + bgp cluster-id 192.168.14.100 + bgp log-neighbor-changes + no bgp default ipv4-unicast + neighbor fabric peer-group + neighbor fabric remote-as 65000 + neighbor fabric capability extended-nexthop + neighbor fabric update-source 192.168.14.100 + bgp listen range 192.168.14.0/24 peer-group fabric + ! + address-family l2vpn evpn + neighbor fabric activate + neighbor fabric route-reflector-client + exit-address-family + ! +! \ No newline at end of file