home.social

#ospfd — Public Fediverse posts

Live and recent posts from across the Fediverse tagged #ospfd, aggregated by home.social.

  1. Does someone here have experience with the BIRD routing daemon?

    I have a kernel route that's not imported, and I don't know why.

    # ip route | grep -E "^172"
    172.31.100.0/24 dev tap0 proto kernel scope link src 172.31.100.1
    172.31.254.0/24 dev tun0 proto kernel scope link src 172.31.254.1
    # birdc show route | grep -E "^172"
    172.31.100.0/24    dev tap0 [MyOSPF 15:50:22] * I (150/10) [10.10.40.20]

    The kernel protocol is set to import all:
    protocol kernel {
    	scan time 60;
    	learn;
    	import all;
    	export all;
    }

    There is a filter, but I don't think it should match here:
    filter vpn_filter {
        if net = 0.0.0.0/0 then reject;
    else accept;
    }

    Any ideas?

    #help #helpneeded #bird #routing #linux #ospf #ospfd #network