The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

pssh - Perl secure shell client

SYNOPSIS

pssh hostname [command]

pssh [-c idea|blowfish|des|3des] [-i identity_file] [-l login_name] [-V] [-o option] [-p port] [-t] [-v] [-C] hostname [command]

DESCRIPTION

pssh is a Perl version of the ssh command line client, based upon the Net::SSH::Perl library. It is a program for logging into a remote machine and for executing commands in a remote machine.

Given both hostname and command, executes command on the host hostname and prints out the result of that command's execution.

Given only hostname, opens a secure connection to hostname and starts up a shell on the remote machine.

This behavior should be pretty much identical to that of the standard ssh command line client. Of course pssh is missing some of the options in ssh, simply because Net::SSH::Perl doesn't support those options.

Please see the Net::SSH::Perl docs for more information.

OPTIONS

-c idea|des|3des|blowfish

Selects the cipher to use for session encryption. idea is the default, unless it's not supported by the server, in which case 3des is used.

-i identity_file

Specifies the file(s) from which the private key identity is to be read for RSA authentication. The default is $ENV{HOME}/.ssh/identity. You can use multiple -i options.

-l login_name

Specifies the user to log in as on the remote machine.

-o 'option'

Can be used to give additional options in the config file format, eg. "BatchMode yes".

-p port

Port to connect to on the remote host.

-t

Force pseudo-tty allocation. You generally won't need to use this, because if you request a shell opened up by Net::SSH::Perl, this will automatically be set.

Analogous to the use_pty option to Net::SSH::Perl.

-v

Verbose mode, in which pssh (ie. Net::SSH::Perl) prints out debugging messages about its progress. These can be quite helpful in debugging connection, authentication, and configuration issues.

-V

Print only Net::SSH::Perl version number and exit.

AUTHOR & COPYRIGHTS

Please see the Net::SSH::Perl manpage for author, copyright, and license information.