bird 2.0.0 issues

Radu Anghel radu.anghel at xindi.ro
Thu Dec 14 19:51:59 CET 2017


On 14.12.2017 20:31, Ondrej Zajicek wrote:
> Hello
> 
> Thanks for reports Could you send me your config file? If you add 'debug
> all' to your Kernel protocol, what you see in logs?
> 

Nothing is logged if I enable debug all to the kernel protocol, total
silence. I'm attaching my current config.

Thanks,

Radu
-------------- next part --------------
log syslog all;
# log "/tmp/bird.log" all;

#timeformat protocol "%s";

router id 1.2.3.4;

define myASN = 65533;

protocol device DEVICE {
    scan time 3600;
}

protocol kernel KERNEL4 {
    debug all;
#    learn;
    ipv4;
    scan time 60;
    ipv4 { 
        import all;
        export filter { if proto = "STATIC4" then accept; reject; };
    };
}

protocol kernel KERNEL6 {
    debug all;
#    learn;
    ipv6;
    scan time 60;
    ipv6 {
        import all;
        export filter { if proto = "STATIC6" then accept; reject; };
    };
}

protocol static STATIC4 {
    ipv4;

    route 10.0.0.0/24 via "eth0";
}

protocol static STATIC6 {
    ipv6;
    
    route 2001:db8::/64 via "eth0";
}

protocol bgp RC4 {
    debug { events };
    disabled off;

    local as myASN;

    ipv4;

    neighbor x.x.x.x as 48112;

    multihop 2;

    passive off;

    ipv4 {
	next hop self;
	import all;
	export none;

#	add paths on;
    };
}

protocol bgp RC6 {
    debug { events };
    disabled off;

    local as myASN;

    ipv6;

    neighbor xxxx:xxxx::xxxx as 48112;

    multihop 2;

    passive off;

    ipv6 {
        next hop self;
        import all;
        export none;

#        add paths on;
    };
}


More information about the Bird-users mailing list