<div dir="ltr">I cannot get my OSPF routes to show up in my Linux Routing table.  I have tried multiple configurations, but the routes never populate into Linux.  They are present in the Bird Interface, but not outside of Bird.  I'm sorry for asking a super easy question here, but I cannot find any good basic information on OSPF configurations online.<div><br></div><div>Here is my BIRDC output:</div><div><br></div><div>bird> show route<br><a href="http://0.0.0.0/0">0.0.0.0/0</a>  via 192.168.100.3 on eth0 [ospf1 16:05:29] ! E2 (150/1/1) [1] [192.168.100.3]<br><a href="http://192.168.100.0/29">192.168.100.0/29</a>   dev eth0 [direct1 16:04:07] * (240)<br>                   dev eth0 [ospf1 16:04:08] I (150/1) [1.2.3.4]<br><a href="http://192.168.200.0/29">192.168.200.0/29</a>   dev eth1 [direct1 16:04:07] * (240)<br>                   dev eth1 [ospf1 16:04:08] I (150/1) [1.2.3.4]<br></div><div><br></div><div><br></div><div><br></div><div>And my Linux Output:</div><div><br></div><div>ubuntu@ubuntu:~$ ip route<br>default via 192.168.200.2 dev eth1 proto static<br>default via 192.168.100.1 dev eth0 proto static<br><a href="http://192.168.100.0/29">192.168.100.0/29</a> dev eth0 proto kernel scope link src 192.168.100.2<br><a href="http://192.168.200.0/29">192.168.200.0/29</a> dev eth1 proto kernel scope link src 192.168.200.1<br></div><div><br></div><div><br></div><div><br></div><div>And my BIRD Configuration File:</div><div><br></div><div>ubuntu@ubuntu:~$ sudo cat /etc/bird/bird.conf<br>log syslog all;<br>router id 1.2.3.4;<br>protocol device {<br>        scan time 10;<br>        }<br>protocol kernel {<br>        export all;<br>        scan time 15;<br>        }<br>protocol direct {<br>        interface "*";<br>        import all;<br>        }<br>protocol ospf {<br>        tick 2;<br>        rfc1583compat yes;<br>        import all;<br>        merge external;<br>        area 0 {<br>                interface "eth*" {<br>                cost 1;<br>                type broadcast;<br>                hello 10;<br>                retransmit 5;<br>                wait 40;<br>                dead 40;<br>                };<br>        };<br>}<br></div><div><br></div><div><br></div><div><br></div><div><br></div><div>I really appreciate any help that anyone has to offer.  I'm sure it's something basic and simple, but I do not know enough yet to figure it out on my own.  Thanks!</div></div>