I am facing problem to create a session to a remote SFTP server by JSch:
The command i use to connect the sftp server through shell is:
sftp -o BindAddress=SOME_IP_ADDRRESS myUserName@HOST_IP_ADDR
and its working fine, but when I am trying with Java (JSch) then I am getting a timeout exception. The Java code is
/* KEY_FILE_NAME = is a file with rsa public key */
ClassLoader classLoader = getClass().getClassLoader();
File file = new File(classLoader.getResource(KEY_FILE_NAME).getFile());
JSch jsch = new JSch();
jsch.addIdentity(file.getAbsolutePath());
Properties hash = new Properties();
hash.put("StrictHostKeyChecking", "no");
logger.debug("SSh Server Host name >>" + SSH_SERVER_HOST_NAME + " || User Name >>" + SSH_SERVER_USER_NAME);
session = jsch.getSession(SSH_SERVER_USER_NAME, SSH_SERVER_HOST_NAME);
UserInfo ui = new MyUserInfo();
session.setUserInfo(ui);
session.setConfig(hash);
session.setPort(22);
session.setTimeout(45000);
session.connect();
The exception I am getting is :
com.jcraft.jsch.JSchException: timeout: socket is not established
I guess its coming as I am not setting the BindAddress
with -o
option which I am using while I am using the shell command. If that is the case then how to set the -o BindAddress
parameter in JSch? Or am I doing something wrong, please suggest.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…