<div dir="ltr"><div>Hi guys, I'm using bird on a pppoe server (accel) connected directly to a mikrotik and I need ospf between them to advertise the prefixes of the pppoe clients. The accel server is already receiving the mikrotik routes through ospf but can not send the route with the clients prefix to mikrotik, I thought of creating a blackhole route and advertise using "redistribute connected" but it did not work, just putting the exit filter with "redistribute connected" but also did not work. Could someone help me get my server to send the routes to mikrotik by ospf?</div><div><br></div><div>Best Regards.</div><div><br></div><div>eth0 is connected to mikrotik and eth1 for clients</div><div><br></div><div>My conf file:</div><div><br></div><div>protocol device {</div><div><span style="white-space:pre">      </span>scan time 10;</div><div>}</div><div>protocol kernel {<br></div><div>        metric 64;      </div><div>        import all;</div><div>        export all;</div><div>}</div><div>protocol static pool_pppoe {<br></div><div>    route 177.XX.XX.0/24 blackhole; # my public pool to clientes</div><div>}</div><div><br></div><div>router id 10.200.100.1;<br></div><div><br></div><div>filter ospf_export {<br></div><div>if ( source = RTS_DEVICE ) then {</div><div>        print "net accepted:", net;</div><div>        ospf_metric2 = 20;</div><div>        accept;</div><div>        }</div><div>if ( source = RTS_STATIC_DEVICE ) then {</div><div>        print "net accepted:", net;</div><div>        ospf_metric2 = 20;</div><div>        accept;</div><div>    }</div><div>}</div><div><br></div><div>protocol ospf {</div><div>        export filter ospf_export;</div><div>        area 0.0.0.0 {</div><div>                interface "eth0" {</div><div>                        cost 10;</div><div>                        type pointopoint;</div><div>                        hello 10; retransmit 5; wait 10; dead 40;</div><div>                };</div><div><br></div><div>        };</div><div>        area 0.0.0.1 {</div><div>                interface "eth1" {</div><div>                };</div><div>                stub yes;</div><div><br></div><div>        };</div><div><br></div><div>}</div><div><br></div></div>