sftp

Proxy Details with SFTP command

I'm trying to login into the sftp server but its giving me this Connecting to sftp.ABCD.com... /bin/sh: line 1: exec: connect: not found ssh_exchange_identification: Connection closed by remote host Couldn't read packet: Connection reset by peer These are the credentials that I'm trying to give The credentials for the sftp server is ...

retrieving list of files from SFTP server in java

Hi folks, I want the list of files of a particular directory which is present in sftp server or ftp server.I written following code to do that but it is not working for me. FTPClient client = new FTPClient(); try { client.connect("ftp.secureftp-test.com "); client.login("test", "test"); String[] ...

How to use sudo over SFTP with CyberDuck?

I'm copying this question from over here: http://getsatisfaction.com/cyberduck/topics/can_i_use_sudo_over_sftp_with_cyberduck I am having the same issue and finding it hard to find an answer: I am using Cyberduck over SFTP. I can connect and browse files fine, but when I try to upload, I get a permissions error. Web host says ...

How does scp traffic flow between two remote hosts?

If you issue a scp command between 2 remote servers, will the traffic flow directly between the hosts? Or will it flow from Remote1 => Local Machine => Remote2 ? For example I issue this command on my laptop: scp [email protected]:/Files [email protected]:/Files ...

Free .NET sFTP component supporting asynchronous uploads?

Are there any out there? I've done a fair bit of searching. Looks like there are some options for a few hundred $US++ but I can't see any free ones. ...

paramiko SFTP hangs on get

I'm trying to use paramiko to get a file via SFTP. It connects, I can list directories and it even downloads the first megabyte or so of the file but then it just hangs. No exception, no error, nothing. It just hangs there indefinitely. Here's the code I'm working with: import paramiko t = paramiko.Transport( host ) t.connect( username...

What's a decent SFTP command-line client for windows?

Most of the windows SFTP clients (like FileZilla) seem to be GUI-based. I need something I can call from batch files. ...

phing + sftp to upload site as part of automated build

Hello, Does anybody know of an easy way to upload files to a remote server using SFTP from within a Phing build? I cant seem to find a custom or native Phing task to do this. The other problem is the interactivity of the SFTP unix command (requiring a password after reaching host, etc.) Any ideas? ...

Perl Net::FTPSSL, won't connect, timeout or throw errors.

I am trying to use perl's Net::FTPSSL to connect to a host. When I run the script, it hangs and eventually times out on my error logs, but not to the browser. The problem seems to be when creating the new connection. If I use Filezilla to connect, there is a pause/response warning that the host key is unknown. When I 'ok' it in Filez...

Python 3.x and SFTP

I know that the Paramiko api exists for Python 2.x. Is there an emerging method for interacting with a remote server using SFTP functions from within a Python 3.1 script? Extensive searching of the paramiko site uncovered no evidence of 3.x support. If not, I will either use Python-2.x with Paramiko for my remote access, or maybe just ...

SFTP using VB.NET 1.1

Hi one of the task assigned to me is convert the FTP Application to SFTP using VB.NET 1.1. I am looking the on the internet but I am not getting any free/open source API which support this. Is anybody know about this? if yes could you please share the code? Thanks Jwalin ...

SharpSSH Progress and Rename

VB2005 and SharpSSH. Using the library to connect to a remote server and copy a file. I have the process working fairly well but have some smaller things which I cant seem to resolve as documentation for the library is fairly thin. I have two routines working. One using the Tamir.SharpSsh class and the other using the Tamir.SharpSsh.jsc...

Where does the camel sftp endpoint expect the known_hosts file?

In order for camel to connect to a remote host, it needs to already have seen the fingerprint of the host and record it in a known_hosts file, just like .ssh/known_hosts . I get the setting from this file from a field in a database which is too small to contain the complete url... If I could symbolic link the .ssh file to the default l...

Access to SFTP bin/bash

Hello, I opened a domain in Plesk and wanted to give the user access to SFTP in order to secure the transfers through FTP. When i chose "Shell acess to server with user's credentials /bin/bash" I got a message that it is extremely dangerous to enable this feature and I should only enable it if I trust the user. I am trying to understa...

SFTP permission denied

Hello, I used Plesk to open a new domain and under the "Web hosting setup for domain" I checked the "Shell access to server with FTP user's credentials" - "bin/bash". I can log in to the account using SFTP (port 22) but when I try to upload files I get "Permission Denied". How is that possible if I enabled it through Plesk? Joel ...

[python] paramiko's sshclient with sftp

How i can make sftp transport throught SSHClient on the remote server? I have local host and two remote. Remotes hosts are backup server and web server. I need find on backup server necessary backup file and put it on web server over sftp. Plz help me, i dont understand how i can make paramiko's sftp transport throught paramiko's SSHCli...

Can i control PSFTP from a Python script?

Hi, i want to run and control PSFTP from a Python script in order to get log files from a UNIX box onto my Windows machine. I can start up PSFTP and log in but when i try to run a command remotely such as 'cd' it isn't recognised by PSFTP and is just run in the terminal when i close PSFTP. The code which i am trying to run is as follo...

Automate sending of files through sftp using copssh

Every month we send reports to a server using FTP. We run a query on a database to create the files then use the ftp functionality in LabVIEW to do the transfer. This runs on a Windows system. This works fine but now we have to switch to using SFTP and the CopSSH package has been recommended. As LabVIEW has no native SFTP functionality ...

SFTP action in FinalBuilder always gets disconnected

i have the final builder actions below sftp connect try sftp create directory finally sftp disconnect end thing is the action always says "connection lost" at sftp create directory. i even insert a reconnect before that line but still the same. ...

SFTP upload with VBA

i need to be able to SFTP though VBA. I have an Access program that pulls data, manipulates it and now i have to find a way to upload the excel 07 file through SFTP. i've been looking on the net for days and can't find anything. I saw a similar topic here http://stackoverflow.com/questions/202197/how-to-use-sftp-from-within-an-ms-access...