Unix and Linux Discussions Tagged with openssh |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
2,850 |
Shell Programming and Scripting |
|
|
|
5 |
12,210 |
UNIX and Linux Applications |
|
|
|
2 |
2,778 |
AIX |
|
|
|
2 |
14,264 |
IP Networking |
|
|
|
13 |
8,801 |
Shell Programming and Scripting |
|
|
|
4 |
8,962 |
UNIX for Advanced & Expert Users |
|
|
|
2 |
6,726 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
4,845 |
Solaris |
|
|
|
0 |
7,656 |
Windows & DOS: Issues & Discussions |
|
|
|
9 |
10,526 |
Windows & DOS: Issues & Discussions |
|
|
|
8 |
20,159 |
Red Hat |
|
|
|
0 |
1,337 |
Solaris BigAdmin RSS |
|
|
|
2 |
19,606 |
Windows & DOS: Issues & Discussions |
|
|
|
0 |
1,192 |
Security Advisories (RSS) |
|
|
|
1 |
4,483 |
Windows & DOS: Issues & Discussions |
|
|
|
0 |
1,107 |
Software Releases - RSS News |
|
|
|
0 |
1,052 |
Software Releases - RSS News |
|
|
|
0 |
1,254 |
Security Advisories (RSS) |
|
|
|
0 |
1,454 |
Security Advisories (RSS) |
|
|
|
0 |
1,021 |
Security Advisories (RSS) |
|
|
|
0 |
1,123 |
Security Advisories (RSS) |
|
|
|
0 |
1,336 |
Security Advisories (RSS) |
|
|
|
0 |
1,322 |
Software Releases - RSS News |
|
|
|
0 |
4,718 |
Cybersecurity |
|
|
|
10 |
17,286 |
Solaris |
|
|
|
1 |
3,768 |
AIX |
|
|
|
0 |
1,741 |
Security Advisories (RSS) |
|
|
|
0 |
1,489 |
Security Advisories (RSS) |
|
|
|
8 |
21,909 |
HP-UX |
|
|
|
2 |
6,439 |
Cybersecurity |
|
|
|
5 |
27,329 |
UNIX for Advanced & Expert Users |
|
|
|
4 |
5,109 |
UNIX for Advanced & Expert Users |
|
|
|
1 |
4,028 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
8,207 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
7,727 |
UNIX for Dummies Questions & Answers |
Net::CLI::Interact::Transport::SSH(3pm) User Contributed Perl Documentation Net::CLI::Interact::Transport::SSH(3pm)
NAME
Net::CLI::Interact::Transport::SSH - SSH based CLI connection
VERSION
version 1.121640
DECRIPTION
This module provides a wrapped instance of an SSH client for use by Net::CLI::Interact.
INTERFACE
app
On Windows platforms you must download the "plink.exe" program, and pass its location to the library in this parameter. On other platforms,
this defaults to "ssh" (openssh).
runtime_options
Based on the "connect_options" hash provided to Net::CLI::Interact on construction, selects and formats parameters to provide to "app" on
the command line. Supported attributes:
host (required)
Host name or IP address of the host to which the SSH application is to connect. Alternatively you can pass a value of the form
"user@host", but it's probably better to use the separate "username" parameter instead.
username
Optionally pass in the username for the SSH connection, otherwise the SSH client defaults to the current user's username. When using
this option, you should obviously only pass the host name to "host".
ignore_host_checks
Under normal interactive use "openssh" tracks the identity of connected hosts and verifies these identities upon each connection. In
automation this behaviour can be irritating because it is interactive.
This option, enabled by default, causes "openssh" to skip or ignore this host identity verification. This means the default setting is
less secure, but also less likely to trip you up. It is equivalent to the following:
StrictHostKeyChecking=no
UserKnownHostsFile=/dev/null
CheckHostIP=no
Pass a false value to this option to disable the above and return "openssh" to its default configured settings.
opts
If you want to pass any other options to openssh on its command line, then use this option, which should be an array reference. Each
item in the list will be passed to "openssh", separated by a single space character. For example:
$s->new({
# ...other parameters to new()...
connect_options => {
opts => [
'-p', '222', # connect to non-standard port on remote host
'-o', 'CheckHostIP=no', # don't check host IP in known_hosts file
],
},
});
reap
Only used on Unix platforms, this installs a signal handler which attempts to reap the "ssh" child process. Pass a true value to enable
this feature only if you notice zombie processes are being left behind after use.
COMPOSITION
See the following for further interface details:
o Net::CLI::Interact::Transport
AUTHOR
Oliver Gorwits <oliver@cpan.org>
COPYRIGHT AND LICENSE
This software is copyright (c) 2012 by Oliver Gorwits.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
perl v5.14.2 2012-06-12 Net::CLI::Interact::Transport::SSH(3pm)