我正在尝试使用 Net::SSH::Perl 编写 perl 脚本
目前它非常简单,因为我只想通过 ssh 在目录中执行 ls。
#!/usr/bin/perl
use Net::SSH::Perl;
@KEYFILE = ("/user/.ssh/id_rsa");
$ssh = Net::SSH::Perl->new($host, debug=>1, identity_files=>\@KEYFILE)
my $host = "hostname";
my $user = "user";
#-- set up a new connection
my $ssh = Net::SSH::Perl->new($host, debug=>1, identity_files=>\@KEYFILE)
#-- authenticate
$ssh->login($user);
#-- execute the command
my($stdout, $stderr, $exit) = $ssh->cmd("ls -l /home/user/");
这可行,但唯一的问题是,我需要跳过堡垒服务器来运行命令。我将我的私钥转发到堡垒,但我坚持的一点是如何在 perl 中使用转发的密钥,而不是使用必须在服务器上的密钥。
这可能吗?
谢谢