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 64501; 10 peer-as 64500; 11 group-updates; 12 adj-rib-in false; 13 passive false; 14 15 family { 16 ipv4 unicast; 17 } 18 19 api { 20 processes [ reader ]; 21 neighbor-changes; 22 receive { 23 parsed; 24 update; 25 notification; 26 } 27 } 28} 29