Rsync (873)

Protocol Information

Rsync is used to synchronize files and directories between two systems efficiently. This protocol allows copying only those parts of files that have changed. It is often used for backups, data transfers, or maintaining synchronized copies between servers or local devices.

Port

873 TCP

Rsync daemon

Interact

If anonymous access is enabled, it's possible log in with username “anonymous” and password “”.

Listing a share and object:

rsync --list-only <USER>@<IP>::
rsync --list-only <USER>@<IP>::<SHARE>

Download a file:

rsync --list-only <USER>@<IP>::<SHARE>/<FILE> ./<NEW_NAME>

Backup

Back up <LOCAL> to <REMOTE>

rsync -av <PATH_LOCAL> <USER>@<IP>:<PATH_REMOTE>

Restore <REMOTE> to <LOCAL>

rsync -av <USER>@<IP>:<PATH_REMOTE> <PATH_LOCAL>

Last updated