#
# This file is managed by ansible. Do not edit by hand!
#

log syslog all;
router id {{routerid}};

include "/etc/bird6.d/*.cfg";

protocol static uplink_hostroute {
   import all;
   export all;
}

protocol direct {
        interface "*";
}

protocol kernel {
        persist;
        device routes;
        scan time 20;
        import all;
        export all;
        kernel table 42;
}

protocol device {
        scan time 10;
}

template bgp ibgp {
        local as {{as}};
        source address {{mesh_ipv6|ipaddr('address')}};
        import all;
        export all;
        next hop self;
        direct;
        gateway direct;
}