From 67b9b7b2683b40a649845700cd1b5d24ae647770 Mon Sep 17 00:00:00 2001 From: Timotej Lazar Date: Mon, 13 Jan 2025 14:57:38 +0100 Subject: [PATCH] frr: disable BFD There were some issues with proxmox cluster losing connectivity. Since disabling it there were no more issues. Might have not been caused by BFD or it was just misconfigured. --- roles/frr/tasks/main.yml | 1 - roles/frr/templates/frr.conf.j2 | 1 - 2 files changed, 2 deletions(-) diff --git a/roles/frr/tasks/main.yml b/roles/frr/tasks/main.yml index 42131ec..fdc3dad 100644 --- a/roles/frr/tasks/main.yml +++ b/roles/frr/tasks/main.yml @@ -20,7 +20,6 @@ regexp: "^{{ item }}=" line: "{{ item }}=yes" loop: - - bfdd - bgpd notify: restart frr diff --git a/roles/frr/templates/frr.conf.j2 b/roles/frr/templates/frr.conf.j2 index f42df43..c185a68 100644 --- a/roles/frr/templates/frr.conf.j2 +++ b/roles/frr/templates/frr.conf.j2 @@ -18,7 +18,6 @@ router bgp {{ asn.asn }} {% for iface in interfaces | selectattr('name', 'match', '^lan') %} neighbor {{ iface.name }} interface peer-group fabric - neighbor {{ iface.name }} bfd {% endfor %} address-family ipv4 unicast