/usr/share/doc/exabgp/examples/conf-group.conf is in exabgp 4.0.2-2.
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 | template {
neighbor test {
local-as 65533;
peer-as 65533;
hold-time 180;
group-updates false;
capability {
graceful-restart 1200;
}
static {
route 1.0.0.0/8 next-hop 1.1.1.1;
route 2.0.0.0/8 next-hop 1.1.1.1;
route 3.0.0.0/8 next-hop 1.1.1.1;
route 4.0.0.0/8 next-hop 1.1.1.1;
}
}
}
neighbor 127.0.0.1 {
inherit test;
description "router 2 with four routes";
router-id 127.0.0.0;
local-address 127.0.0.1;
}
|