Hello, I'm currently trying to run bird6 on a Gluon-Device (Gluon is build upon OpenWRT) to announce Router Advertisments. I need to announce more specific routes, which I'm trying to export like this: table radv_routes; # Add routes protocol static { table radv_routes; route fd21:b4dc::/40 via fe80::1; } protocol radv { table radv_routes; propagate routes yes; export all; interface "local-gw" { max ra interval 5; default preference high; default lifetime 1600; }; prefix 2a0e:...::/64 { }; } The configuration is inspired by the example from https://bird.network.cz/?get_doc&v=16&f=bird-6.html#ss6.10 Every time I'm trying to start bird with "propagate routes yes" it says that there's a syntax error in this line. Without - announcing only the default route - everything works fine. The exact version is 1.6.3 on OpenWRT 18.02. Has anyone an idea on how to solve this? I didn't found this as "known bug" yet. Thanks and best regards Marvin