BGP and BFD configuration on Ubuntu BIRD - ganeshahv/Contrail_SRE GitHub Wiki

1]. BIRD config for BGPaaS and BFD on the VMI, without BFDoBGPaaS

protocol bfd {
        neighbor 10.10.10.1 local 10.10.10.3;
 }
protocol bgp {
        description "BGPaaS";
        local as 64500;
        neighbor 10.10.10.1 as 64512;
        multihop;
        hold time 90;
        source address 10.10.10.3;      # What local address we use for the TCP connection
}

2]. BIRD config for BGPaaS and BFD on the VMI, with BFDoBGPaaS

protocol bgp {
        description "BGPaaS";
        local as 64500;
        neighbor 10.10.10.1 as 64512;
        multihop;
        hold time 90;
        bfd on;
        source address 10.10.10.3;      # What local address we use for the TCP connection
}
protocol bfd {
    neighbor 10.10.10.1 local 10.10.10.3 multihop on;
}
⚠️ **GitHub.com Fallback** ⚠️