Questions tagged [ftp]

File Transfer Protocol is a standard network protocol used to transfer data across TCP-based networks between hosts.

File Transfer Protocol (Wikipedia article) is a protocol, governed by well-established Internet standards, for conducting file operations (e.g. transferring files between two systems) over a TCP-based network such as the Internet or a local area network. FTP employs a client-server architecture, where one system is the "client", which opens a connection to the other system, the "server", the client makes requests of the server, and then closes the connection.

The most common FTP operations that a client will initiate include downloading files (i.e. "get" files from the server) and uploading files (i.e. "put" files on the server). There are a variety of file system related commands that the client request of the server (e.g. making directories, renaming files on the server, deleting files from the server, etc.).

2494 questions
10
votes
4 answers

Firewall blocking FTP server on Windows 2008 R2

I can access the FTP site without problems from the local machine, but it times out from the remote machine. If I turn the firewall off COMPLETELY, it works. Obviously, this isn't really a satisfactory solution. I've attempted to follow these steps,…
Andrew Shepherd
  • 573
  • 2
  • 6
  • 16
10
votes
3 answers

What is the syntax of lftp's mirror -x (exclude) option?

I want to mirror a directory using lftp but I want to exclude certain subdirectories. I tried mirror -R -e -x ^\.svn$ /documents/ /test and mirror -R -e -x /^\.svn$/ /documents/ /test but neither of them excluded the .svn directories.
AndreKR
  • 551
  • 1
  • 3
  • 17
10
votes
10 answers

Unable to connect to FTP - Connection timeout after MLSD

So here is my problem, I'm absolutely unable to connect to a FTP server, in circumstances I've never seen before. Here is the situation : I get a "Connection timed out" just after the MLSD command. I usually use Filezilla, under Ubuntu, but to…
Afrosimon
  • 135
  • 1
  • 2
  • 8
10
votes
1 answer

How do I set the default group for a vsftpd user's uploads? (ubuntu 10.04)

How do I set the default group for a vsftpd user's uploads? When I upload a file, the files group is set to the username... How do I get it to automatically set to a specific group?
EmpireJones
  • 358
  • 1
  • 4
  • 13
10
votes
5 answers

FTP v/s SFTP v/s FTPS

We're setting up a web server at our workspace. In conjunction, we're planning to install an FTP server, however I'm stuck at what protocol to employ -- FTP, SFTP or FTPS. I googled around, trying to see what protocol offers what, coming across…
susmits
  • 203
  • 1
  • 2
  • 5
9
votes
5 answers

FTP 550: Permission Denied

I suddenly get the error 550: Permission Denied in Filezilla when I try to create a new directory. A few days ago I changed some settings on the server regarding ssl and imap settings, but I don't think this has affected the FTP settings ... Anyhow,…
user221156
  • 91
  • 1
  • 1
  • 2
9
votes
2 answers

Faster way to mirror a FTP site

I am currently using wget -m to mirror a remote FTP but the speed suck, what are the good alternative (command) so we can parallel to download in order to boost the speed up?
Ryan
  • 5,831
  • 24
  • 72
  • 91
9
votes
2 answers

Dissecting a website attack through a compromised FTP account

My site has been hacked and at this point, I know some details, but I'm at a loss at exactly how it happened or how to prevent it in the future. I need your help in trying to dissect the attack so that I can prevent it from happening again. This is…
Dear Abby
  • 91
  • 2
8
votes
4 answers

530 Valid hostname is expected when setting up IIS 10 for multiple sites

I've configured IIS to have multiple FTP sites, using the instructions found here: https://docs.microsoft.com/en-us/iis/publish/using-the-ftp-service/using-ftp-virtual-host-names-in-iis-7 See the configuration I ended up with below. In IIS I've…
Adam
  • 247
  • 3
  • 4
  • 16
8
votes
2 answers

FileZilla Server 425 Can't open data connection for transfer of "/"

I am having difficulties connecting to my FileZilla Server via my FileZilla Client. When trying to connect to the local address while on the same network I am able to connect successfully though (so the server is functional). FileZilla client is…
Pie
  • 301
  • 1
  • 6
  • 17
8
votes
3 answers

"500 OOPS: vsftpd: refusing to run with writable root inside chroot()" - login failed on Debian

I installed vsFTPd for running an FTP server on Debian 7.3 (Wheezy). I checked the vsFTPd version was 2.3.5, and I configured it like…
shgnInc
  • 1,804
  • 3
  • 22
  • 29
8
votes
1 answer

vsftpd : limit connection to a set of IP addresses

Is it possible to setup vsftpd to only accept connections from a certain set of IP addresses? I've looked at the /etc/vsftpd.conf for options but there is no hint at that. The manual does not either. My Server OS : Red Hat Enterprise Linux Server…
pixeline
  • 658
  • 3
  • 13
  • 29
8
votes
4 answers

Filezilla/Puttygen doesn't recognize private key file

I have generated a key for an Ubuntu Virtual Machine running on Azure Cloud Services http://www.windowsazure.com/en-us/manage/linux/how-to-guides/ssh-into-linux/ openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout myPrivateKey.key -out …
raul782
  • 181
  • 1
  • 1
  • 3
8
votes
1 answer

Failed to retrieve directory listing in Filezilla connecting to vsftpd

newbie here. At first I was unable to connect to vsftpd but I added port 21 in iptables (i'm running on Centos 6) and managed to make it work. But now, I can't get past Command: LIST in Filezilla Here is the log: Status: Connecting to…
AJ Naidas
  • 199
  • 1
  • 1
  • 5
8
votes
6 answers

How to move a set of files on the same FTP server?

On the remote FTP server, I have a set of files in the directory remote.dir1. I would like to move all the files in that directory to remote.dir2. I am using lftp and was trying something like this: lftp> mv remote.dir1/* remote.dir2/ It does not…
cychoi
  • 580
  • 1
  • 5
  • 12