mina-sshd
mina-sshd copied to clipboard
Apache MINA sshd is a comprehensive Java library for client- and server-side SSH.
### Version 2.9.2 ### Bug description 1. channel.open(); // takes time , around 579 milli seconds 2. channel.waitFor(EnumSet.of(ClientChannelEvent.CLOSED), TimeUnit.SECONDS.toMillis(0)); // takes around 287 milli seconds. In our case for a...
### Version 2.10.0 ### Bug description In the previous `2.9.2` version the `RootedFileSystemProvider.resolveLocalPath()` returns a normalized resolved path: ``` Path resolved = root.resolve(subPath); resolved = resolved.normalize(); resolved = resolved.toAbsolutePath(); if...
Hello, I am trying to setup a SSH configuration with Jumphost. I am configuring my Jumphost userAuth in the Client . my jumphost can accept both password or private key...
### Description I have a special server running to which the connection is only possible via 2 jump hosts and my configuration for SSH looks like this: ``` bash Host...
### Description Hi, Currently all `KnownHostsServerKeyVerifier` constructors accept a `java.nio.file.Path` argument to the `known_hosts` file. I would like to request the addition of an additional constructor which accepts a `java.net.URL`...
### Description Implement `ChannelTimeouts` as available in OpenSSH since version 9.2: compare [OpenSSH issue 3484](https://bugzilla.mindrot.org/show_bug.cgi?id=3484) ### Motivation Currently, an Apache MINA sshd server keeps channels open as long as the...
### Description Hi, I see that Apache MINA 2.2.x rewrites the SSL/TLS layer to address some flaws that were hard to fix in 2.1.x. Apache Mina SSHD depends on Apache...
### Description in DefaultSftpClient, the method received test the maximum size of the packet just received with this : `if (length > (8 * SshConstants.SSH_REQUIRED_PAYLOAD_PACKET_LENGTH_SUPPORT)) { throw new StreamCorruptedException("Illogical sftp...
### Description Is there any tutorials about send some special functional keys using sshd? I did not found that. ### Motivation The special keys are normally useful on common ssh...
### Version 2.9.2 ### Bug description ```java //close if (channelShell != null) { channelShell.close(true); channelShell.getInvertedOut().close(); } ``` ```java try { ChannelShell channelShell = clientSession.createShellChannel(); OpenFuture open = channelShell.open(); if (open.await(3000,...