53 lines
1.2 KiB
Text
53 lines
1.2 KiB
Text
filter cymru_bogons_import {
|
|
bgp_community.add((65332,888));
|
|
dest = RTD_BLACKHOLE;
|
|
accept;
|
|
}
|
|
|
|
filter cymru_bogons_export {
|
|
reject;
|
|
}
|
|
|
|
protocol bgp bgp_cymru_v4_1 {
|
|
description "Cymru Bogons RS1";
|
|
import filter cymru_bogons_import;
|
|
export filter cymru_bogons_export;
|
|
multihop 255;
|
|
password "pass_here";
|
|
local as my_asn;
|
|
neighbor 38.229.66.20 as 65332;
|
|
source address IPv4_here;
|
|
}
|
|
|
|
protocol bgp bgp_cymru_v4_2 {
|
|
description "Cymru Bogons RS2";
|
|
import filter cymru_bogons_import;
|
|
export filter cymru_bogons_export;
|
|
multihop 255;
|
|
password "pass_here";
|
|
local as my_ripe_asn;
|
|
neighbor 193.231.140.82 as 65332;
|
|
source address IPv4_here;
|
|
}
|
|
|
|
protocol bgp bgp_cymru_v6_1 {
|
|
description "Cymru Bogons RS1 v6";
|
|
import filter cymru_bogons_import;
|
|
export filter cymru_bogons_export;
|
|
multihop 255;
|
|
password "pass_here";
|
|
local as my_ripe_asn;
|
|
neighbor 2620:0:6B0::26E5:4207 as 65332;
|
|
source address IPv6_here;
|
|
}
|
|
|
|
protocol bgp bgp_cymru_v6_2 {
|
|
description "Cymru Bogons RS2 v6";
|
|
import filter cymru_bogons_import;
|
|
export filter cymru_bogons_export;
|
|
multihop 255;
|
|
password "pass_here";
|
|
local as my_asn;
|
|
neighbor 2001:B30:1000:19::2 as 65332;
|
|
source address IPv6_here;
|
|
}
|