<div dir="ltr">Hi<div><br></div><div>First time user of bird here so please be gentle. :)</div><div>I am trying to use bird for a project and I'd like to use it for creating separate routing tables in linux.</div><div><br></div><div>I tried to simplify my setup as much as possible like this:</div><div><br></div><div>[root@host1 etc]# cat bird.conf<br>log stderr all;<br><br>router id 172.30.2.20;<br><br>protocol device {<br>  scan time 2;    # Scan interfaces every 2 seconds<br>}<br><br>protocol kernel {<br>  learn;          # Learn all alien routes from the kernel<br>  persist;        # Don't remove routes on bird shutdown<br>  scan time 2;    # Scan kernel routing table every 2 seconds<br>  graceful restart;<br>  export all;     # Default is export none<br>  merge paths;    # enable ecmp<br>}<br><br>protocol direct {<br>   debug all;<br>   interface "-dummy0", "dummy1", "eth*", "em*", "en*", "br-mgmt";<br>}<br><br>table extra;<br>protocol kernel kernelextra {<br>  learn;<br>  persist;<br>  scan time 2;<br>  table extra;<br>  kernel table 100;<br>  import all;<br>  export all;<br>}<br><br>protocol pipe {<br>  table extra;<br>  peer table master;<br>  import all;<br>  export all;<br>}<br>[root@host1 etc]# ip link add mylink type dummy<br>[root@host1 etc]# ip link set mylink up<br>[root@host1 etc]# ip route add <a href="http://10.0.2.3/32">10.0.2.3/32</a> dev mylink<br>[root@host1 etc]# systemctl restart bird<br>[root@host1 etc]# ip r<br>default via 172.29.0.1 dev eth1 <br>10.0.2.3 dev mylink scope link <br><a href="http://172.29.0.0/25">172.29.0.0/25</a> dev eth1 proto kernel scope link src 172.29.0.20 <br><a href="http://172.30.2.0/25">172.30.2.0/25</a> dev eth0 proto kernel scope link src 172.30.2.20 <br>[root@host1 etc]# ip r show table 100<br>default via 172.29.0.1 dev eth1 proto bird <br></div><div><br></div><div>Is there any way that I can have the <a href="http://10.0.2.3/32">10.0.2.3/32</a> route show up in kernel table 100?</div><div><br></div><div>[root@host1 etc]# bird --version<br>BIRD version 1.6.8<br></div><div><br></div><div>Thank you so much for an awesome piece of software!</div><div><br></div><div>//Per</div></div>