- 论坛徽章:
- 0
|
use Net::SSH::Perl ;
$host = 'xxxxxx';
$user = 'abc';
$passwd = 'abc';
open LOG,">$host.log"; #记录执行日志
select LOG;
my $ssh = Net::SSH::Perl->new( $host ,debug =>1,protocol=>2 );
$ssh->login($user,$passwd );
$cmd = "screen-length 0 temporary\n";
$sh = "dis cur\n";
$tc = "quit\n";
($stdout, $stderr, $exit) = $ssh->cmd($cmd);
print $stdout;
=pod
($stdout, $stderr, $exit) = $ssh->cmd( $sh );
print $stdout;
($stdout, $stderr, $exit) = $ssh->cmd( $tc );
print $stdout;
=cut
close LOG;
select STDIN;
$ssh->close;
=========================执行结果
test: Service accepted: ssh-userauth.
test: Trying empty user-authentication request.
test: Authentication methods that can continue: publickey,keyboard-interactive,password.
test: Next method to try is publickey.
test: Next method to try is password.
test: Trying password authentication.
test: Login completed, opening dummy shell channel.
test: channel 0: new [client-session]
test: Requesting channel_open for channel 0.
test: channel 0: open confirm rwindow 131072 rmax 32768
test: Got channel open confirmation, requesting shell.
test: Requesting service shell on channel 0.
test: channel 1: new [client-session]
test: Requesting channel_open for channel 1.
test: Entering interactive session. 一直停到这儿不在执行后面的语句了 最后出错退出了
test: Entering interactive session.
Received disconnect message: The connection is closed by SSH server
at /usr/local/perl5.28/lib/site_perl/5.28.1/x86_64-linux/Net/SSH/Perl/SSH2.pm line 530.
请高手看看,程序需要什么修改?
|
|