Hello,

I have a very simple setup with one rr and one rr client.

Im not seeing  ORIGINATOR_ID nor  CLUSTER_LIST attributes appended to the
updates sent to the rr client. Aren't those supposed to be mandatory per
RFC 4456 ?


filter wr1_import
{
    reject;
}

filter wr1_export
prefix set te_internal;
{
    te_internal = [ 10.0.0.0/8 ];
    if (net ~ te_internal) then reject;
    accept;
}

protocol bgp bgp_wr1_v4 {
    description "something";
    import filter wr1_import;
    export filter wr1_export;
    multihop 2;
    password "pass";
    local as my_as;
    neighbor  X.X.X.X as my_as;
    source address x.x.x.x;
    rr client;
    rr cluster id 1.1.1.1;
}

Reply via email to