I'm trying to get net/rsync setup between two FreeBSD hosts one on the Internet and the other on a local network. net/rsync has just been installed on both systems using
Pulling from the remote host using
works fine, but pushing fails with this error:
Does anyone know what this means? I don't currently have any security in place, as far as I aware. Or have I simply got the syntax wrong?
rsyncd is running on the remote host.
pkg install rsync
.Pulling from the remote host using
rsync -av 111.111.111.111::test /tmp
works fine, but pushing fails with this error:
Code:
sending incremental file list
rsync: connection unexpectedly closed (0 bytes received so far) [sender]
rsync error: error in rsync protocol data stream (code 12) at io.c(226) [sender=3.1.2]
Does anyone know what this means? I don't currently have any security in place, as far as I aware. Or have I simply got the syntax wrong?
rsync -av /tmp 111.111.111.111::test
rsyncd is running on the remote host.