Re: Net::SSH::Perl extremely slow?
- From: Radomir Hejl <rahed@xxxxxxxxxxx>
- Date: Fri, 15 Jul 2005 21:11:13 +0200
"Yon" <yonyohnson@xxxxxxxxxxx> writes:
> I have a simple perl script that connects to a remote machine and
> executes a command. Net::SSH::Perl seems etremely slow, but I've tried
> it on 2 machines (Suse 9.3 and Suse 9.2). They aren't the fastest
> machine, but both are over 2GHz so I thought I'd be ok. Both have 1 Gig
> of RAM. I've tested over the network and against the loopback
> interface.
>
> here's the code. It ends up executing completely, it just takes 20-30
> seconds.
>
> Does this seem unusually long to anyone?
>
> <trim>
> $ssh = Net::SSH::Perl->new("192.168.1.69",debug=>1,protocol=>2,options
> =>[ "UserKnownHostsFile /var/lib/wwwrun/.ssh/ssh_known_hosts",
> "IdentityFile /var/lib/wwwrun/.ssh/id_dsa" ] );
> $ssh->login("webrun");
> #
> ($out, $err, $exit)=print $ssh->cmd("ls -la");
> <trim>
>
> tia, y
Try to supply passwd and port like this:
$ssh = Net::SSH::Perl->new("192.168.1.69", port=>22);
$ssh -> login('webrun','passwd');
My time is around 5 seconds.
HTH, Radek
.
- References:
- Net::SSH::Perl extremely slow?
- From: Yon
- Net::SSH::Perl extremely slow?
- Prev by Date: Can't locate loadable object for module Tk::Event
- Next by Date: stepping out
- Previous by thread: Net::SSH::Perl extremely slow?
- Next by thread: Thanks
- Index(es):
Relevant Pages
|