2022-12-26 15:41:18 +00:00
|
|
|
template bgp pub_transit {
|
|
|
|
local as LOCAL_ASN;
|
2022-12-26 17:17:37 +00:00
|
|
|
|
2023-03-08 14:00:41 +00:00
|
|
|
interpret communities off;
|
|
|
|
|
2022-12-26 15:41:18 +00:00
|
|
|
ipv6 {
|
2022-12-26 16:39:44 +00:00
|
|
|
import where transit_import_filter(6939);
|
|
|
|
export where transit_export_filter(6939);
|
2022-12-26 17:08:14 +00:00
|
|
|
};
|
2022-12-26 15:41:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
template bgp pub_peer {
|
|
|
|
local as LOCAL_ASN;
|
2023-03-08 14:00:41 +00:00
|
|
|
|
|
|
|
interpret communities off;
|
|
|
|
|
2022-12-26 15:41:18 +00:00
|
|
|
ipv6 {
|
2022-12-26 16:39:44 +00:00
|
|
|
import where direct_peer_import_filter(6939);
|
|
|
|
export where direct_peer_export_filter(6939);
|
2022-12-26 17:08:14 +00:00
|
|
|
};
|
2022-12-26 15:41:18 +00:00
|
|
|
}
|
|
|
|
|
2022-12-27 07:31:54 +00:00
|
|
|
template bgp pub_downstream {
|
|
|
|
local as LOCAL_ASN;
|
2022-12-26 17:10:17 +00:00
|
|
|
|
2023-03-08 14:00:41 +00:00
|
|
|
interpret communities off;
|
|
|
|
|
2022-12-27 07:31:54 +00:00
|
|
|
ipv6 {
|
|
|
|
import where downstream_import_filter(6939);
|
|
|
|
export where downstream_export_filter(6939);
|
2023-03-03 15:26:41 +00:00
|
|
|
|
|
|
|
import limit 50;
|
2022-12-27 07:31:54 +00:00
|
|
|
};
|
|
|
|
}
|