It looks like something this:
# "s_" means "static"
protocol s_default {
route 0.0.0.0/0 reject;
}
filter ospf1_export {
# allow to advertise this default
# through ospf
if proto = "s_default" then {
accept;
}
...
}
filter kernel_export {
# if you don't want to
I do not quite understand you, can you exemplify?
---
Atenciosamente,
André Carlim
StubNetwork
Em 2018-03-26 18:11, Anton Danilov escreveu:
Hi.
You can create the static protocol with "route 0.0.0.0/0 reject" entry
and redistribute it into OSPF to advertise the default route through
itself.
Hi.
You can create the static protocol with "route 0.0.0.0/0 reject" entry
and redistribute it into OSPF to advertise the default route through
itself.
On 26 March 2018 at 22:04, André Carlim wrote:
> Hello!
>
> I use the OSPF module of the bird, however I use several different tables in
> both t
Hello!
I use the OSPF module of the bird, however I use several different
tables in both the module and the Linux kernel, and in general I need to
create and distribute the default route. I saw in other discussions that
the folks there are no problems in reading the route in the kernel
table,