欢迎各位兄弟 发布技术文章

这里的技术是共享的

You are here

sftp 无交互(不输密码,无提示) 发送文件 有大用 有大大用

背景:机器A 无交互 发送文件到机器B

机器A:

  1. ssh-keygen
  2. #一路回车
  3. chmod 755 ~/.ssh
  4. #把~/.ssh/id_rsa.pub发送到机器B

机器B:

  1. #将机器A发送过来的文件改名为authorized_keys,并放到~/.ssh/下
  2. #改权限
  3. chmod 755 /home/~                                                   
  4. chmod 700 /home/~/.ssh
  5. chmod 700 /home/~/.ssh/authorized_keys

以上可以实现机器A无密码sftp机器B

无提示实现:

  1. #加上ssh参数即可
  2. sftp -o "StrictHostKeyChecking=no" user@host

 来自  https://blog.csdn.net/weixin_42182146/article/details/88035780


普通分类: