On 11 Jul 2013, at 13:20, Matjaž Straus Istenič <matjaz.straus@arnes.si> wrote:
On 11. jul. 2013, at 10:44, Anibe Onuche <a.onuche@nixp.net> wrote:
Hello All...
Implemented Bird on my Route Server and got most of my routes working
The challenges Currently faced is with Juniper Routers. All Peers using Junos are not connecting? Cisco was okay due to the no bgp enforce-first-as command
Juniper Junos OS has no problems with that. It does not check that the first AS in AS-PATH matches the neighbouring AS. Therefore, there is no variant of this command in Junos. Are you using Junos OS (M, MX series etc) or JunosE?
Is there any thing to look out for?
It works for me on a J Series router. Just used (I'm sure your know this already) : JSerise ----------- set protocols bgp group BIRD peer-as 65504 set protocols bgp group BIRD neighbor 192.168.237.254 local-address 192.168.237.253 BIRD ---------- myas = 65504; table T3; protocol pipe P3 { table master; mode transparent; peer table T3; } protocol bgp R3x1 { local as myas; neighbor 192.168.237.253 as 65503; rs client; route limit 15000; table T3; import all; export all; hold time 180; } Mo