Update bird/bird.conf.tmpl

This commit is contained in:
sump pump 2020-04-28 04:48:05 +00:00
parent 3b358aa3af
commit f2c3c246cb

View File

@ -6,17 +6,26 @@ router id ${address};
# Disable automatically generating direct routes to all network interfaces.
protocol direct {
disabled; # Disable by default
}
};
# Forbid synchronizing BIRD routing tables with the OS kernel.
protocol kernel {
ipv4 {
import all; # Import to table, default is import all
export none; # Export to protocol. default is export none
};
persist; # Don't remove routes on bird shutdown
};
protocol device {
interface "lixonet" {
preferred ${address};
};
}
};
protocol rpki denco_mane_lixo {
# TODO
}
};
# Define a template to use when connecting to other BGP clients on the EE network
template bgp lixonet_client {
@ -27,11 +36,12 @@ template bgp lixonet_client {
next hop self;
aigp originate; # Enable AIGP for all (IBGP+EBGP) sessions
}
};
protocol bgp denco_mane_lixo from lixonet_client {
neighbor 172.30.0.8 as 4206969008;
}
};
protocol bgp lkwco_mane_lixo from lixonet_client {
neighbor 172.30.0.16 as 4206969016;
}
};