saned.conf 1.0 KB

1234567891011121314151617181920212223242526272829303132
  1. # saned.conf
  2. # Configuration for the saned daemon
  3. ## Daemon options
  4. # Port range for the data connection. Choose a range inside [1024 - 65535].
  5. # Avoid specifying too large a range, for performance reasons.
  6. #
  7. # ONLY use this if your saned server is sitting behind a firewall. If your
  8. # firewall is a Linux machine, we strongly recommend using the
  9. # Netfilter nf_conntrack_sane connection tracking module instead.
  10. #
  11. # data_portrange = 10000 - 10100
  12. ## Access list
  13. # A list of host names, IP addresses or IP subnets (CIDR notation) that
  14. # are permitted to use local SANE devices. IPv6 addresses must be enclosed
  15. # in brackets, and should always be specified in their compressed form.
  16. #
  17. # The hostname matching is not case-sensitive.
  18. localhost
  19. #scan-client.somedomain.firm
  20. 192.168.1.0/24
  21. #192.168.0.1/29
  22. #[2001:db8:185e::42:12]
  23. #[2001:db8:185e::42:12]/64
  24. # NOTE: /etc/inetd.conf (or /etc/xinetd.conf) and
  25. # /etc/services must also be properly configured to start
  26. # the saned daemon as documented in saned(8), services(4)
  27. # and inetd.conf(4) (or xinetd.conf(5)).