scp通过跳板机复制文件
使用 scp
命令通过跳板机(也称为中转机或中间服务器)复制文件,可以通过 SSH 隧道来实现。假设你有以下环境:
你可以使用以下步骤通过跳板机复制文件:
首先,在本地机器上创建一个 SSH 隧道,通过跳板机连接到目标机器。你可以使用 -J
选项(SSH 跳转)来实现这一点。
scp -o ProxyJump=username@jump_host local_file username@target_host:/remote/directory/
scp -o ProxyJump=username@jump_host username@target_host:/remote/file /local/directory/
你也可以通过编辑 SSH 配置文件(通常是 ~/.ssh/config
)来简化命令。添加以下内容到你的 SSH 配置文件:
Host target_host
HostName target_host
User target_username
ProxyJump jump_username@jump_host
然后你可以直接使用 scp
命令,而不需要每次都指定跳板机:
scp local_file target_host:/remote/directory/
scp target_host:/remote/file /local/directory/
-3
选项scp
命令还提供了一个 -3
选项,可以在本��和远程主机之间通过跳板机复制文件。这个选项会在本地机器上创建两�� SSH 连接,一个到跳板机,一个从跳板机到目标机器。
scp -3 local_file jump_username@jump_host:target_username@target_host:/remote/directory/
scp -3 jump_username@jump_host:target_username@target_host:/remote/file /local/directory/
600
)。通过这些方法,你可以方便地通过跳板机复制文件。