From b3058600635bb1d35339acd329ae39ad6dd74d62 Mon Sep 17 00:00:00 2001 From: sump pump Date: Tue, 28 Apr 2020 04:17:15 +0000 Subject: [PATCH] Bird needs semicolons --- bird/bird.conf.tmpl | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/bird/bird.conf.tmpl b/bird/bird.conf.tmpl index 63c684f..30622f0 100644 --- a/bird/bird.conf.tmpl +++ b/bird/bird.conf.tmpl @@ -1,22 +1,22 @@ log stderr all; # Using docker; defer logging to stderr debug protocols all; # Enable debugging -router id ${address} +router id ${address}; protocol bgp { - description "Lixonet BGP uplink for ${address} (ASN: {$asn})" + description "Lixonet BGP uplink for ${address} (ASN: {$asn})"; - local as ${asn} - source address ${address} # What local address we use for the TCP connection + local as ${asn}; + source address ${address}; # What local address we use for the TCP connection path metric 1; # Prefer routes with shorter paths (like Cisco does) } # Define a template to use when connecting to other BGP clients template bgp lixonet_client { - local as ${asn} + local as ${asn}; } # Neighbor protocol bgp test from lixonet_client { - neighbor 172.30.0.16 as 4206969016 + neighbor 172.30.0.16 as 4206969016; }