28 lines
320 B
Text
28 lines
320 B
Text
filter ibgp_export_v4 {
|
|
if net.len = 32 then
|
|
reject;
|
|
|
|
accept;
|
|
}
|
|
|
|
filter ibgp_export_v6 {
|
|
if net.len = 128 then
|
|
reject;
|
|
|
|
accept;
|
|
}
|
|
|
|
filter ibgp_import_v4 {
|
|
# if net = 0.0.0.0/0 then
|
|
# reject;
|
|
|
|
accept;
|
|
}
|
|
|
|
filter ibgp_import_v6 {
|
|
# if net = 0::/0 then
|
|
# reject;
|
|
|
|
accept;
|
|
}
|
|
|