rsync xx.xxx.x.xxx::/data/file.txt .
For example, I am seeing others set such a way to transfer files from the /data/ directory without even requiring userid/password. I typically use scp to do:
scp -P 33 root@xx.xxx.x.xxx:/data/ .
The scp requires port and password. How to set rsync as the first case does?