respondd-config.tmpl 576 B

12345678910111213141516171819202122232425262728
  1. {
  2. "batman": "{{ bat_iface }}",
  3. "bridge": "{{ mcast_iface }}",
  4. {%- if mesh_vpn %}
  5. "mesh-vpn": ["{{ ('", "').join(mesh_vpn) }}"],
  6. {%- endif %}
  7. "nodeinfo": {
  8. "hostname": "{{ hostname }}",
  9. {%- if location %}
  10. "location": {
  11. "latitude": {{ location.latitude }},
  12. "longitude": {{ location.longitude }}
  13. },
  14. {%- endif %}
  15. "network": {
  16. "mac": "{{ mac_address }}"
  17. },
  18. "software": {
  19. "firmware": {
  20. "release": "FFHO-1.0"
  21. }
  22. },
  23. "system": {
  24. "site_code": "{{ site_code }}"
  25. },
  26. "vpn": {{ fastd_peers }}
  27. }
  28. }