Re: Set SRC PREF for routes when injecting routes to kernel

2018-01-15 Thread Olda Plchot
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

Re: Sending only default route to downstream users?

2017-03-24 Thread Olda Plchot
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