Bird needs semicolons
This commit is contained in:
parent
2dfdfd358b
commit
b305860063
@ -1,22 +1,22 @@
|
|||||||
log stderr all; # Using docker; defer logging to stderr
|
log stderr all; # Using docker; defer logging to stderr
|
||||||
debug protocols all; # Enable debugging
|
debug protocols all; # Enable debugging
|
||||||
|
|
||||||
router id ${address}
|
router id ${address};
|
||||||
|
|
||||||
protocol bgp {
|
protocol bgp {
|
||||||
description "Lixonet BGP uplink for ${address} (ASN: {$asn})"
|
description "Lixonet BGP uplink for ${address} (ASN: {$asn})";
|
||||||
|
|
||||||
local as ${asn}
|
local as ${asn};
|
||||||
source address ${address} # What local address we use for the TCP connection
|
source address ${address}; # What local address we use for the TCP connection
|
||||||
path metric 1; # Prefer routes with shorter paths (like Cisco does)
|
path metric 1; # Prefer routes with shorter paths (like Cisco does)
|
||||||
}
|
}
|
||||||
|
|
||||||
# Define a template to use when connecting to other BGP clients
|
# Define a template to use when connecting to other BGP clients
|
||||||
template bgp lixonet_client {
|
template bgp lixonet_client {
|
||||||
local as ${asn}
|
local as ${asn};
|
||||||
}
|
}
|
||||||
|
|
||||||
# Neighbor
|
# Neighbor
|
||||||
protocol bgp test from lixonet_client {
|
protocol bgp test from lixonet_client {
|
||||||
neighbor 172.30.0.16 as 4206969016
|
neighbor 172.30.0.16 as 4206969016;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user