Top "Sftp" questions

GENERAL SFTP SUPPORT IS OFF-TOPIC.

Setup SFTP to use public-key authentication

How do you setup server to server SFTP to use public-key authentication instead of user account and password?

linux unix authentication sftp public-key
FTP server using S3 as storage

I am trying to create a ftp server ( using windows/linux/mac - no concern) which would have its storage …

amazon-web-services ftp amazon-s3 sftp ftp-server
SFTP Upload Download Exist and Move using Apache Commons VFS

I need a pure Apache Commons VFS solution/code/example for Uploading a local file to Remote Host Location Check …

java upload download sftp apache-commons-vfs
Use JSch to put a file to the remote directory and if the directory does not exist, then create it

I would like to copy a file to the remote directory using Jsch library and SFTP protocol. If the directory …

java sftp jsch
Error: Connection timed out after 20 seconds of inactivity?

Error: Connection timed out after 20 seconds of inactivity? Error: File transfer failed after transferring 6,094,848 bytes in 190 second

sftp filezilla
How can i upload file by command line via sftp?

I know how to get remote file via sftp. ex: sftp [email protected]:/path/to/file.txt localfile.txt How can …

linux bash file-upload command-line sftp
Are there any good free .Net network libraries? (FTP, SFTP, SSH, etc.)

I'm a bit surprised I haven't found a good open source library for performing common network tasks. There are a …

.net open-source ftp ssh sftp
lftp with key + passphrase

I'm using lftp to send files to an SFTP server, but I don't how to connect with key and passphrase. …

linux key sftp passphrase lftp
Python Pysftp Error

My code: import pysftp s = pysftp.Connection(host='test.rebex.net', username='demo', password='password') data = s.listdir() s.close() …

python sftp pysftp
Upload file via sftp with python

I wrote a simple code to upload a file to a sftp server in python. I am using python 2.7 import …

python python-2.7 sftp pysftp