From 0ddbd33d330d819a05509a2080afac3b73090150 Mon Sep 17 00:00:00 2001 From: Jesper Hess Nielsen Date: Sun, 14 Oct 2018 10:35:25 +0200 Subject: [PATCH] local4.conf needs to be included before its variables are used... --- bird.conf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/bird.conf b/bird.conf index 8ab2772..5c5c5e3 100644 --- a/bird.conf +++ b/bird.conf @@ -3,6 +3,9 @@ log "/var/log/bird.log" { debug, trace, info, remote, warning, error, auth, fata table T_BGP; table T_OSPF; +include "/etc/bird/local4.conf"; +include "/etc/bird/filter4.conf"; + protocol device { scan time 10; } @@ -26,8 +29,6 @@ protocol kernel { }; } -include "/etc/bird/local4.conf"; -include "/etc/bird/filter4.conf"; include "/etc/bird/community_filters.conf"; include "/etc/bird/ospf4.conf"; include "/etc/bird/bgp4.conf";