#route 77.93.35.15/32 next-hop 10.0.0.2;

group test {
	local-as 65533;
	peer-as 65533;
	hold-time 180;
	graceful-restart 1200;

	static {
       		route 1.0.0.0/8 next-hop 1.1.1.1;
       		route 2.0.0.0/8 next-hop 1.1.1.1;
        }

	neighbor 10.0.0.3 {
		description "router 1 with two routes";
		router-id 198.111.227.39;
		local-address 10.0.0.2;
	}

	static {
       		route 3.0.0.0/8 next-hop 1.1.1.1;
       		route 4.0.0.0/8 next-hop 1.1.1.1;
        }

	neighbor 127.0.0.1 {
		description "router 2 with four routes";
		router-id 127.0.0.0;
		local-address 10.0.0.2;
	}

	neighbor 127.0.0.2 {
		description "router 3 with five routes";
		router-id 127.0.0.0;
		local-address 10.0.0.2;
		static {
       			route 5.0.0.0/8 next-hop 1.1.1.1;
        	}
	}
}
