2020-05-20 23:12:03 +00:00
|
|
|
# Lixonet BIRD configuration
|
|
|
|
# This is a templated file that automatically generates values at configuration time
|
|
|
|
# If you edit this file, it will be overwritten. Changes to the general structure of
|
|
|
|
# this configuration file that should be persisted should be committed to Git.
|
|
|
|
# For BIRD 2.0 configuration reference, see:
|
|
|
|
# https://bird.network.cz/?get_doc&f=bird.html&v=20
|
2020-05-20 23:39:14 +00:00
|
|
|
# For a great example configuration file, see:
|
|
|
|
# https://fossies.org/linux/bird/doc/bird.conf.example
|
2020-05-20 23:12:03 +00:00
|
|
|
|
|
|
|
# Global variables
|
2020-05-20 23:39:14 +00:00
|
|
|
# See: https://bird.network.cz/?get_doc&v=20&f=bird-3.html#ss3.2
|
2020-05-20 23:12:03 +00:00
|
|
|
|
2020-05-20 23:39:14 +00:00
|
|
|
log stderr all; # Using docker; defer logging to stderr (to Docker logs)
|
|
|
|
debug protocols all; # Enable debugging (this should be switched off in prod)
|
Update build.sh, README.md, bird/bird.conf.tmpl, tinc/subnet-down.tmpl, tinc/subnet-up.tmpl, tinc/tinc-up.tmpl, tinc/tinc.conf.tmpl, docker-compose.yml files
Deleted gortr/roas.json, tinc/lixonet/hosts/daltx_nurd_lixo, tinc/lixonet/hosts/denco_mane_lixo, tinc/lixonet/hosts/inwwv_nurd_lixo, tinc/lixonet/hosts/lkwco_mane_lixo, tinc/lixonet/hosts/manva_nurd_lixo, tinc/lixonet/subnet-down.tmpl, tinc/lixonet/subnet-up.tmpl, tinc/lixonet/tinc-up.tmpl, tinc/lixonet/tinc.conf.tmpl, bird/rpki/hosts/denco_mane_lixo, bird/rpki/known_hosts, bird/neighbors/daltx_nurd_lixo, bird/neighbors/denco_mane_lixo, bird/neighbors/glaz_nurd_lixo, bird/neighbors/lkwco_mane_lixo, bird/neighbors/phxaz_nurd_lixo files
2020-05-21 21:22:04 +00:00
|
|
|
router id ${tinc_peer_address};
|
2020-04-28 04:16:29 +00:00
|
|
|
|
2020-05-21 00:34:48 +00:00
|
|
|
# Custom routing tables
|
2020-05-21 03:00:50 +00:00
|
|
|
# See: https://bird.network.cz/?get_doc&v=20&f=bird-2.html (recommended read)
|
Update build.sh, README.md, bird/bird.conf.tmpl, tinc/subnet-down.tmpl, tinc/subnet-up.tmpl, tinc/tinc-up.tmpl, tinc/tinc.conf.tmpl, docker-compose.yml files
Deleted gortr/roas.json, tinc/lixonet/hosts/daltx_nurd_lixo, tinc/lixonet/hosts/denco_mane_lixo, tinc/lixonet/hosts/inwwv_nurd_lixo, tinc/lixonet/hosts/lkwco_mane_lixo, tinc/lixonet/hosts/manva_nurd_lixo, tinc/lixonet/subnet-down.tmpl, tinc/lixonet/subnet-up.tmpl, tinc/lixonet/tinc-up.tmpl, tinc/lixonet/tinc.conf.tmpl, bird/rpki/hosts/denco_mane_lixo, bird/rpki/known_hosts, bird/neighbors/daltx_nurd_lixo, bird/neighbors/denco_mane_lixo, bird/neighbors/glaz_nurd_lixo, bird/neighbors/lkwco_mane_lixo, bird/neighbors/phxaz_nurd_lixo files
2020-05-21 21:22:04 +00:00
|
|
|
ipv4 table ${network_name:-lixonet}_v4;
|
2020-05-21 03:00:50 +00:00
|
|
|
roa4 table r4; # ROA RPKI
|
|
|
|
|
|
|
|
# RPKI
|
|
|
|
# See: https://brooks.sh/2019/11/11/validating-bgp-routes-with-rpki-in-bird/
|
2020-05-21 18:53:19 +00:00
|
|
|
#protocol rpki {
|
|
|
|
# roa4 { table r4; };
|
|
|
|
|
|
|
|
# {{ range files "bird/rpki/hosts" }} # {{.}}
|
|
|
|
# {{ file (print "bird/rpki/hosts/" .) }}
|
|
|
|
# {{ end }}
|
|
|
|
|
|
|
|
# # Time period in seconds between a failed query the next attempt
|
|
|
|
# retry keep ${bgp_rpki_retry:-90};
|
|
|
|
|
|
|
|
# # Tells how long to wait before attempting to poll the cache
|
|
|
|
# refresh keep ${bgp_rpki_refresh:-900};
|
|
|
|
|
|
|
|
# # How long to keep any records locally cached before they are deleted
|
|
|
|
# # The "refresh" interval will control how often records are refreshed
|
|
|
|
# # and not considered expired.
|
|
|
|
# expire keep ${bgp_rpki_expire:-172800};
|
|
|
|
|
|
|
|
# # Enable SSH transport, disable TCP transport (insecure)
|
|
|
|
# transport ssh {
|
|
|
|
# remote public key "${bgp_rpki_known_hosts:-/etc/bird/rpki/known_hosts}";
|
|
|
|
# user "lixonet";
|
|
|
|
# #bird private key "</path/to/id_rsa>";
|
|
|
|
# };
|
|
|
|
#}
|
2020-05-21 00:34:48 +00:00
|
|
|
|
2020-05-20 23:39:14 +00:00
|
|
|
# Filters
|
|
|
|
# Define a series of filters for Lixonet routing policies:
|
|
|
|
# - Cannot advertise a route which is in the router subnet: typically 172.x.0.0/24
|
|
|
|
# See: https://gitlab.labs.nic.cz/labs/bird/wikis/BGP_filtering
|
2020-05-21 00:49:52 +00:00
|
|
|
# For syntax docs, see: https://bird.network.cz/?get_doc&v=16&f=bird-5.html
|
2020-05-20 23:39:14 +00:00
|
|
|
|
2020-05-21 03:00:50 +00:00
|
|
|
# Returns TRUE if the given prefix is found in a kept RPKI cache.
|
|
|
|
# Returns FALSE if the given prefix is either,
|
|
|
|
# - Valid in the cached RPKI list, or
|
|
|
|
# - RPKI has not yet been established and the route cannot be validated
|
|
|
|
# From BIRD documentation (https://bird.network.cz/?get_doc&v=20&f=bird-5.html):
|
|
|
|
# roa_check: Checks the current route (which should be from BGP to
|
|
|
|
# have AS_PATH argument) in the specified ROA table and returns
|
|
|
|
# ROA_UNKNOWN if there is no relevant ROA, ROA_VALID if there is
|
|
|
|
# a matching ROA, or ROA_INVALID if there are some relevant ROAs
|
|
|
|
# but none of them match.
|
|
|
|
function is_rpki_invalid_v4 () {
|
|
|
|
return roa_check(r4, net, bgp_path.last_nonaggregated) = ROA_INVALID;
|
|
|
|
}
|
|
|
|
|
2020-05-21 23:45:25 +00:00
|
|
|
# Returns TRUE if the given tested network is the exact global network prefix for
|
|
|
|
# Lixonet. Used to filter the "unreachable" static route we typically static.
|
|
|
|
function is_exact_lixonet_global_v4()
|
|
|
|
{
|
|
|
|
return net ~ [ ${network_address}/${global_prefix:-16} ];
|
|
|
|
}
|
|
|
|
|
2020-05-20 23:39:14 +00:00
|
|
|
# Returns TRUE if the given tested network is within the global network prefix for
|
|
|
|
# Lixonet. Used to filter networks outside of this range as they are not within
|
|
|
|
# the global mesh network.
|
2020-05-21 03:00:50 +00:00
|
|
|
function is_lixonet_global_v4()
|
2020-05-20 23:39:14 +00:00
|
|
|
{
|
2020-05-21 00:55:26 +00:00
|
|
|
return net ~ [ ${network_address}/${global_prefix:-16}+ ];
|
2020-05-20 23:39:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
# Returns TRUE if the given tested network is within the router network prefix for
|
|
|
|
# Lixonet. Used to filter these routes from BGP as Tinc statically assigns them
|
|
|
|
# for us. Helps prevent a security vulnerability of hijacking another router.
|
2020-05-21 03:00:50 +00:00
|
|
|
function is_lixonet_router_v4()
|
2020-05-20 23:39:14 +00:00
|
|
|
{
|
2020-05-21 00:55:26 +00:00
|
|
|
return net ~ [ ${network_address}/${router_prefix:-24}+ ];
|
2020-05-20 23:39:14 +00:00
|
|
|
}
|
|
|
|
|
2020-05-21 03:00:50 +00:00
|
|
|
function is_own_route_v4()
|
2020-05-21 01:49:27 +00:00
|
|
|
{
|
2020-05-21 22:56:04 +00:00
|
|
|
{{ if len "${bgp_routes:-}" }}{{ range "$bgp_routes" | split "," }}if net ~ [ {{.}}+ ] then return true;
|
2020-05-21 01:56:54 +00:00
|
|
|
{{ end }}{{ end }}
|
2020-05-21 01:56:08 +00:00
|
|
|
return false;
|
2020-05-21 01:49:27 +00:00
|
|
|
}
|
|
|
|
|
2020-05-21 03:00:50 +00:00
|
|
|
filter bgp_import_filter_v4
|
2020-05-20 23:39:14 +00:00
|
|
|
{
|
2020-05-21 01:49:27 +00:00
|
|
|
if source ~ [RTS_STATIC] then reject; # Reject our own routes
|
2020-05-21 03:00:50 +00:00
|
|
|
if is_rpki_invalid_v4() then reject; # Reject posions
|
|
|
|
if is_lixonet_router_v4() then reject; # Reject poisons
|
|
|
|
if is_own_route_v4() then reject; # Reject poisons
|
|
|
|
if is_lixonet_global_v4() then accept; # Accept anything else
|
2020-05-21 01:49:27 +00:00
|
|
|
reject; # Reject anything else (non-Lixonet)
|
|
|
|
}
|
|
|
|
|
2020-05-21 03:00:50 +00:00
|
|
|
filter bgp_export_filter_v4
|
2020-05-21 01:49:27 +00:00
|
|
|
{
|
2020-05-21 03:00:50 +00:00
|
|
|
if is_lixonet_router_v4() then reject; # Reject poisons
|
2020-05-21 23:45:25 +00:00
|
|
|
if is_exact_lixonet_global_v4() then reject; # Reject the unreachable route
|
2020-05-21 03:00:50 +00:00
|
|
|
if is_lixonet_global_v4() then accept; # Accept anything else
|
2020-05-20 23:39:14 +00:00
|
|
|
reject; # Reject anything else (non-Lixonet)
|
|
|
|
}
|
|
|
|
|
2020-05-21 03:00:50 +00:00
|
|
|
filter kernel_export_filter_v4
|
2020-05-21 01:49:27 +00:00
|
|
|
{
|
2020-05-22 00:07:35 +00:00
|
|
|
#if is_own_route_v4() then reject; # Reject poisons
|
2020-05-21 03:00:50 +00:00
|
|
|
if is_lixonet_global_v4() then accept; # Accept anything else
|
2020-05-21 01:49:27 +00:00
|
|
|
reject; # Reject anything else (non-Lixonet)
|
|
|
|
}
|
|
|
|
|
2020-05-21 01:50:31 +00:00
|
|
|
# Static routes
|
|
|
|
# Define propagated routes here from the lixonet.conf "routes" variable
|
|
|
|
# Attached to the above "lixonet" routing table; "provide" these routes into it
|
|
|
|
# See how dn42 does it; we're very similar: https://dn42.net/howto/Bird
|
|
|
|
protocol static {
|
|
|
|
ipv4 {
|
Update build.sh, README.md, bird/bird.conf.tmpl, tinc/subnet-down.tmpl, tinc/subnet-up.tmpl, tinc/tinc-up.tmpl, tinc/tinc.conf.tmpl, docker-compose.yml files
Deleted gortr/roas.json, tinc/lixonet/hosts/daltx_nurd_lixo, tinc/lixonet/hosts/denco_mane_lixo, tinc/lixonet/hosts/inwwv_nurd_lixo, tinc/lixonet/hosts/lkwco_mane_lixo, tinc/lixonet/hosts/manva_nurd_lixo, tinc/lixonet/subnet-down.tmpl, tinc/lixonet/subnet-up.tmpl, tinc/lixonet/tinc-up.tmpl, tinc/lixonet/tinc.conf.tmpl, bird/rpki/hosts/denco_mane_lixo, bird/rpki/known_hosts, bird/neighbors/daltx_nurd_lixo, bird/neighbors/denco_mane_lixo, bird/neighbors/glaz_nurd_lixo, bird/neighbors/lkwco_mane_lixo, bird/neighbors/phxaz_nurd_lixo files
2020-05-21 21:22:04 +00:00
|
|
|
table ${network_name:-lixonet}_v4;
|
2020-05-21 01:50:31 +00:00
|
|
|
import all;
|
|
|
|
export none;
|
|
|
|
};
|
|
|
|
|
2020-05-21 23:45:25 +00:00
|
|
|
# Announce the whole network as unreachable; this returns packets that reach
|
|
|
|
# this router as unreachable (ICMP type=3, code=0) if no more specific route
|
|
|
|
# is defined for the network subnet
|
2020-05-22 00:21:51 +00:00
|
|
|
route ${network_address}/${global_prefix:-16} unreachable;
|
2020-05-21 23:45:25 +00:00
|
|
|
|
2020-05-21 01:50:31 +00:00
|
|
|
# Announced networks
|
2020-05-22 00:21:51 +00:00
|
|
|
{{ if len "${bgp_routes:-}" }}{{ range "$bgp_routes" | split "," }}route {{.}} via ${internal_gateway};
|
2020-05-21 01:57:21 +00:00
|
|
|
{{ end }}{{ end }}
|
2020-05-21 01:50:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
# Device
|
|
|
|
# See: https://bird.network.cz/?get_doc&v=20&f=bird-6.html#ss6.4
|
|
|
|
# This controls which interfaces BGP, etc. will bind to for communication
|
|
|
|
# This prevents BGP from listening on eth0/off-network
|
|
|
|
protocol device {
|
|
|
|
scan time 10; # Scan the interfaces often
|
Update build.sh, README.md, bird/bird.conf.tmpl, tinc/subnet-down.tmpl, tinc/subnet-up.tmpl, tinc/tinc-up.tmpl, tinc/tinc.conf.tmpl, docker-compose.yml files
Deleted gortr/roas.json, tinc/lixonet/hosts/daltx_nurd_lixo, tinc/lixonet/hosts/denco_mane_lixo, tinc/lixonet/hosts/inwwv_nurd_lixo, tinc/lixonet/hosts/lkwco_mane_lixo, tinc/lixonet/hosts/manva_nurd_lixo, tinc/lixonet/subnet-down.tmpl, tinc/lixonet/subnet-up.tmpl, tinc/lixonet/tinc-up.tmpl, tinc/lixonet/tinc.conf.tmpl, bird/rpki/hosts/denco_mane_lixo, bird/rpki/known_hosts, bird/neighbors/daltx_nurd_lixo, bird/neighbors/denco_mane_lixo, bird/neighbors/glaz_nurd_lixo, bird/neighbors/lkwco_mane_lixo, bird/neighbors/phxaz_nurd_lixo files
2020-05-21 21:22:04 +00:00
|
|
|
interface "${network_name:-lixonet}" {
|
|
|
|
preferred ${tinc_peer_address};
|
2020-05-21 01:50:31 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
# Direct (unnecessary for Lixonet)
|
|
|
|
# See: https://bird.network.cz/?get_doc&v=20&f=bird-6.html#ss6.5
|
|
|
|
# Disable automatically generating direct routes to all network interfaces.
|
|
|
|
protocol direct {
|
|
|
|
disabled; # Disable by default
|
|
|
|
};
|
|
|
|
|
|
|
|
# Kernel routing table
|
|
|
|
# See: https://bird.network.cz/?get_doc&v=20&f=bird.html#toc6.6
|
|
|
|
protocol kernel { # Primary routing table
|
|
|
|
learn; # Learn alien routes from the kernel
|
|
|
|
persist; # Don't remove routes on bird shutdown
|
|
|
|
scan time 10; # Scan kernel routing table every 10 seconds
|
|
|
|
ipv4 {
|
Update build.sh, README.md, bird/bird.conf.tmpl, tinc/subnet-down.tmpl, tinc/subnet-up.tmpl, tinc/tinc-up.tmpl, tinc/tinc.conf.tmpl, docker-compose.yml files
Deleted gortr/roas.json, tinc/lixonet/hosts/daltx_nurd_lixo, tinc/lixonet/hosts/denco_mane_lixo, tinc/lixonet/hosts/inwwv_nurd_lixo, tinc/lixonet/hosts/lkwco_mane_lixo, tinc/lixonet/hosts/manva_nurd_lixo, tinc/lixonet/subnet-down.tmpl, tinc/lixonet/subnet-up.tmpl, tinc/lixonet/tinc-up.tmpl, tinc/lixonet/tinc.conf.tmpl, bird/rpki/hosts/denco_mane_lixo, bird/rpki/known_hosts, bird/neighbors/daltx_nurd_lixo, bird/neighbors/denco_mane_lixo, bird/neighbors/glaz_nurd_lixo, bird/neighbors/lkwco_mane_lixo, bird/neighbors/phxaz_nurd_lixo files
2020-05-21 21:22:04 +00:00
|
|
|
table ${network_name:-lixonet}_v4;
|
2020-05-21 01:50:31 +00:00
|
|
|
import none; # Don't try to import any routes from the kernel
|
2020-05-21 03:00:50 +00:00
|
|
|
export filter kernel_export_filter_v4; # Export everything we are told to the kernel
|
2020-05-21 01:50:31 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2020-05-20 23:12:03 +00:00
|
|
|
# BGP (primary Lixonet routing protocol)
|
2020-05-20 23:39:14 +00:00
|
|
|
# This is a template to use when connecting to other BGP clients on the EE network
|
|
|
|
# This template is applied to ALL neighbors, so consider these global settings that
|
|
|
|
# apply to all neighbors. See "Neighbors" section of this configuration for
|
|
|
|
# individual neighbor configurations where per-neighbor configurations (such as their
|
|
|
|
# ASN) are applied.
|
2020-04-28 04:20:27 +00:00
|
|
|
template bgp lixonet_client {
|
Update build.sh, README.md, bird/bird.conf.tmpl, tinc/subnet-down.tmpl, tinc/subnet-up.tmpl, tinc/tinc-up.tmpl, tinc/tinc.conf.tmpl, docker-compose.yml files
Deleted gortr/roas.json, tinc/lixonet/hosts/daltx_nurd_lixo, tinc/lixonet/hosts/denco_mane_lixo, tinc/lixonet/hosts/inwwv_nurd_lixo, tinc/lixonet/hosts/lkwco_mane_lixo, tinc/lixonet/hosts/manva_nurd_lixo, tinc/lixonet/subnet-down.tmpl, tinc/lixonet/subnet-up.tmpl, tinc/lixonet/tinc-up.tmpl, tinc/lixonet/tinc.conf.tmpl, bird/rpki/hosts/denco_mane_lixo, bird/rpki/known_hosts, bird/neighbors/daltx_nurd_lixo, bird/neighbors/denco_mane_lixo, bird/neighbors/glaz_nurd_lixo, bird/neighbors/lkwco_mane_lixo, bird/neighbors/phxaz_nurd_lixo files
2020-05-21 21:22:04 +00:00
|
|
|
local as ${bgp_asn}; # Local AS advertised to peers
|
2020-05-20 23:39:14 +00:00
|
|
|
|
Update build.sh, README.md, bird/bird.conf.tmpl, tinc/subnet-down.tmpl, tinc/subnet-up.tmpl, tinc/tinc-up.tmpl, tinc/tinc.conf.tmpl, docker-compose.yml files
Deleted gortr/roas.json, tinc/lixonet/hosts/daltx_nurd_lixo, tinc/lixonet/hosts/denco_mane_lixo, tinc/lixonet/hosts/inwwv_nurd_lixo, tinc/lixonet/hosts/lkwco_mane_lixo, tinc/lixonet/hosts/manva_nurd_lixo, tinc/lixonet/subnet-down.tmpl, tinc/lixonet/subnet-up.tmpl, tinc/lixonet/tinc-up.tmpl, tinc/lixonet/tinc.conf.tmpl, bird/rpki/hosts/denco_mane_lixo, bird/rpki/known_hosts, bird/neighbors/daltx_nurd_lixo, bird/neighbors/denco_mane_lixo, bird/neighbors/glaz_nurd_lixo, bird/neighbors/lkwco_mane_lixo, bird/neighbors/phxaz_nurd_lixo files
2020-05-21 21:22:04 +00:00
|
|
|
source address ${tinc_peer_address}; # What local IP address we use for any outbound TCP
|
|
|
|
# connections on port 179
|
2020-05-20 23:39:14 +00:00
|
|
|
|
2020-05-20 23:53:46 +00:00
|
|
|
path metric ${bgp_path_metric:-1}; # 1 = Prefer routes with shorter paths (like Cisco does)
|
2020-04-28 04:57:39 +00:00
|
|
|
|
2020-05-20 23:18:42 +00:00
|
|
|
# BGP channels
|
|
|
|
# See: Channel configuration (BIRD BGP configuration) and the table shown there.
|
2020-05-20 23:16:34 +00:00
|
|
|
|
2020-05-20 23:18:42 +00:00
|
|
|
# BGP IPv4 channel settings
|
2020-05-20 23:16:34 +00:00
|
|
|
ipv4 {
|
Update build.sh, README.md, bird/bird.conf.tmpl, tinc/subnet-down.tmpl, tinc/subnet-up.tmpl, tinc/tinc-up.tmpl, tinc/tinc.conf.tmpl, docker-compose.yml files
Deleted gortr/roas.json, tinc/lixonet/hosts/daltx_nurd_lixo, tinc/lixonet/hosts/denco_mane_lixo, tinc/lixonet/hosts/inwwv_nurd_lixo, tinc/lixonet/hosts/lkwco_mane_lixo, tinc/lixonet/hosts/manva_nurd_lixo, tinc/lixonet/subnet-down.tmpl, tinc/lixonet/subnet-up.tmpl, tinc/lixonet/tinc-up.tmpl, tinc/lixonet/tinc.conf.tmpl, bird/rpki/hosts/denco_mane_lixo, bird/rpki/known_hosts, bird/neighbors/daltx_nurd_lixo, bird/neighbors/denco_mane_lixo, bird/neighbors/glaz_nurd_lixo, bird/neighbors/lkwco_mane_lixo, bird/neighbors/phxaz_nurd_lixo files
2020-05-21 21:22:04 +00:00
|
|
|
table ${network_name:-lixonet}_v4;
|
2020-05-21 00:36:50 +00:00
|
|
|
|
2020-05-20 23:16:34 +00:00
|
|
|
# Always advertise our own local address as a next hop, even in cases where the
|
|
|
|
# current Next Hop attribute should be used unchanged.
|
|
|
|
# Reason: tinc NEEDS this, otherwise Layer3 inter-routing on the mesh will be broken
|
|
|
|
next hop self ebgp;
|
2020-05-20 23:18:42 +00:00
|
|
|
|
|
|
|
# aigp (see: http://www.rfc-editor.org/info/rfc7311)
|
|
|
|
# Lixonet default: originate AIGP
|
2020-05-21 00:34:48 +00:00
|
|
|
# This not only allows AIGP attribute propagation, but also new AIGP attributes are
|
2020-05-20 23:18:42 +00:00
|
|
|
# automatically attached to non-BGP routes with valid IGP metric (e.g. ospf_metric1)
|
|
|
|
# as they are exported to the BGP session.
|
|
|
|
# Thank-you, BIRD <3 - mane and nurd
|
2020-05-20 23:53:46 +00:00
|
|
|
aigp ${bgp_aigp:-originate};
|
2020-05-20 23:39:14 +00:00
|
|
|
|
2020-05-20 23:54:30 +00:00
|
|
|
# Set filters for both exported (sent) and imported (received) BGP prefixes.
|
2020-05-20 23:57:15 +00:00
|
|
|
# This is explicitly required per RFC 8212, at least on export.
|
|
|
|
# See: https://gitlab.labs.nic.cz/labs/bird/commit/3831b619661d08d935fd78656732cd2f339ff811
|
2020-05-21 03:00:50 +00:00
|
|
|
export filter bgp_export_filter_v4;
|
|
|
|
import filter bgp_import_filter_v4;
|
2020-05-20 23:54:30 +00:00
|
|
|
};
|
2020-04-28 04:48:05 +00:00
|
|
|
};
|
2020-04-28 04:16:29 +00:00
|
|
|
|
2020-04-28 05:11:05 +00:00
|
|
|
# Neighbors
|
2020-05-21 21:43:07 +00:00
|
|
|
{{ range files "bird/peers" }} {{ if ne . "${tinc_peer_name}" }}
|
2020-04-28 05:10:33 +00:00
|
|
|
protocol bgp {{ . }} from lixonet_client {
|
Update build.sh, README.md, bird/bird.conf.tmpl, tinc/subnet-down.tmpl, tinc/subnet-up.tmpl, tinc/tinc-up.tmpl, tinc/tinc.conf.tmpl, docker-compose.yml files
Deleted gortr/roas.json, tinc/lixonet/hosts/daltx_nurd_lixo, tinc/lixonet/hosts/denco_mane_lixo, tinc/lixonet/hosts/inwwv_nurd_lixo, tinc/lixonet/hosts/lkwco_mane_lixo, tinc/lixonet/hosts/manva_nurd_lixo, tinc/lixonet/subnet-down.tmpl, tinc/lixonet/subnet-up.tmpl, tinc/lixonet/tinc-up.tmpl, tinc/lixonet/tinc.conf.tmpl, bird/rpki/hosts/denco_mane_lixo, bird/rpki/known_hosts, bird/neighbors/daltx_nurd_lixo, bird/neighbors/denco_mane_lixo, bird/neighbors/glaz_nurd_lixo, bird/neighbors/lkwco_mane_lixo, bird/neighbors/phxaz_nurd_lixo files
2020-05-21 21:22:04 +00:00
|
|
|
description "Lixonet BGP link to {{ . }}";
|
2020-05-21 21:43:18 +00:00
|
|
|
{{ include (print "bird/peers/" .) }}
|
2020-05-21 03:00:50 +00:00
|
|
|
};{{ end }}{{ end }}
|