<div dir="ltr"><div><div><div><div><div>Hi,<br></div>  if you are receiving the full BGP table, you might not have default routes (<a href="http://0.0.0.0/0">0.0.0.0/0</a> and ::/0) at all. You can although create them statically to propagate them further.<br><br>protocol static  {<br>        route <a href="http://0.0.0.0/0">0.0.0.0/0</a> blackhole;<br>}<br><br></div>or for IPv6<br><br>protocol static  {<br>        route ::/0 reject;<br>}<br><br></div>then you will be able to pass these routes further down.<br><br></div>Cheers,<br></div>         Olda<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Mar 24, 2017 at 3:24 PM, Mike Jones <span dir="ltr"><<a href="mailto:mike@mikejones.in" target="_blank">mike@mikejones.in</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On 24 March 2017 at 13:37, Michael McConnell <<a href="mailto:michael@winkstreaming.com">michael@winkstreaming.com</a>> wrote:<br>
><br>
> Hello all,<br>
><br>
> I receive a full iBGP table from my uplinks, however I want to just pass a default route / partial table to my downstream clients.<br>
><br>
> I’ve tried various options such as gateway direct and multihop, try to turn it into a eBGP situation with no luck.<br>
><br>
> Can anyone point me in the right direction?<br>
><br>
> Thank you very much for your time and help,<br>
> Mike<br>
><br>
<br>
</span>Hi,<br>
<br>
You are looking for filters. These define rules that get checked<br>
against every route imported/exported and can either accept/reject a<br>
route or can even modify attributes. Filters can be applied on export<br>
to control what you advertise, and on import to control what you<br>
accept.<br>
<br>
I would normally leave you to figure out the details by yourself,<br>
however the documentation isn't exactly the best at telling you how to<br>
do these simple tasks so it would probably save a bit of time if I<br>
gave you an example.<br>
<br>
filter senddefault {<br>
        if net = <a href="http://0.0.0.0/0" rel="noreferrer" target="_blank">0.0.0.0/0</a> then accept;<br>
        reject;<br>
};<br>
<br>
and the v6 version would be<br>
<br>
filter senddefault {<br>
        if net = ::0/0 then accept;<br>
        reject;<br>
};<br>
<br>
- Mike Jones<br>
<br>
</blockquote></div><br></div>