class SSHCommandClientEndpoint: (source)
Implements interfaces: twisted.internet.interfaces.IStreamClientEndpoint
SSHCommandClientEndpoint
exposes the command-executing functionality of SSH servers.
SSHCommandClientEndpoint
can set up a new SSH connection, authenticate it in any one of a number of different ways (keys, passwords, agents), launch a command over that connection and then associate its input and output with a protocol.
It can also re-use an existing, already-authenticated SSH connection (perhaps one which already has some SSH channels being used for other purposes). In this case it creates a new SSH channel to use to execute the command. Notably this means it supports multiplexing several different command invocations over a single SSH connection.
Class Method | existingConnection |
No summary |
Class Method | newConnection |
No summary |
Method | __init__ |
No summary |
Method | connect |
Set up an SSH connection, use a channel from that connection to launch a command, and hook the stdin and stdout of that command up as a transport for a protocol created by the given factory. |
Method | _executeCommand |
Given a secured SSH connection, try to execute a command in a new channel created on it and associate the result with a protocol from the given factory. |
Instance Variable | _command |
Undocumented |
Instance Variable | _creator |
Undocumented |
Parameters | |
connection:SSHConnection | An existing connection to an SSH server. |
command:bytes | See SSHCommandClientEndpoint.newConnection 's command parameter. |
Returns | |
A new instance of cls (probably SSHCommandClientEndpoint ). |
Deferred
is cancelled.Parameters | |
reactor:IReactorTCP provider | The reactor to use to establish the connection. |
command | See __init__ 's command argument. |
username:bytes | The username with which to authenticate to the SSH server. |
hostname:bytes | The hostname of the SSH server. |
port:int | The port number of the SSH server. By default, the standard SSH port number is used. |
keys:list of Key | Private keys with which to authenticate to the SSH server, if key authentication is to be attempted (otherwise None ). |
password:bytes or None | The password with which to authenticate to the SSH server, if password authentication is to be attempted (otherwise None ). |
agentEndpoint:IStreamClientEndpoint provider | An IStreamClientEndpoint provider which may be used to connect to an SSH agent, if one is to be used to help with authentication. |
knownHosts:KnownHostsFile | The currently known host keys, used to check the host key presented by the server we actually connect to. |
ui:None or ConsoleUI | An object for interacting with users to make decisions about whether to accept the server host keys. If None , a ConsoleUI connected to /dev/tty will be used; if /dev/tty is unavailable, an object which answers b"no" to all prompts will be used. |
Returns | |
A new instance of cls (probably SSHCommandClientEndpoint ). |
Parameters | |
creator:_ISSHConnectionCreator provider | An _ISSHConnectionCreator provider which will be used to set up the SSH connection which will be used to run a command. |
command:bytes | The command line to execute on the SSH server. This byte string is interpreted by a shell on the SSH server, so it may have a value like "ls /". Take care when trying to run a command like "/Volumes/My Stuff/a-program" - spaces (and other special bytes) may require escaping. |
Parameters | |
protocolFactory | A Factory to use to create the protocol which will be connected to the stdin and stdout of the command on the SSH server. |
Returns | |
A Deferred which will fire with an error if the connection cannot be set up for any reason or with the protocol instance created by protocolFactory once it has been connected to the command. |
Parameters | |
connection | See SSHCommandClientEndpoint.existingConnection 's connection parameter. |
protocolFactory | See SSHCommandClientEndpoint.connect 's protocolFactory parameter. |
Returns | |
See SSHCommandClientEndpoint.connect 's return value. |