BGP export connected or static prefixes

Anand Buddhdev anandb at ripe.net
Fri Mar 6 17:53:08 CET 2015


Dear BIRD users,

I'm setting up BIRD 1.4.5 as a router for an AS112 anycast instance.
I've got the router running and creating peering sessions with peers,
and also importing prefixes from them into the kernel.

However, it's not exporting my prefix, and I'm afraid I don't understand
why. I'm quite new to BIRD, so please bear with me if my question looks
naive. I would appreciate any clues.

My configuration looks like this:

list bgp address <myaddr>;
router id <myaddr>;
tabe anycast;

filter as112 {
  if net = 192.75.48.0/24 then accept;
  reject;
}

protocol direct {
  interface "dummy0*";
}

protocol device {
}

protocol kernel {
  export all;
  kernel table 10;
  table anycast;
}

protocol bgp {
  export filter as112;
  local <myaddr> as 112;
  neighbor <peeraddr> as <peeras>;
  table anycast;
}


More information about the Bird-users mailing list