In some special cases is a VM accessible over NAT and on different port as usually 22.
In this case – SSH is running on port 222.
This make the rsync operation little bit complexer:
1 | rsync -vraze 'ssh -p 222' root@remote:/source/ /destination/ |
In some special cases is a VM accessible over NAT and on different port as usually 22.
In this case – SSH is running on port 222.
This make the rsync operation little bit complexer:
1 | rsync -vraze 'ssh -p 222' root@remote:/source/ /destination/ |
rsync -vraze 'ssh -p 222' root@remote:/source/ /destination/
Leave a Reply