HAA1 Configuration

This commit is contained in:
2021-07-18 14:19:36 +00:00
commit ce3d44219c
14 changed files with 238 additions and 0 deletions

View 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;
}

View 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;
};
}

View File

@@ -0,0 +1,7 @@
#
# Lynqo Network NOC - noc [at] lynqo [dot] fr
#
log syslog all;
router id 5.101.92.197;

View 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;
};
}