hi, i'm the beginner in perl,
here is my script:
#############################################
#!/usr/bin/perl
use Net::SSH::Perl;
$host = "host.dom";
$user = "user";
$passwd = "passwd";
my $ssh = Net::SSH::Perl->new($host);
$ssh->login($user, $passwd);
$ssh->cmd("who");
#############################################
when i execute, i get error message:
"Undefined subroutine
&Net::SSH::Perl::Util::SSH1Misc::_crc32 called at
/usr/lib/perl5/site_perl/5.8.0/Net/SSH/Perl/Packet.pm
line 127, <GEN0> line 1."
and i'm sure i've already compiled the net::ssh::perl
correctly(support ssh-1 & ssh-2 protocol). also the
server supports ssh-1 & ssh-2 protocol.
can anybody explain the error message and tell me how
to solve the problem above?
thx
__________________________________
Do you Yahoo!?
Yahoo! Calendar - Free online calendar with sync to Outlook(TM).
http://calendar.yahoo.com
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]