I have a case when there are 2 remote hosts, each with a unique port number, which i both need to indicate when using SCP command. There is no problem indicating the unique (non 22) port number for the first one, but i can't figure out how to indicate it for the second one.
Here is how it looks like now -
scp -P 1234 [email protected]:/path/to/file [email protected]:/path/to/directory
The way that you are running scp in your question, it would just invoke the scp program on the first host, telling it to send the file to the second host. You can directly invoke
ssh
to run the scp command on the first host however you like it:If the first host can't connect directly to the second host, you'd normally use the scp option
-3
to send the data from the first host to the second host through you local host. If you're in that position, you could emulate how scp runs that kind of transfer, though it's sort of a hack:This is based on how the SCP protocol works. The first
ssh
line runs scp on the first remote host in "remote source" mode to send the source file. The secondssh
lines runs scp on the second host in "remote sink" mode to receive the file and write it to the directory. "remote source" and "remote sink" are whatscp
normally runs on the remote system when receiving or sending files, respectively.The
yes "" | tr '\n' '\0' |
line creates a stream of NUL (Ascii 0) bytes which are needed for the protocol to work. Thescp -f
instance reads these and won't send files without them. There are other ways to generate a stream of NUL bytes if you like.