<div dir="ltr"><div><div><div><div><div>Hello,<br><br></div>Could you please help with an OSPF configuration. <br><br>I have configured a GRE tunnel between two peers - '172.16.0.9' and '172.16.0.4'. I configured then a local address on the newly created tunnel interface '172.16.1.1'. I would like to configure bird to speak on the GRE interface.<br><br></div>I tried with the following configuration but I cannot see that bird is announcing anything:<br><b><br># ifconfig</b><br>eth0      Link encap:Ethernet  HWaddr 00:D0:12:05:C6:D6  <br>          inet addr:172.16.0.4  Bcast:172.16.0.255  Mask:255.255.255.0<br>          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1<br>          RX packets:12613 errors:0 dropped:1 overruns:0 frame:0<br>          TX packets:9503 errors:0 dropped:0 overruns:0 carrier:0<br>          collisions:0 txqueuelen:100 <br>          RX bytes:1237627 (1.1 MiB)  TX bytes:2152677 (2.0 MiB)<br><br>eth1      Link encap:Ethernet  HWaddr 00:D0:12:06:C7:D7  <br>          inet addr:10.0.4.1  Bcast:10.0.4.255  Mask:255.255.255.0<br>          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1<br>          RX packets:294 errors:0 dropped:1 overruns:0 frame:0<br>          TX packets:421 errors:0 dropped:0 overruns:0 carrier:0<br>          collisions:0 txqueuelen:100 <br>          RX bytes:53820 (52.5 KiB)  TX bytes:97344 (95.0 KiB)<br><br><u>gretesttunnel</u> Link encap:UNSPEC  HWaddr AC-10-00-04-00-00-00-00-00-00-00-00-00-00-00-00  <br>          inet addr:172.16.1.2  P-t-P:172.16.1.1  Mask:255.255.255.255<br>          UP POINTOPOINT RUNNING NOARP MULTICAST  MTU:1500  Metric:1<br>          RX packets:0 errors:0 dropped:0 overruns:0 frame:0<br>          TX packets:8 errors:0 dropped:0 overruns:0 carrier:0<br>          collisions:0 txqueuelen:0 <br>          RX bytes:0 (0.0 B)  TX bytes:320 (320.0 B)<br><br>lo        Link encap:Local Loopback  <br>          inet addr:127.0.0.1  Mask:255.0.0.0<br>          UP LOOPBACK RUNNING  MTU:65536  Metric:1<br>          RX packets:0 errors:0 dropped:0 overruns:0 frame:0<br>          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0<br>          collisions:0 txqueuelen:0 <br>          RX bytes:0 (0.0 B)  TX bytes:0 (0.0 B)<br></div><div><br></div><b>bird config:</b><br><br>protocol kernel {<br>  #  persist;             # Don't remove routes on BIRD shutdown<br>  scan time 20;       # Scan kernel routing table every 20 seconds<br>  export all;             # Default is export none<br>  learn;<br>  device routes;<br>}<br><br>protocol device {<br>  scan time 10;           # Scan interfaces every 10 seconds<br>}<br><br>#protocol direct {<br>#  interface "*";<br>#  export all;<br>#}<br><br>protocol ospf OSPF {<br>  rfc1583compat;<br>  export all;<br>  import all;<br><br>  area 172.16.0.0 {<br>    networks {<br>      <u><a href="http://172.16.1.0/24">172.16.1.0/24</a>;</u><br>    };<br>}<br><br></div>Thanks in advance!<br></div>Alexander Velkov<br></div>