radvd.conf.j2 276 B

1234567891011121314151617
  1. {% if mesh_ipv6 is defined %}
  2. interface bat0
  3. {
  4. AdvSendAdvert on;
  5. IgnoreIfMissing on;
  6. MaxRtrAdvInterval 600;
  7. MinDelayBetweenRAs 10;
  8. AdvLinkMTU 1280;
  9. prefix {{mesh_ipv6}}
  10. {
  11. };
  12. RDNSS {{mesh_ipv6|ipaddr('address')}}
  13. {
  14. };
  15. };
  16. {% endif %}