Perl實現ssh自動登入

來源:互聯網
上載者:User

一,基於單純的密碼驗證的情況:
1.安裝Net::SSH::Perl模組,安裝方法參照Perl模組安裝。
2.自動登入例子,我要用testuser使用者登陸到伺服器192.168.0.100執行df命令:

#!/usr/bin/perl -wuse strict;use Net::SSH::Perl;my $host = '192.168.0.196';my $user = 'root';my $password = 'pass';my $ssh = Net::SSH::Perl->new($host);$ssh->login($user,$password);my ($stdout,$stderr,$exit) = $ssh->cmd("df -h");$ssh->cmd("exit");if($stderr){    print "ErrorCode:$exit\n";    print "ErrorMsg:$stderr";    } else{    print $stdout;    }exit $exit;

 

二,基於帶密碼(passphrase)的公開金鑰金鑰組認證的情況:
1.安裝Net::OpenSSH模組,安裝方法參照Perl模組安裝,其實這個模組比上面那個模組更強大,密碼登入的也可以用這個模組。
2.代碼例子,還是用testuser使用者登陸到伺服器192.168.0.100執行df命令: 
#!/usr/bin/perl -wuse strict; use Net::OpenSSH;my $host = '192.168.0.100';my $user = 'testuser';my $passphrase = '123123';my $key = '/home/testuser/.ssh/id_rsa';my %param = (             user => $user,             passphrase => $passphrase,             key_path => $key,             timeout => 10             );my $ssh = Net::OpenSSH->new($host,%param);my ($stdout,$stderr) = $ssh->capture2("df -h");if($stdout){    print $stdout;    } else {    print $ssh->error;    $stderr and print $stderr;    }

 

用cpan Net::SSH::Perl 安裝模組並提示成功後,運行指令碼出現了“Can't locate Math/Pari.pm in @INC“的錯誤。

運行安裝 perl -MCPAN -e 'install Math::Pari' 後解決

參考:http://www.cnblogs.com/morya/archive/2011/08/09/2132822.html

 

 N天后,發現Net::SSH::Perl奇慢無比,改用SCP模組了。。。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.