HAA1 Configuration
This commit is contained in:
35
etc/bird/common/filters.conf
Normal file
35
etc/bird/common/filters.conf
Normal file
@@ -0,0 +1,35 @@
|
||||
#
|
||||
# Lynqo Network NOC - noc [at] lynqo [dot] fr
|
||||
#
|
||||
|
||||
filter as_out {
|
||||
# if ( net = 2a0c:b641:4c0::/44 ) then accept;
|
||||
# else
|
||||
if ( net = 2a0e:b107:fa0::/44 ) then accept;
|
||||
else
|
||||
if ( net = 2a0c:b641:4c1::/48 ) then accept;
|
||||
else
|
||||
if ( net = 2a0c:b641:4c2::/48 ) then accept;
|
||||
else
|
||||
if ( net = 2a0c:b641:4c3::/48 ) then accept;
|
||||
else
|
||||
reject;
|
||||
}
|
||||
|
||||
filter mar1_in {
|
||||
if ( net = 2a0c:b641:4c1::/48 ) then accept;
|
||||
else
|
||||
reject;
|
||||
}
|
||||
|
||||
filter mar2_in {
|
||||
if ( net = 2a0c:b641:4c2::/48 ) then accept;
|
||||
else
|
||||
reject;
|
||||
}
|
||||
|
||||
filter mar3_in {
|
||||
if ( net = 2a0c:b641:4c3::/48 ) then accept;
|
||||
else
|
||||
reject;
|
||||
}
|
||||
32
etc/bird/common/kernel.conf
Normal file
32
etc/bird/common/kernel.conf
Normal file
@@ -0,0 +1,32 @@
|
||||
#
|
||||
# Lynqo Network NOC - noc [at] lynqo [dot] fr
|
||||
#
|
||||
|
||||
protocol device {
|
||||
scan time 5;
|
||||
}
|
||||
|
||||
protocol direct {
|
||||
ipv6 {
|
||||
import filter as_out;
|
||||
};
|
||||
}
|
||||
|
||||
protocol kernel kernel_v4 {
|
||||
learn;
|
||||
scan time 60;
|
||||
ipv4 {
|
||||
import none;
|
||||
export none;
|
||||
};
|
||||
persist;
|
||||
}
|
||||
|
||||
protocol kernel kernel_v6 {
|
||||
learn;
|
||||
scan time 60;
|
||||
ipv6 {
|
||||
import filter as_out;
|
||||
export none;
|
||||
};
|
||||
}
|
||||
7
etc/bird/common/local.conf
Normal file
7
etc/bird/common/local.conf
Normal file
@@ -0,0 +1,7 @@
|
||||
#
|
||||
# Lynqo Network NOC - noc [at] lynqo [dot] fr
|
||||
#
|
||||
|
||||
log syslog all;
|
||||
|
||||
router id 5.101.92.197;
|
||||
32
etc/bird/common/templates.conf
Normal file
32
etc/bird/common/templates.conf
Normal file
@@ -0,0 +1,32 @@
|
||||
#
|
||||
# Lynqo Network NOC - noc [at] lynqo [dot] fr
|
||||
#
|
||||
|
||||
template bgp tpl_upstream {
|
||||
local as 212756;
|
||||
graceful restart on;
|
||||
multihop 255;
|
||||
}
|
||||
|
||||
template bgp tpl_routeservers {
|
||||
local as 212756;
|
||||
graceful restart on;
|
||||
multihop 255;
|
||||
}
|
||||
|
||||
template bgp tpl_customers {
|
||||
local as 212756;
|
||||
graceful restart on;
|
||||
multihop 255;
|
||||
ipv6 {
|
||||
next hop self;
|
||||
};
|
||||
}
|
||||
|
||||
template bgp tpl_internal {
|
||||
local as 212756;
|
||||
graceful restart on;
|
||||
ipv6 {
|
||||
next hop self;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user