cups-browsed.conf 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. # Which protocols will we use to discover printers on the network?
  2. # Can use DNSSD and/or CUPS, or 'none' for neither.
  3. BrowseRemoteProtocols dnssd cups
  4. # Which protocols will we use to broadcast shared local printers to the network?
  5. # Can use DNSSD and/or CUPS, or 'none' for neither.
  6. # Only CUPS is actually supported, as DNSSD is done by CUPS itself (we ignore
  7. # DNSSD in this directive).
  8. # BrowseLocalProtocols none
  9. # Settings of this directive apply to both BrowseRemoteProtocols and
  10. # BrowseLocalProtocols.
  11. # Can use DNSSD and/or CUPS, or 'none' for neither.
  12. # BrowseProtocols none
  13. # Only browse remote printers from selected servers
  14. # BrowseAllow all
  15. # BrowseAllow cups.example.com
  16. # BrowseAllow 192.168.1.12
  17. # BrowseAllow 192.168.1.0/24
  18. # BrowseAllow 192.168.1.0/255.255.255.0
  19. # Use BrowsePoll to poll a particular CUPS server
  20. # BrowsePoll cups.example.com
  21. # BrowsePoll cups.example.com:631
  22. # BrowsePoll cups.example.com:631/version=1.1
  23. # Use DomainSocket to access the local CUPS daemon via another than the
  24. # default domain socket
  25. # DomainSocket /var/run/cups/cups.sock
  26. # Set CreateIPPPrinterQueues to "Yes" to let cups-browsed discover IPP
  27. # network printers (native printers, not CUPS queues) with known page
  28. # description languages (PWG Raster, PDF, PostScript, PCL XL, PCL
  29. # 5c/e) in the local network and auto-create PPD-less print queues for
  30. # them (using a System V interface script to control the filter
  31. # chain). Clients have to IPP-poll the capabilities of the printer and
  32. # send option settings as standard IPP attributes. We do not poll the
  33. # capabilities by ourselves to not wake up the printer from
  34. # power-saving mode when creating the queues. Jobs have to be sent in
  35. # PDF format. Other formats are not accepted. This functionality is
  36. # primarily for mobile devices running CUPS to not need a printer
  37. # setup tool nor a collection of printer drivers and PPDs.
  38. # CreateIPPPrinterQueues Yes
  39. # The AutoShutdown directive specifies whether cups-browsed should
  40. # automatically terminate when it has no local raw queues set up
  41. # pointing to any discovered remote printers (auto shutdown
  42. # mode). Setting it to "On" activates the auto-shutdown mode, setting
  43. # it to "Off" deactiivates it (the default). The special mode "avahi"
  44. # turns auto shutdown off while avahi-daemon is running and on when
  45. # avahi-daemon stops. This allows running cups-browsed on-demand when
  46. # avahi-daemon is run on-demand.
  47. # AutoShutdown Off
  48. # AutoShutdown On
  49. # AutoShutdown avahi
  50. # The AutoShutdownTimeout directive specifies after how many seconds
  51. # without local raw queues set up pointing to any discovered remote
  52. # printers cups-browsed should actually shut down in auto shutdown
  53. # mode. Default is 30 seconds, 0 means immediate shutdown.
  54. # AutoShutdownTimeout 30
  55. # Unknown directives are ignored, also unknown values.