I am receiving "INFO: The remote computer disconnected: Protocol error: packet too long: 65580" error, when I trying to execute:
sUpload("server.host.com", "username", "/home/localuser/.ssh/id_rsa", "filename", "");
The file does not get transferred to SFTP server (only zero-byte gets created on the other side). When SFTPing manually via Unix shell, everything is working fine. I read online that it may be a problem with BLOCK_SIZE in SftpClient, but first I could not find a setter method to alter the size and second, it appears that default value is 65535 anyway, which totally does not explain the 65580 value from the error message.
Any ideas?
I have the following utility method that uses Java Ssh Tools (j2ssh-core-0.2.9.jar):
private static void sUpload(String ftpServer, String user, String password,
String localFile, String remoteFile) throws IOException {
String methodName = "sUpload: ";
System.out.println(" START ftpServer="+ftpServer+" user="+user+" password="+password);
int result = 0;
System.out.println("ftpServer " + ftpServer);
System.out.println("user " + user);
System.out.println("password " + password);
System.out.println("localFile " + localFile);
System.out.println("remoteFile " + remoteFile);
SshClient ssh = new SshClient();
ssh.connect(ftpServer);
System.out.println("Server Connected ");
if (password.contains("\\") || password.contains("/")) {
PublicKeyAuthenticationClient pk =
new PublicKeyAuthenticationClient();
pk.setUsername(user);
// Open up the private key file
SshPrivateKeyFile file = SshPrivateKeyFile
.parse(new File(password));
SshPrivateKey key = file.toPrivateKey(null);
pk.setKeyfile(password);
pk.setKey(key);
// Try the authentication
result = ssh.authenticate(pk);
} else {
// Create a password authentication instance
PasswordAuthenticationClient pwd =
new PasswordAuthenticationClient();
// Get the users name
pwd.setUsername(user);
// Get the password
pwd.setPassword(password);
// Try the authentication
result = ssh.authenticate(pwd);
}
System.out.println("Result fromssh.authenticate(pwd) " + result);
// Evaluate the result
if (result == AuthenticationProtocolState.COMPLETE) {
// The connection is authenticated we can now do some real work!
SftpClient sftp = ssh.openSftpClient();
System.out.println("openSftpClient");
// Upload a file
if(remoteFile != null && remoteFile.trim().length() > 0){
sftp.put(localFile, remoteFile);
System.out.println("======== no remote ======================================== file transfer success =======================================================================");
}
else {
System.out.println("================================================ file transfer starting =======================================================================");
sftp.put(localFile);
System.out.println("================================================ file transfer success =======================================================================");
}
// Quit
sftp.quit();
ssh.disconnect();
}
System.out.println(" END ");
}