> On 18 Sep 2018, at 09:07, Diarmuid O Briain <[email protected]> wrote:
>
> Hi,
>
> I have been trying to setup a simple config using multiple RIB for a Route
> Server. Here are two compatible configurations, the first with multiple
> tables, the second with a single master configuration. The single master
> works fine and the peers get routing updates but the multiple tables version
> does not pass routes. ANy ideas why ?
>
> regards,
>
> Diarmuid
>
>
>
> # as5111 member
> table T5111;
>
> protocol pipe P5111 from PIPES {
> description "as5111";
> peer table T5111;
> }
>
>
Do you not have to apply your import/export filters on the protocol pipes like
in the example below ?
protocol pipe P222 from PIPES {
description "Member 2";
peer table T222;
import all
export all
}
M