Hi, I have two ubuntu(14.04) hosts running bird(1.4.0) on it, my bird.conf is as follows, *On Host-1*, router id 192.168.1.101; protocol device { scan time 10; } protocol kernel { export all; scan time 15; } protocol static static_bgp { import all; } protocol bgp { import all; export where proto = "static_bgp"; local as 200; neighbor 10.0.6.2 as 1000; } *On Host-2* router id 192.168.1.102; protocol device { scan time 10; } protocol kernel { export all; scan time 15; } protocol static static_bgp { import all; } protocol bgp { import all; export where proto = "static_bgp"; local as 1000; neighbor 10.0.6.1 as 200; } I am not able establish connection between them,it say , no route to host in last error message. how do I configure bird between two ubuntu hosts? -- Thanks &Regards, Prashant Chougule.