| Constructor and Description |
|---|
Ssh2Client()
Default constructor called by SshConnector.
|
| Modifier and Type | Method and Description |
|---|---|
void |
addChannelFactory(ChannelFactory factory)
Installs a custom channel factory so that the client may respond to
channel open requests.
|
void |
addRequestHandler(GlobalRequestHandler handler)
Installs a global request handler so that the client may respond to
global requests.
|
int |
authenticate(SshAuthentication auth)
Authenticate the user.
|
boolean |
cancelRemoteForwarding(String bindAddress,
int bindPort)
Cancel a forwarding request.
|
void |
connect(SshTransport io,
SshContext context,
SshConnector connector,
String username,
String localIdentification,
String remoteIdentification,
boolean buffered)
Connect to an SSH server.
|
void |
disconnect()
Disconnect from the remote computer.
|
SshClient |
duplicate()
Create an identical version of an SshClient using cached authentication
information and the SshTransport duplicate method.
|
void |
exit() |
void |
forceKeyExchange()
The SSH transport protocol exchanges keys at the beginning of the
session; the specification recommends that these keys be re-exchanged
after each gigabyte of transmitted data or after each hour of connection
time, whichever comes sooner.
|
String[] |
getAuthenticationMethods(String username)
Get a list of authentication methods for the user.
|
int |
getChannelCount()
Get the number of active channels.
|
String |
getCipherInUseCS()
Get the cipher algorithm used to encrypt data sent to the server.
|
String |
getCipherInUseSC()
Get the cipher algorithm used to decrypt data received from the server.
|
String |
getCompressionInUseCS()
Get the compression algorithm used to compress the clients outgoing data.
|
String |
getCompressionInUseSC()
Get the compression algorithm used to decompress the servers data.
|
SshContext |
getContext()
Get the context that created this client.
|
String |
getHostKeyInUse()
Returns the host key algorithm used in the last key exchange.
|
SshKeyExchangeClient |
getKeyExchangeInstanceInUse() |
String |
getKeyExchangeInUse()
Returns the key exchange algorithm last used.
|
String |
getMacInUseCS()
Get the MAC algorithm used to verify data sent by the client.
|
String |
getMacInUseSC()
Get the MAC algorithm used to verify data sent by the server.
|
String |
getRemoteIdentification()
Returns the identification string supplied by the server during protocol
negotiation.
|
String |
getUsername()
Return the username used for this connection
|
int |
getVersion()
Returns the version for this client.
|
boolean |
isAuthenticated()
Evaluate whether the user has been authenticated.
|
boolean |
isBuffered()
Identifies whether this client is in buffered mode
|
boolean |
isConnected()
Evaluate whether the connection is still alive.
|
void |
openChannel(Ssh2Channel channel,
byte[] requestdata)
Additional method to open a custom SSH2 channel.
|
void |
openChannel(SshAbstractChannel channel)
Additional method to open a custom SSH2 channel.
|
SshTunnel |
openForwardingChannel(String hostname,
int port,
String listeningAddress,
int listeningPort,
String originatingHost,
int originatingPort,
SshTransport transport,
ChannelEventListener listener)
Open a TCPIP forwarding channel to the remote computer.
|
SshClient |
openRemoteClient(String hostname,
int port,
String username)
Open up an SSH client from the remote machine to another remote server.
|
SshClient |
openRemoteClient(String hostname,
int port,
String username,
SshConnector con)
Open up an SSH client from the remote machine to another remote server.
|
SshSession |
openSessionChannel()
Open a session on the remote computer.
|
SshSession |
openSessionChannel(ChannelEventListener listener)
Open a session on the remote computer.
|
SshSession |
openSessionChannel(ChannelEventListener listener,
long timeout) |
Ssh2Session |
openSessionChannel(int windowspace,
int packetsize,
ChannelEventListener listener)
Additional method to open a session with SSH2 specific features.
|
Ssh2Session |
openSessionChannel(int windowspace,
int packetsize,
ChannelEventListener listener,
long timeout) |
SshSession |
openSessionChannel(long timeout) |
boolean |
requestRemoteForwarding(String bindAddress,
int bindPort,
String hostToConnect,
int portToConnect,
ForwardingRequestListener listener)
Requests that the remote computer accepts socket connections and forward
them to the local computer.
|
boolean |
sendGlobalRequest(GlobalRequest request,
boolean wantreply)
Sends a global request to the remote side.
|
String |
toString() |
public Ssh2Client()
public void connect(SshTransport io, SshContext context, SshConnector connector, String username, String localIdentification, String remoteIdentification, boolean buffered) throws SshException
SshClientconnect in interface SshClientio - the transport layercontext - an SSH contextusername - the users namelocalIdentification - the local identification stringremoteIdentification - the remotes identification stringbuffered - should the connection be buffered (threaded)SshExceptionpublic String[] getAuthenticationMethods(String username) throws SshException
username - the name of the userSshExceptionpublic int authenticate(SshAuthentication auth) throws SshException
SshClientAuthenticate the user. Once connected call to authenticate the user. When a connection is made no other operations can be performed until the user has been authenticated.
authenticate in interface SshClientauth - the authentication mechanism.SshExceptionpublic boolean isAuthenticated()
SshClienttrue
immediatley after connection. No other operations can be perform until
the user has been authenticated.isAuthenticated in interface SshClienttrue if the connection is authenticated, otherwise
falsepublic void disconnect()
SshClientdisconnect in interface SshClientpublic boolean isConnected()
SshClientisConnected in interface SshClienttrue if connected, otherwise falsepublic void forceKeyExchange()
throws SshException
SshExceptionpublic SshSession openSessionChannel() throws SshException, ChannelOpenException
SshClientOpen a session on the remote computer. This can only be called once the user has been authenticated. The session returned is uninitialized and will be opened when either a command is executed or the users shell has been started.
openSessionChannel in interface SshClientSshExceptionChannelOpenExceptionpublic SshSession openSessionChannel(long timeout) throws SshException, ChannelOpenException
SshExceptionChannelOpenExceptionpublic SshSession openSessionChannel(ChannelEventListener listener, long timeout) throws SshException, ChannelOpenException
SshExceptionChannelOpenExceptionpublic SshSession openSessionChannel(ChannelEventListener listener) throws SshException, ChannelOpenException
SshClientOpen a session on the remote computer. This can only be called once the user has been authenticated. The session returned is uninitialized and will be opened when either a command is executed or the users shell has been started.
openSessionChannel in interface SshClientlistener - an event listener to add before openingSshExceptionChannelOpenExceptionpublic Ssh2Session openSessionChannel(int windowspace, int packetsize, ChannelEventListener listener) throws ChannelOpenException, SshException
windowspace - the initial amount of window space availablepacketsize - the maximum packet sizelistener - an event listener to add before openingSshExceptionChannelOpenExceptionpublic Ssh2Session openSessionChannel(int windowspace, int packetsize, ChannelEventListener listener, long timeout) throws ChannelOpenException, SshException
ChannelOpenExceptionSshExceptionpublic SshClient openRemoteClient(String hostname, int port, String username, SshConnector con) throws SshException, ChannelOpenException
SshClientSshClient instance to any other machine on the same
network.openRemoteClient in interface SshClienthostname - the name of the remote hostport - the port of the remote hostusername - the name of the user on the remote hostcon - an SshConnector instance that will be used to connect
the client. This does not have to be the same instance that
created this client.SshExceptionChannelOpenExceptionpublic SshClient openRemoteClient(String hostname, int port, String username) throws SshException, ChannelOpenException
SshClientSshClient instance to any other machine on the same
network.openRemoteClient in interface SshClienthostname - the name of the remote hostport - the port of the remote hostusername - the name of the user on the remote hostSshExceptionChannelOpenExceptionpublic SshTunnel openForwardingChannel(String hostname, int port, String listeningAddress, int listeningPort, String originatingHost, int originatingPort, SshTransport transport, ChannelEventListener listener) throws SshException, ChannelOpenException
SshClientOpen a TCPIP forwarding channel to the remote computer. If successful the remote computer will open a socket to the host/port specified and return a channel which can be used to forward TCPIP data from the local computer to the remotley connected socket.
It should be noted that this is a low level API method and it does not connect the transport to the channel as this would require some threading. The transport is passed here so that it can be attached to the SshTunnel that is returned. If you want to have the API automatically connect the channel to the transport you should use the ForwardingClient which provides management of forwarding connections and threads.
openForwardingChannel in interface SshClienthostname - the host to connect toport - the port to connect tooriginatingHost - the originating host (informational only)originatingPort - the originating port (informational only)listener - an event listener that will be added to the channel before
opening.SshExceptionChannelOpenExceptionpublic boolean requestRemoteForwarding(String bindAddress, int bindPort, String hostToConnect, int portToConnect, ForwardingRequestListener listener) throws SshException
SshClientrequestRemoteForwarding in interface SshClientbindAddress - the address that the remote computer should listen onbindPort - the port that the remote computer should listen onhostToConnect - the host to connect when a connection is establishedportToConnect - the port to connect when a connection is establishedlistener - a callback interfaceSshExceptionpublic boolean cancelRemoteForwarding(String bindAddress, int bindPort) throws SshException
SshClientcancelRemoteForwarding in interface SshClientbindAddress - the address that the remote computer is listening on.bindPort - the port that the remote computer is listening on.SshExceptionpublic void openChannel(Ssh2Channel channel, byte[] requestdata) throws SshException, ChannelOpenException
channel - the channel to openrequestdata - the request dataSshExceptionChannelOpenExceptionpublic void openChannel(SshAbstractChannel channel) throws SshException, ChannelOpenException
channel - the channel to openSshExceptionChannelOpenExceptionpublic void addChannelFactory(ChannelFactory factory) throws SshException
factory - the channel factorySshExceptionpublic SshContext getContext()
SshClientgetContext in interface SshClientpublic void addRequestHandler(GlobalRequestHandler handler) throws SshException
handler - the global request handlerSshExceptionpublic boolean sendGlobalRequest(GlobalRequest request, boolean wantreply) throws SshException
request - the global requestwantreply - specifies whether the remote side should send a
success/failure messagetrue if the request succeeded and wantreply=true,
otherwise falseSshExceptionpublic String getRemoteIdentification()
SshClientgetRemoteIdentification in interface SshClientpublic String getUsername()
SshClientgetUsername in interface SshClientpublic SshClient duplicate() throws SshException
SshClientduplicate in interface SshClientSshExceptionpublic int getChannelCount()
SshClientgetChannelCount in interface SshClientpublic int getVersion()
SshClientgetVersion in interface SshClientpublic boolean isBuffered()
SshClientisBuffered in interface SshClientpublic String getKeyExchangeInUse()
public SshKeyExchangeClient getKeyExchangeInstanceInUse()
public String getHostKeyInUse()
public String getCipherInUseCS()
public String getCipherInUseSC()
public String getMacInUseCS()
public String getMacInUseSC()
public String getCompressionInUseCS()
public String getCompressionInUseSC()
Copyright © 2016. All rights reserved.