blob: 56b33eae8ebf28f6652591054e70f3f7ebdf32c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
group controller {
process announce-routes {
run "/etc/exabgp/exa-send.py 12 10";
}
process receive-routes {
run "/etc/exabgp/exa-receive.py 12";
receive-routes;
encoder text;
}
neighbor 10.0.3.1 {
router-id 10.0.3.112;
local-address 10.0.3.112;
local-as 112;
peer-as 100;
graceful-restart;
}
}
|