blob: 826b1020985ba3e5cb3fb9b59a35dc61ae31bc5d (
plain)
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
|
process reader {
run /bin/sh "##BGPDCONFIGDIR##/api-exabgp.sh";
encoder text;
}
neighbor 10.12.57.1 {
router-id 10.12.57.2;
local-address 10.12.57.2;
local-as 64501;
peer-as 64500;
group-updates;
adj-rib-in false;
passive false;
family {
ipv4 unicast;
}
api {
processes [ reader ];
neighbor-changes;
receive {
parsed;
update;
notification;
}
}
}
|