Я получаю сообщение "INFO: удаленный компьютер отключен: ошибка протокола: слишком длинный пакет: 65580" ошибка при попытке выполнить:
sUpload("server.host.com", "username", "/home/localuser/.ssh/id_rsa", "filename", "");
Файл не передается на SFTP-сервер (с другой стороны создается только нулевой байт). Когда SFTPing вручную через оболочку Unix, все работает нормально. Я читал в Интернете, что это может быть проблема с BLOCK_SIZE в SftpClient, но сначала я не смог найти метод установки для изменения размера, а во-вторых, похоже, что значение по умолчанию равно 65535, что полностью не объясняет значение 65580 из ошибки сообщение.
Есть идеи?
У меня есть следующий служебный метод, который использует 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 ");
}