/etc/xinetd.d/rsync

# default: off
# description: The rsync server is a good addition to an ftp server, as it \\
#       allows crc checksumming etc.
service rsync
{
        disable = no                            # no 로 하여 사용설정
        flags           = IPv6
        socket_type     = stream                # TCP
        wait            = no                    # multi
        user            = root
        server          = /usr/bin/rsync
        server_args     = --daemon
        log_on_failure  += USERID
}