up vote 1 down vote favorite
1
share [g+] share [fb]

I am trying to use SCP on my local server to copy a file from one remote server to another remote server (both remote servers use a custom port (xxxx)

I am trying:

scp -r -P xxxx root@xxx.xxx.xxx.111:/home/myimages/images.tar.gz root@xxx.xxx.xxx.222:/home/myimages/images.tar.gz

But I get the following error:

ssh: connect to host xxx.xxx.xxx.222 port 22: Connection timed out

Any suggestions?

link|improve this question
I presume that you can ssh to xxx.xxx.xxx.222 normally? – Benj Nov 5 '09 at 10:10
Yeah, I can ssh to all servers from all servers – Lizard Nov 5 '09 at 10:14
Cross posted here: serverfault.com/questions/81650/… – Dennis Williamson Nov 5 '09 at 11:55
feedback

migrated from stackoverflow.com Nov 7 '09 at 0:07

This question came from our site for professional and enthusiast programmers.

3 Answers

up vote 7 down vote accepted


did you check that direct authentication works from first remote host to the second one?

scp user@host:/file user@otherhost:/otherfile is shorthand for

ssh user@host scp /file user@otherhost:/otherfile

which leeds me to think:

ssh -p XXX user@host scp -P XXX /file user@otherhost:/otherfile might work.

link|improve this answer
Yeah, i have ssh'd to both all servers from each server :( – Lizard Nov 5 '09 at 10:10
Good point, just because you can see xxx.222 doesn't mean that xxx.111 can. – Benj Nov 5 '09 at 10:11
It is a good point, but I have already checked that, any other suggestions? – Lizard Nov 5 '09 at 10:13
The ssh then the scp does what i need it to. – Lizard Nov 5 '09 at 10:18
feedback

It seems like scp doesn't realize that the special port should also be used on the second server. You could try to explicitly call ssh to start the remote scp transfer:

ssh -P xxxx user@host scp -P xxxx /file user@otherhost:/otherfile
link|improve this answer
feedback

Define the servers in your .ssh/config file, for example:

Host foobar
User youruser
Port 2222
Hostname the.real.hostname

Host foobar2
User youruser
Port 2222
Hostname the2.real.hostname

You can then simply do:

scp foobar:file foobar2:

and it will use the defined custom ports.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.