/usr/share/doc/exabgp/examples/ibgp4-simple.txt is in exabgp 3.1.9-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | neighbor 10.0.0.3 {
description "a quagga test peer";
router-id 10.0.0.2;
local-address 10.0.0.2;
local-as 65533;
peer-as 65533;
hold-time 180;
static {
route 10.0.1.0/24 {
next-hop 10.0.255.254;
}
route 10.0.2.0/24 {
next-hop 10.0.255.254;
community 30740:30740;
}
route 10.0.3.0/24 {
next-hop 10.0.255.254;
community [ 30740:30740 30740:0 ];
}
route 10.0.4.0/24 {
next-hop 10.0.255.254;
local-preference 200;
}
route 10.0.5.0/24 next-hop 10.0.255.254 local-preference 200;
route 10.0.6.0/24 next-hop 10.0.255.254 community 30740:30740;
route 10.0.7.0/24 next-hop 10.0.255.254 local-preference 200 community 30740:30740;
route 10.0.8.0/24 next-hop 10.0.255.254 community 30740:30740 local-preference 200;
route 10.0.7.0/24 next-hop 10.0.255.254 local-preference 200 community [30740:0 30740:30740];
route 10.0.8.0/24 next-hop 10.0.255.254 community [30740:0 30740:30740] local-preference 200;
}
}
|