Hi everybody,
I am wondering what is the state of krt_prefsrc or something similar that
would work in FreeBSD? I was experimenting with this some time ago and I
ended up having to do NAT on the inner address for the router to reach
internet through specific address as the prefix that is set on ou
Hi,
if you are receiving the full BGP table, you might not have default
routes (0.0.0.0/0 and ::/0) at all. You can although create them statically
to propagate them further.
protocol static {
route 0.0.0.0/0 blackhole;
}
or for IPv6
protocol static {
route ::/0 reject;
}
th