19 lines
345 B
Text
19 lines
345 B
Text
# Kernel routing tables
|
|
define krt_main = 254;
|
|
define krt_local = 255;
|
|
define krt_default = 253;
|
|
define krt_ebgp = 100;
|
|
define krt_dn42 = 101;
|
|
|
|
# Bird tables
|
|
ipv4 table ebgp_v4;
|
|
|
|
ipv6 table ebgp_v6_bh; # Blackholing
|
|
ipv6 table ebgp_v6;
|
|
roa6 table roa_v6;
|
|
|
|
ipv4 table dn42_v4;
|
|
roa4 table roa_dn42_v4;
|
|
|
|
ipv6 table dn42_v6;
|
|
roa6 table roa_dn42_v6;
|