首页 > 其他分享 >ssh、scp通过跳板机

ssh、scp通过跳板机

时间:2022-11-15 21:44:45浏览次数:66  
标签:jumpbox 跳板 target 22 user file scp ssh

SSH

ssh -J user@jumpbox user@target-host 
ssh -J jumpbox1 jumpbox2 jumpbox3 target-host

SCP

download

scp -P 22 -o 'ProxyJump jumpbox' -r target-host:target-dir/target-file local-dir/local-file
scp -P 22 -o 'ProxyJump user@jumpbox -p 22' -r [email protected]:/tmp/file  /home/user/file
scp -o 'ProxyJump user@jumpbox' -r [email protected]:/tmp/file  /home/user/file

upload

scp -P 22 -o 'ProxyJump jumpbox' -r local-dir/local-file target-host:target-dir/target-file
scp -P 22 -o 'ProxyJump user@jumpbox -p 22' -r /home/user/file [email protected]:/tmp/file
scp -o 'ProxyJump user@jumpbox' -r /home/user/file [email protected]:/tmp/file

参考:https://blog.csdn.net/yulewo123/article/details/123978385

标签:jumpbox,跳板,target,22,user,file,scp,ssh
From: https://www.cnblogs.com/zhaojli/p/16894089.html

相关文章

  • mac电脑安装secureCrt,secureCrt如何登录ssh
    mac软件下载:SecureCRTformac(终端SSH工具)关闭sip使用最新版本SecureFX和SecureCRT不能在同一个路径下破解激活,可以分别安装在两个不同的目录下使用。比如一个安装在......
  • linux SSH配置
    linuxSSH配置1、简介SSH(SecureShell,安全外壳)是一种网络安全协议,通过加密和认证机制实现安全的访问和文件传输等业务。传统远程登录或文件传输方式,例如Telnet、FTP,使用......
  • MAC ssh登录远程主机报错:Someone could be eavesdropping on you right now (man-in-t
    1@WARNING:REMOTEHOSTIDENTIFICATIONHASCHANGED!@23@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@45ITISPOSSIBLETHAT......
  • 在ArchLinux中重新生成ssh host keys
    删除原有keysudorm/etc/ssh/ssh_host_*生成新keysudossh-keygen-tdsa-f/etc/ssh/ssh_host_dsa_keysudossh-keygen-trsa-f/etc/ssh/ssh_host_rsa_keys......
  • 公网ssh远程连接Linux【无公网IP】
    我们经常会遇到在外远程linux服务的情况,而IPV4资源的枯竭,现在被分配到的基本都是内网IP。在没有公网IP的情况下,如何实现在外远程ssh连接linux服务。这里推荐一款内网穿透......
  • Ubuntu安装ssh服务
    安装sudoapt-getinstallopenssh-server启动systemctlstartssh重启systemctlrestartssh关闭systemctlstopssh......
  • ssh 端口转发
    ssh端口转发(sshport-forward)SSH除了登录服务器,还有一大用途,就是作为加密通信的中介,充当两台服务器之间的通信加密跳板,使得原本不加密的通信变成加密通信。这个功能称......
  • 使用frp端口映射实现内网穿透(SSH、HTTP服务)
    文章共1,262字,阅读完预计需要2分钟7秒。文章篇幅适中,可以放心阅读。参考:[使用frp端口映射实现内网穿透(SSH、HTTP服务)-勇者の小栈](https://www.ken-chy129.cn/......
  • Windows系统中使用GIT通过SSH连接Github
    打开GitBash运行以下代码:gitconfig--globaluser.name"XXXXX"#这里XXXXX为github的用户名gitcongif--globaluser.email"[email protected]" #github的注册邮箱......
  • CentOS 7使用ttyd搭建一个WEB共享终端(WebSSH)
    官网下载地址:​​https://github.com/tsl0922/ttyd/releases​​下载ttyd:wget-Ottyd​​https://github.com/tsl0922/ttyd/releases/download/1.6.0/ttyd_linux.x86_64......