neighbor 10.0.0.10 {
	description "parsing received label";
	router-id 82.219.212.34;
	local-address 82.219.212.34;
	local-as 30740;
	peer-as 30740;
	hold-time 180;

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

	static {
		route 82.219.0.0/24 {
      label [ 12345 5678 ];
			# 17 34 51 68 -> 0x11 0x22 0x33 0x44 
			next-hop 127.0.0.1;
			origin igp;
			as-path [ 30740 30740 30740 30740 30740 30740 30740 ];
			local-preference 1;
			med 2000;
			community [ no-export ];
      originator-id 82.219.212.34;
      cluster-list [ 82.219.212.34 10.10.10.10 ];
		}
		route 82.219.0.0/16 {
      label [ 12345 5678 ];
			# 17 34 51 68 -> 0x11 0x22 0x33 0x44 
      path-information 17.34.51.68;
			next-hop 127.0.0.1;
			origin igp;
			as-path [ 30740 30740 30740 30740 30740 30740 30740 ];
			local-preference 1;
			med 2000;
			community [ no-export ];
      originator-id 82.219.212.34;
      cluster-list [ 82.219.212.34 10.10.10.10 ];
		}
	}
}
