OSPF and discard some ospf_router_id

2016-02-01 Thread Anton Kiryushkin
Hello.


I have next filters:

filter export_OSPF {
if net = white_ip2/32 then {
ospf_metric2 = 5;
print "router_id: ", ospf_router_id, " net: ", net;
accept;
}
if net = white_ip1/32 then {
ospf_metric2 = 10;
print "router_id: ", ospf_router_id, " net: ", net;
accept;
}
if ospf_router_id = 10.0.0.32 then {
reject;
}
reject;
}

filter import_OSPF {
if ospf_router_id = 10.0.0.32 then {
reject;
}
reject;
}

And on second server I have another filters:

filter export_OSPF {
if net = white_ip1/32 then {
ospf_metric2 = 5;
print "router_id: ", ospf_router_id, " net: ", net;
accept;
}
if net = white_ip2/32 then {
ospf_metric2 = 10;
print "router_id: ", ospf_router_id, " net: ", net;
accept;
}
if ospf_router_id = 10.0.0.33 then {
reject;
}
reject;
}

filter import_OSPF {
if ospf_router_id = 10.0.0.33 then {
reject;
}
reject;
}


As I think, on the first server I discard any announce from second server
and conversely. But on both servers I see both servers as neighbors. Where
I'm wrong?

And maybe you suggest me another way for reservation ip on two servers?

-- 
Best regards,
Anton Kiryushkin


Re: integration with Fastnetmon

2016-02-01 Thread Job Snijders
On Mon, Feb 01, 2016 at 08:48:15AM +, Neil Morris wrote:
> I have just started looking into BIRD for use with Fastnetmon for DDoS
> mitigation.  I see that ExaBGP is aready integrated with Fastnetmon,
> but was interested to hear from anyone who has used BIRD.

I've intergrated BIRD and fastnetmon in AS8283 and documented it in this
video: https://www.youtube.com/watch?v=0ahdxp_btHY

Kind regards,

Job


BGP Multipath

2016-02-01 Thread Roman Romanyak
Hello guys,

Is BGP Multipath supported in BIRD?


Thanks!
Roman.