neighbor 10.0.0.3 {
	description "will announce a route until told otherwise";
	router-id 198.111.227.39;
	local-address 10.0.0.2;
	local-as 65533;
	peer-as 65533;

	# control route(s) announcement every second, return down or up on it stdout to reflect route announcement change
	# flap the route with the watchdog name "watchdog-one"
	# flap the route, do not provide name so it changes service-watchdog
	process service-watchdog {
		run etc/exabgp/processes/watchdog-1.sh;
	}

	static {
		route 192.168.0.0/16 next-hop 192.0.2.1 med 200 community [174:666] withdraw watchdog service-watchdog;
		route 172.10.0.0/16 next-hop 192.0.2.1 med 200 community [174:666] watchdog watchdog-one withdraw;
		route 10.0.0.0/16 {
			next-hop 192.0.2.1;
			med 200;
			community [174:666];
			watchdog watchdog-one;
			withdraw;
		}
	}
}
