Questions tagged [sftp]

GENERAL SFTP SUPPORT IS OFF-TOPIC. Support questions may be asked on https://superuser.com. SSH File Transfer Protocol, a network protocol designed to provide secure file transfer and manipulation facilities over SSH (Secure Shell protocol).

The SSH File Transfer Protocol (also Secret File Transfer Protocol, Secure FTP, or SFTP) is a network protocol that provides file access, file transfer, and file management functionality over any reliable data stream. It was designed by the Internet Engineering Task Force (IETF) as an extension of the Secure Shell protocol (SSH) version 2.0 to provide secure file transfer capability, but is also intended to be usable with other protocols. The IETF of the Internet Draft states that even though this protocol is described in the context of the SSH-2 protocol, it could be used in a number of different applications, such as secure file transfer over Transport Layer Security (TLS) and transfer of management information in VPN applications.

This protocol assumes that it is run over a secure channel, such as SSH, that the server has already authenticated the client, and that the identity of the client user is available to the protocol.

This should not be confused with FTPS. For questions regarding FTPS, see the corresponding tag .

5135 questions
2
votes
1 answer

How to Choose Secure Transfer Protocol

I am helping design an application that would need to transfer and store files securely on a server. The application is to be written in C#, but the server is Linux based. What protocol should I use for transferring and storing these files, up to 2…
Sakamoto Kazuma
  • 2,573
  • 7
  • 34
  • 75
2
votes
2 answers

PHPSecLib Password protected RSA and user authentication

I'm trying to connect to a SSH2 server through SFTP in PHP using PHPSecLib. But my problem is that, the server requires a key file that is password protected but also username and password. It seems like that it's only possible to provide either…
Emil Moe
  • 389
  • 5
  • 18
2
votes
2 answers

Coldfusion secure cfftp times out

I am using Coldfusion 9. I have verified that the sFTP host is valid and I can connect using "CyberDuck". The port is not the standard 21 (ftp) or 22 (ssh)
Brian
  • 161
  • 1
  • 13
2
votes
1 answer

Scripting SFTP unattended download

I am trying to connect to an SFTP server via software called WinSCP which is a Secure FTP client, I can script it to work by sending keys and doing it in a psuedo unattended mode, but the Server has to have a user logged in to send the keys, I need…
ScottC
  • 452
  • 8
  • 25
2
votes
2 answers

PERL SFTP using System, Cannot install SFTP module

I'm a bit new to perl and stackoverflow. If I could use a more familiar language I would, unfortunately I cannot due to certain circumstances. Thanks in advance for the help. Modules Not Installed: Net::SFTP, WWW::CURL, Net::SSH2,…
FangerZero
  • 91
  • 1
  • 8
2
votes
0 answers

Pushing Git repo through SSH chain

I just started a new job, which is trying to start using Git for version control. I am trying to help them with the process but it is turning out to be more complicated than anticipated. Currently, all new files are uploaded to the dev server via…
2
votes
12 answers

FTP GUI client for Unix-like platform capable of TLS/SSL/SFTP

I know similar questions were already asked and answered, but not exactly the same. I'm looking for a FTP client that can do TLS/SSL connection and SFTP aswell on Linux with a nice GUI. This is main requirement, though tabbed session are a…
iElectric
  • 5,633
  • 1
  • 29
  • 31
2
votes
1 answer

Ruby SFTP returns "Net::SSH::Disconnect: disconnected: Failed to read binary packet data! (2)"

I have this in ruby 1.9.3: Net::SFTP.start(ENV['SFTP_HOST'], ENV['SFTP_USERNAME'], password: ENV['SFTP_PASSWORD'], key_data: [ENV['SFTP_KEY']], keys_only: true) do |sftp| sftp.upload!(StringIO.new("testing"), "/text.txt") end It appears to do the…
Brian Armstrong
  • 19,707
  • 17
  • 115
  • 144
2
votes
0 answers

Windows Script for connecting to remote SFTP server with public key authentication

I am trying to connect to a SFTP server for a client of ours and send files in an automated process using MS windows. The details I have received from the client do not include the password. I instead have the public-private key pair using…
2
votes
3 answers

WinSCP - How to recognize if file was transferred successfully

I'm using WinSCP to automatically upload files through SFTP. I have turned on debug log on level 1. Is it possible to find out if the file was uploaded successfully? Thank you. Part of log file: . 2012-08-30 15:30:06.539 File:…
culter
  • 5,487
  • 15
  • 54
  • 66
2
votes
1 answer

PHPStorm - Link external SFTP-folders into project

the issue i am fighting through is a bit complicated. Ill explain the setup envoironment to you first. I am using PHPStorm to work on a Symony2 Project. My Apache is hosted on a Debian-VM connected to PHPStorm via "Deployment Tool". /* So far: I…
2
votes
1 answer

WinSCP login issue with sudo

I am trying to login using WinSCP using correct username and password. Under Environment> SFTP > SFTP Server I have specified sudo /usr/lib/openssh/sftp-server Under Session I type in the Host name, User name and Password. When I click on Login I…
user1544778
  • 39
  • 1
  • 1
  • 4
2
votes
2 answers

sftp net drive ssh server settings - get error 10058

I am trying out Eldos's SFTP Net Drive to map a drive to a virtual Ubuntu server. I works great when authenticating with a password. I have tried the normal/typical methods for configuring Key-based access. However, I receive error 10058. I have…
Larry Eitel
  • 1,397
  • 5
  • 19
  • 37
2
votes
1 answer

Exception while acessing SFTP site: The requested name is valid, but no data of the requested type was found

I am newbie to C# and I am trying to accessing the SFTP using C# (Getting some code from internet). I tried this by writing below code. But I am getting exception as: IPHostEntry hostInfo = Dns.GetHostByName(@"sftp://........"); // Get the IP…
Bhavesh Shah
  • 3,299
  • 11
  • 49
  • 73
2
votes
2 answers

How to read images from a remote sftp file server

So I'm using CodeIgniter PHP Framework for a website. We have a few servers, a live, a dev, and a file server. We've successfully been able to upload files to our dev server, and then secure copy them to our file server for storage. Our problem now…