我有一个适用于不同客户端的脚本,并且需要将 SCP 文件发送到不同的主机。根据客户端和服务器的组合,我可能需要使用密码身份验证或公钥身份验证。我无法真正提前知道该使用哪一个。
我使用了 2 个用于 SCP 的 CPAN 库:
- Net::SCP:仅适用于公钥认证
- Net::SCP::Expect:仅适用于密码验证
问题是这两个库都不适用于两种身份验证,而且我不知道提前使用哪一个。您知道使用这两种身份验证方案的任何方法吗?
尝试一个并故障转移到另一个:
#! /usr/bin/perl
use warnings;
use strict;
use Net::SCP qw/ scp /;
use Net::SCP::Expect;
my @hosts = qw/ host1 host2 host3 /;
my $user = "YOUR-USERNAME-HERE";
my $pass = "PASSWORD-GOES-HERE";
my $file = "file-to-copy";
foreach my $host (@hosts) {
my $dest = "$host:$file";
my $scp = Net::SCP->new($host, $user);
unless ($scp->scp($file => $dest)) {
my $scpe = Net::SCP::Expect->new;
$scpe->login($user, $pass);
local $@;
eval { $scpe->scp($file => $dest) };
next unless $@;
warn "$0: scp $file $dest failed:\n" .
"Public key auth:\n" .
" $scp->{errstr}\n" .
"Password auth:\n" .
" $@\n";
}
}
尝试 Net::OpenSSH