<div dir="ltr">
<div bgcolor="#FFFFFF" text="#000000">
Hello.<br><br>
I'm not sure about correct understanding of your setup, but..<br>
You can use this workaround:<br>
<br>1. Create the different static protocol with the default route:<br><br>---<br>
table other;<br>
<br>
protocol static other_default {<br>
table other;<br>
route <a href="http://0.0.0.0/0" target="_blank">0.0.0.0/0</a> reject;<br>
}<br>
---<br>
<br>2. Export this default route to ospf protocol with filter by route
source.<br>
<br>---<br>
filter export_to_my_ospf {<br>
...skipped...<br>
if (proto = "other_default") then {<br></div><div bgcolor="#FFFFFF" text="#000000"> ospf_metric1 = 20;<br></div><div bgcolor="#FFFFFF" text="#000000">
accept;<br>
}<br>
...skipped...<br>
}<br>
<br>
protocol ospf my_ospf {<br>
...skipped...<br>
table other;<br>
export filter export_to_my_ospf;<br></div><div bgcolor="#FFFFFF" text="#000000">
...skipped...<br></div><div bgcolor="#FFFFFF" text="#000000">
}<br>
---<br>
<br>3. You can prevent the installation of this default route into the kernel
table with other filter.<br>
<br>---<br>
filter export_to_kernel {<br>
...skipped...<br>
if ( proto = "other_default" ) then {<br>
reject;<br>
}<br>
...skipped...<br>
}<br>
<br>
protocol kernel my_kern {<br>
table other;<br>
kernel table 100;<br>
...skipped...<br>
export filter export_to_kernel;<br>
...skipped...<br>
}<br>
---<br>
<br></div><div bgcolor="#FFFFFF" text="#000000">4. Note the difference between bird routing tables and system kernel tables.<br></div><div bgcolor="#FFFFFF" text="#000000"><br>
29.08.2016 16:01, André Carlim пишет:<br>
<blockquote type="cite">
<div>
<div>Hello, first, sorry for my bad English, but I need help, I
am trying to make the ospf the bird send the route default
same does not being present in table main kernel, I have
multiple tables, ex to the protocol ospf have the table ospf
to BGP table BGP, and so on, I even have a route standard in
table default kernel, I tried various forms configuration, but
not got success, someone already explained that?</div>
<div><br>
</div>
<div>[]'s</div>
<div><br>
</div>
<div>André Carlim</div>
<br>
via <a href="https://cloudmagic.com/k/d/mailapp?ct=pa&cv=8.6.38&pv=6.0.1&source=email_footer_2" target="_blank">CloudMagic
Email</a> </div>
</blockquote>
<br>
</div>
</div>