I am using JSch to transfer a file to a remote server. I have configured it to use sftp channel with user/password and StrictHostKeyChecking set to 'no'. Since I have open channel set to sftp, does JSch require sftp/ssh client to be installed on the client machine?
Asked
Active
Viewed 582 times
2
-
No. it implementation of SSH. – Kovacic Jun 15 '18 at 08:39
-
Obligatory warning: Do not set `StrictHostKeyChecking=no` - you are losing security by doing so. See [How to resolve Java UnknownHostKey, while using JSch SFTP library?](https://stackoverflow.com/q/32852906/850848) – Martin Prikryl Jun 15 '18 at 08:50