Net::SSH - Perl extension for secure shell |
Net::SSH - Perl extension for secure shell
use Net::SSH qw(ssh issh sshopen2 sshopen3);
ssh('user@hostname', $command);
issh('user@hostname', $command);
ssh_cmd('user@hostname', $command); ssh_cmd( { user => 'user', host => 'host.name', command => 'command', args => [ '-arg1', '-arg2' ], stdin_string => "string\n", } );
sshopen2('user@hostname', $reader, $writer, $command);
sshopen3('user@hostname', $writer, $reader, $error, $command);
Simple wrappers around ssh commands.
For an all-perl implementation that does not require the system ssh command, see the Net::SSH::Perl manpage instead.
If using the hashref-style of passing arguments, possible keys are:
user (optional) host (requried) command (required) args (optional, arrayref) stdin_string (optional) - written to the command's STDIN
use Net::SSH qw(sshopen2); use strict;
my $user = "username"; my $host = "hostname"; my $cmd = "command";
sshopen2("$user\@$host", *READER, *WRITER, "$cmd") || die "ssh: $!";
while (<READER>) { chomp(); print "$_\n"; }
close(READER); close(WRITER);
Q: How do you supply a password to connect with ssh within a perl script using the Net::SSH module?
A: You don't. Use RSA or DSA keys. See the ssh-keygen(1) manpage.
Q: My script is ``leaking'' ssh processes.
A: See How do I avoid zombies on a Unix system in the perlfaq8 manpage, the IPC::Open2 manpage, the IPC::Open3 manpage and waitpid in the perlfunc manpage.
Ivan Kohler <ivan-netssh_pod@420.am>
John Harrison <japh@in-ta.net> contributed an example for the documentation.
Martin Langhoff <martin@cwa.co.nz> contributed the ssh_cmd command, and Jeff Finucane <jeff@cmh.net> updated it and took care of the 0.04 release.
Anthony Awtrey <tony@awtrey.com> contributed a fix for those still using OpenSSH v1.
Copyright (c) 2004 Ivan Kohler. Copyright (c) 2002 Freeside Internet Services, LLC All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Not OO.
Look at IPC::Session (also fsh)
For an all-perl implementation that does not require the system ssh command, see the Net::SSH::Perl manpage instead.
ssh-keygen(1), ssh(1), the IO::File manpage, the IPC::Open2 manpage, the IPC::Open3 manpage
Net::SSH - Perl extension for secure shell |