1
0

rsync.xinetd.conf 566 B

123456789101112131415161718
  1. # default: off
  2. # description: The rsync server is a good addition to an ftp server, as it \
  3. # allows crc checksumming etc.
  4. service rsync
  5. {
  6. disable = no
  7. flags = IPv4
  8. socket_type = stream
  9. wait = no
  10. user = root
  11. server = /usr/bin/rsync
  12. server_args = --daemon
  13. only_from = YOU IP
  14. bind = SERVER IP
  15. log_type = FILE /var/log/rsyncd.log
  16. log_on_failure += USERID HOST
  17. log_on_success += USERID HOST
  18. }