cpan安装Net::SSH::Perl中遇到的一些问题
使用cpan安装net::ssh::perl:
cpan>install net::ssh::perl
期间遇到了一些问题,记录在此,以备后阅。
因为cpan对其它软件的依赖性,要求软件版本的不能过低,所以先升级一下这两个模块:
cpan>upgrade module::build
cpan>upgrade extutils::install
math::bigint报错:
math::bigint: couldn't load specified math lib(s), fallback to math::bigint::calc at /usr/lib/perl5/site_perl/5.8.8/crypt/dh.pm line 6
按照报错信息,把dh.pm这个文件的第六行做更改:
原为:use math::bigint lib => “gmp,pari”;
更为:use math::bigint try => “gmp,pari”;
在安装过程中,装到math::gmp模块时,报错而停止。 大概意思是缺少gmp.c文件,故现在系统下安装一个gmp库文件,和一个gmp库的开发包。
aptitude install libmath-gmp-perl
aptitude search libgmp3-dev
如前面安装math:gmp失败过,先把如下文件夹删掉后,再安装吧。
rm -fr /root/.cpan/build/math-gmp-2.06-*
基本语法
1. 一般语法
my $host = "192.168.14.222";
my $user = "root";
my $passwd = "123456";
my %params = (
protocal => '2,1',
debug => '1',
);
use net::ssh::perl;
my $ssh = net::ssh::perl->new($host[,%params]);
$ssh->login($user, $pass);
my($out, $err, $exit) = $ssh->cmd($cmd);
print "$out\n";
2. 根据提示信息,返回字符, 可实现交互式操作。
$ssh->register_handler("stdout",sub{
my($channel,$buffer) = @_;
my $str = $buffer->bytes;
if($str =~ /(.*)\[y\/n\/\?\]/i){
$channel->send_data("y\n")
}}
);
3. term::readkey模块 得到一个互动的伪终端
use term::readkey;
readmode('raw');
$ssh->shell;
readmode('restore');
解决连接远程主机慢的问题
网上说要安装三个东西:
yaml
math::bigint
math::bigint::gmp
之前已经安装完 yaml 和 math::bigint 了,在装完 math::bigint::gmp 后测试,在与远程主机的连接过程中,速度明显提升(连接到远程主机后操作时间不变)。
实例
实例1: 登录一台远程主机,完成简单操作。
use strict;
use warnings;
use net::ssh::perl;
my $host = "192.168.14.222";
my $user = "root";
my $passwd = "123456";
my %params = (
protocal => '2,1',
debug => '1',
);
my $ssh = net::ssh::perl->new($host,%params);
$ssh->login($user,$passwd);
my ($out,$err,$exit) = $ssh->cmd("ifconfig");
print "$out\n";
$ssh->cmd("mkdir /home/user;touch /home/user/{1..10}.log");
实例2:通过一个远程主机列表,登录n台远程主机,完成可提问式的互动操作。
远程主机列表文件remoto_host_list.txt文件:
192.168.14.222 root 123456
192.168.14.223 root 123456
程序:
use strict;
use warnings;
use net::ssh::perl;
open host_list, "remote_host_list.txt" or die "can`t open this file\n";
sub myssh{
my ($host,$user,$passwd) = split;
my %params = (
protocal => '2,1',
# debug => '1',
);
my $ssh = net::ssh::perl->new($host,%params);
$ssh->login($user,$passwd);
$ssh->register_handler("stdout",sub{
my($channel,$buffer) = @_;
my $str = $buffer->bytes;
if($str =~ /(.*)\[y\/n\/\?\]/i){
$channel->send_data("y\n")
}}
);
$ssh->cmd("aptitude install ppp");
print "\n** $host complete...\n\n";
};
while(<host_list>){
myssh
}
说明:
根据给出的远程主机列表文件,来逐一完成安装ppp的操作,在实际的安装过程中,会出现询问,是否安装一些依赖包,如安装按y,否则按n
情景如下:
do you want to continue? [y/n/?]
用"register_handler",可实现交互式的自动安装。
上一篇: Perl 字符串处理备忘录