Config.in 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. config BR2_PACKAGE_MDNSD
  2. bool "mdnsd"
  3. depends on BR2_USE_MMU # fork()
  4. help
  5. Small mDNS-SD daemon for advertising services and device
  6. discovery, similar to Avahi and Bonjour.
  7. By default, mdnsd runs on all interfaces that support
  8. multicast. It reads services to announce from
  9. /etc/mdns.d/*.service, a few common services are included
  10. below. To override the defaults, e.g., path to services,
  11. TTL of multicast frames, or the default interface, set
  12. MDNSD_ARGS in /etc/default/mdnsd
  13. Note: currently no NSS integration with GLIBC.
  14. https://github.com/troglobit/mdnsd
  15. if BR2_PACKAGE_MDNSD
  16. config BR2_PACKAGE_MDNSD_MQUERY
  17. bool "mquery"
  18. help
  19. Scan a LAN for mDNS capable devices, or query specific
  20. records, similar to the mdns-scan tool. Useful for
  21. verifying multicast connectivity or locating neighbors with
  22. link-local address.
  23. comment "Services to advertise"
  24. config BR2_PACKAGE_MDNSD_FTP_SERVICE
  25. bool "FTP service"
  26. config BR2_PACKAGE_MDNSD_HTTP_SERVICE
  27. bool "HTTP service"
  28. config BR2_PACKAGE_MDNSD_IPP_SERVICE
  29. bool "IPP service"
  30. config BR2_PACKAGE_MDNSD_PRINTER_SERVICE
  31. bool "Printer service"
  32. config BR2_PACKAGE_MDNSD_SSH_SERVICE
  33. bool "SSH service"
  34. default y if BR2_PACKAGE_DROPBEAR
  35. default y if BR2_PACKAGE_OPENSSH
  36. default y if BR2_PACKAGE_LIBSSH_SERVER
  37. endif