Static routes BGP
Fabiano D'Agostino
fabiano.dagostino96 at gmail.com
Mon Jun 15 13:03:52 CEST 2020
Hi everyone,
I have this configuration:
protocol static {
ipv4 { preference 110;};
route 10.0.0.0/8 via 192.168.1.1;
}
protocol bgp {
local as 1;
neighbor x.x.x.x as x
ipv4 {
import all;
export filter {if (net ~ [10.0.0.0/8] ) then accept;
reject;}; #also tried with export all;
};
}
On route-server I have:
ipv4 table test_4;
protocol pipe Ptest_4 {
table master4;
peer table test_4;
import all;
export all;
}
protocol bgp Btest_4 from rsclient_4 {
neighbor x.x.x.x as x
multihop 15;
ipv4 {
table test_4;
import all;
export all;
};
}
I don’t understand why 10.0.0.0/8 is not in master4 and test_4 tables of
the route-server. How could I announce a test prefix from a client to the
route-server?
Thanks in advance,
Fabiano D'Agostino
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://trubka.network.cz/pipermail/bird-users/attachments/20200615/6ff9606b/attachment.htm>
More information about the Bird-users
mailing list