On Mon 06 Dec 2004, Payal Rathod wrote:

> This is the first time I have setup rsync.conf like,
[...]

> Then from 192.168.10.10, I tried,
> rsync -avz -e ssh [EMAIL PROTECTED]:/var/qmail/control/* .
> and it worked. So far so good. But then again it worked from 192.168.10.11

Rsyncd.conf is only used when running rsync as a daemon; when invoking
it via ssh like you do, the rsyncd.conf isn't used at all.
(It's possible to start rsync in daemon mode over an ssh connection, but
that's a bit exotic IMHO.)
Also note that you passed a wildcard, it's better to let rsync do the
expansion, which it will do as you gave the -a option.

You connect to the rsync daemon by using a command line like:
rsync -avz 192.168.10.1::qmail-control .
Of course, you will have to have started the daemon on 192.168.10.1
first.


Paul Slootman
-- 
To unsubscribe or change options: http://lists.samba.org/mailman/listinfo/rsync
Before posting, read: http://www.catb.org/~esr/faqs/smart-questions.html

Reply via email to