如何将密码传递给scp?

我知道不建议这样做,但是是否有可能将用户的密码传递给scp?

我想通过scp复制一个文件,作为批处理作业的一部分,接收服务器当然需要密码,不,我不能轻易地将其更改为基于密钥的身份验证。

1012238 次浏览

你可以使用像预计这样的工具编写脚本(也有一些方便的绑定,比如Python的Pexpect)。

下面是一个如何使用expect工具的例子:

sub copyover {
$scp = Expect->spawn("/usr/bin/scp ${srcpath}/$file $who:${destpath}/$file");
$scp->expect(30,"ssword: ") || die "Never got password prompt from $dest:$!\n";
print $scp 'password' . "\n";
$scp->expect(30,"-re",'$\s') || die "Never got prompt from parent system:$!\n";
$scp->soft_close();
return;
}

另一种方法是将用户密钥的公共部分添加到目标系统上的授权密钥文件中。在发起传输的系统上,可以运行ssh-agent守护进程,并将密钥的私有部分添加到代理中。然后可以将批作业配置为使用代理获取私钥,而不是提示输入密钥的密码。

这应该可以在UNIX/Linux系统或Windows平台上使用pageant和pscp实现。

如果您从Windows连接到服务器,Putty版本的scp(“pscp”)允许您通过-pw参数传递密码。

文档中有提到

只需生成一个SSH密钥:

ssh-keygen -t rsa -C "your_email@youremail.com"

复制~/.ssh/id_rsa.pub的内容 最后将它添加到远程机器~/.ssh/authorized_keys

确保远程机器具有0700 for ~./ssh folder0600 for ~/.ssh/authorized_keys权限

使用sshpass:

sshpass -p "password" scp -r user@example.com:/some/remote/path /some/local/path

所以密码不会显示在bash历史记录中

sshpass -f "/path/to/passwordfile" scp -r user@example.com:/some/remote/path /some/local/path

上面的操作将路径的内容从远程主机复制到本地。

安装:

    <李> ubuntu / debian
    • apt install sshpass
    • 李< / ul > < / > <李> centos / fedora
      • yum install sshpass
      • 李< / ul > < / >
      • mac w/ macports
        • port install sshpass
        • 李< / ul > < / >
        • mac w/ brew
          • brew install https://raw.githubusercontent.com/kadwanev/bigboybrew/master/Library/Formula/sshpass.rb
          • 李< / ul > < / >

您可以在unix/terminal上使用'expect'脚本

例如,创建'test。经验值:

#!/usr/bin/expect
spawn scp  /usr/bin/file.txt root@<ServerLocation>:/home
set pass "Your_Password"
expect {
password: {send "$pass\r"; exp_continue}
}

运行脚本

expect test.exp

我希望这对你有所帮助。

我发现这个答案非常有用。

rsync -r -v --progress -e ssh user@remote-system:/address/to/remote/file /home/user/

你不仅可以在那里传递密码,而且它还会在复制时显示进度条。真的太棒了。

  1. 确保你之前有“期望”工具,如果没有,就这样做

    # apt-get install expect < / p >

  2. 创建一个包含以下内容的脚本文件。(# vi /root/脚本文件)

    spawn scp /path_from/file_name user_name_here@to_host_name:/path_to

    expect "password:"

    send put_password_here\n;

    interact < / p >

  3. 使用expect工具执行脚本文件

    # expect /root/scriptfile < / p >

没有人提到它,但是腻子scp (pscp)有一个-pw选项作为密码。

文档可以在这里找到:https://the.earth.li/~sgtatham/putty/0.67/htmldoc/Chapter5.html#pscp

你可以使用ssh-copy-id来添加ssh密钥:

$which ssh-copy-id #check whether it exists

如果存在:

ssh-copy-id  "user@remote-system"

一旦你像上面解释的那样设置了ssh-keygen,你就可以做

scp -i ~/.ssh/id_rsa /local/path/to/file remote@ip.com:/path/in/remote/server/

如果你想减少每次输入的次数,你可以修改你的.bash_profile文件并将

alias remote_scp='scp -i ~/.ssh/id_rsa /local/path/to/file remote@ip.com:/path/in/remote/server/

然后从你的终端执行source ~/.bash_profile。然后,如果你在终端中输入remote_scp,它应该运行没有密码的scp命令。

Curl可以用作SCP的替代方案来复制文件,并且它支持在命令行上设置密码。

curl --insecure --user username:password -T /path/to/sourcefile sftp://desthost/path/

上面提到的所有解决方案都可以工作,只有当你安装了应用程序,或者你应该有管理权限安装除sshpass。

我发现这个非常有用的链接可以简单地在后台启动scp。

$ nohup scp file_to_copy user@server:/path/to/copy/the/file > nohup.out 2>&1

< a href = " https://charmyin.github。Io /scp/2014/10/07/run-scp-in-background/" rel="nofollow noreferrer">https://charmyin.github.io/scp/2014/10/07/run-scp-in-background/

  1. 确保目标服务器上启用了密码身份验证。如果它运行Ubuntu,那么在服务器上打开/etc/ssh/sshd_config,找到PasswordAuthentication=no行并注释掉所有这些行(将#放在该行的开头),保存文件并运行sudo systemctl restart ssh来应用配置。如果没有这样的线,那么你就完成了。
  2. 在你的scp命令中添加-o PreferredAuthentications="password",例如:
    scp -o PreferredAuthentications="password" /path/to/file user@server:/destination/directory
    

如果你观察到一个严格的主机键检查错误,那么使用-o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null选项。

完整示例如下 sshpass -p "password" scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null root@domain-name.com:/tmp/from/psoutput /tmp/to/psoutput < / p >

将文件从一个服务器复制到另一个服务器(在脚本上)

在ubuntu或其他Linux机器上安装putty。Putty随pscp附带。我们可以用pscp复制文件。

apt-get update
apt-get install putty
echo n |  pscp -pw "Password@1234" -r user_name@source_server_IP:/copy_file_path/files /path_to_copy/files

有关更多选项,请参阅pscp help。

您可以使用以下步骤。这对我很管用!

< >强Step1 - 创建一个正常的文件假设"fileWithScpPassword"

步骤2 -使用sshpaas - f后跟密码文件名,然后是正常的scp命令。

sshpass -f;fileWithScpPassword"scp /filePathToUpload user@ip:/destinationPath/

我有一个简单的方法:

使用相同的scp cmd,因为您使用ssh密钥,即

scp -C -i <path_to opens sshkey> <'local file_path'> user@<ip_address_VM>: <'remote file_path’>

用于从本地传输文件到远程

但是不要提供正确的<path_to_opensshkey>,而是使用一些垃圾路径。由于错误的密钥路径,您将被要求输入密码,而不是你现在可以简单地通过密码来完成工作!