1process reader { 2 run /bin/sh "##BGPDCONFIGDIR##/api-exabgp.sh"; 3 encoder text; 4} 5 6neighbor 10.12.57.1 { 7 router-id 10.12.57.2; 8 local-address 10.12.57.2; 9 local-as 0; 10 peer-as 64500; 11 group-updates; 12 adj-rib-in false; 13 passive false; 14 15 family { 16 ipv4 unicast; 17 } 18 19 static { 20 route 10.12.59.0/24 next-hop self; 21 } 22 23 api { 24 processes [ reader ]; 25 neighbor-changes; 26 } 27} 28