我正在尝试使用Net :: SSH :: Any Perl模块通过SSH从Windows服务器连接到Linux主机,但获得以下错误。
代码
use Net::SSH::Any;
my $ssh = Net::SSH::Any->new('xx.xxx.xxx.xx', user => 'xxx', password => 'xxxx');
my @out = $ssh->capture('ls');
print @out;
输出:
C:\Users\spectrum\Desktop>perl SSH_Any.pl
PTYs are not supported on Windows at SSH_Any.pl line 5.
有人可以帮忙吗。