How can I specify a port for the destination ip? When I do scp -p 0000
it still tries to connect on port 22, not the one I'm specifying.
scp svn_backup.tgz user@xxx.xxx.xx.xxx:/path/to/new/svn/
How can I specify a port for the destination ip? When I do scp -p 0000
it still tries to connect on port 22, not the one I'm specifying.
scp svn_backup.tgz user@xxx.xxx.xx.xxx:/path/to/new/svn/
Capital "P".
$ scp -P 12345 svn_backup.tgz user@xxx.xxx.xx.xxx:/path/to/new/svn/
See $ man scp
for more details.
It's also noteworthy that the port specification must come before the file name, i.e.:
scp svn_backup.tgz -P 12345 user@xxx.xxx.xx.xxx:/path/to/new/svn/
*won't work.