neighbor 10.0.0.3 {
	description "will pass received routes to the program";
	router-id 10.0.0.2;
	local-address 10.0.0.2;
	local-as 654321;
	peer-as 123456;
	hold-time 180;

  family {
		# ipv4 unicast;
		# ipv4 multicast;
		# ipv4 nlri-mpls;
		# ipv4 mpls-vpn;
		# ipv6 unicast;
		# ipv4 flow-vpn
		# ... or
		# ipv4 flow;
		all;
		#minimal;
  }

	process parsed-route-backend {
		receive-routes;
		run etc/exabgp/processes/syslog-1.py;
	}

	static {
		route 10.0.0.0/24 next-hop 192.0.2.1 extended-community 0x4002FDE800000001;
		route 10.0.1.0/24 next-hop 192.0.2.1 extended-community 0x410301020304162E;
		route 10.0.2.0/24 next-hop 192.0.2.1 extended-community [ target:1234:4.3.2.1 target:1.2.3.4:4321 ];
		route 10.0.3.0/24 next-hop 192.0.2.1 extended-community [ origin:2345:6.7.8.9 origin:2.3.4.5:6789 ];
	}
}
