Hi all, trying to enable IPv6 on my mirror. Ftp and http were easy enough, just trying to find the magic config to get rsync listening. Centos 5.2 standard rsync under xinetd.-
[root@galaxian xinetd.d]# cat /etc/rsyncd.conf motd file = /etc/vsftpd.banner max connections = 15 log file = /var/log/rsync.log timeout = 300 uid = nobody gid = nobody use chroot = yes
[pub] comment = Public Mirror path = /var/ftp/pub/ read only = yes list = yes
[root@galaxian xinetd.d]# cat /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 socket_type = stream wait = no user = root server = /usr/bin/rsync server_args = --daemon -6 log_on_failure += USERID flags = IPv6 per_source = 10 instances = 100 max_load = 5 banner_fail = /etc/vsftpd.busy_banner nice = 16 }
thanks
On 1/11/08 3:03 PM, "Tony Wicks" tony@prophecy.net.nz wrote:
Hi all, trying to enable IPv6 on my mirror. Ftp and http were easy enough, just trying to find the magic config to get rsync listening. Centos 5.2 standard rsync under xinetd.-
Mine works fine with IPv6 and CentOS 5.2.
[root@mirror ~]# cat /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 socket_type = stream wait = no user = root server = /usr/bin/rsync server_args = --daemon log_on_failure += USERID flags = IPv6 }
Make sure you reload xinetd when making these changes.
-Shaun