All Questions
6 questions
0
votes
0
answers
53
views
Apache Mina SFTP server only returning 8192 bytes on download
We have a mock SFTP server that creates and serves files in a local file system. It was originally written using the jcraft sftp library, then was converted over to Apache Mina with the release of ...
1
vote
0
answers
357
views
How can I send message error and error status to Sftp client (sshd-core, Mina server)
I'm using sshd-core to create a Sftp server. However, I would like to customize failure message when authenticate like authentication fail, Access Denied,..
I tried to write my message to IoSession ((...
1
vote
1
answer
914
views
Is it possible to get IP address of SSH/SFTP client via Apache Mina SSHD ServerSession?
I create SFTP server using Apache Mina SSHD. I want to find out the client IP when they connect to my server (via FileZilla, WinSCP). However, while I tried to found it in ServerSession, I could not.
...
1
vote
0
answers
3k
views
org.apache.sshd.common.SshException: Channel has been closed
I'm trying to send in-memory data as a file to remote server by using org.apache.sshd.client.
My code so far:
// Connect to remote server code
sftp = session.createSftpClient();
StringBuilder sb = ...
4
votes
0
answers
2k
views
Apache Mina SSHD SFTP server fails to list some directories on Android
Using Apache Mina SSHD I've implemented an SSH and SFTP server in an Android app I'm working on, and I can log in through SSH fine, ls the root directory, cd to 'mnt/sdcard' and ls - all of this is ...