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
7
votes
6 answers

On what basis should you select ACSII or Binary transfers over FTP?

FTP clients, including those used programatically, allow the user to select ASCII or Binary transfers when uploading a file. Some clients also support some flavor of Auto, where you leave it to the FTP client to decide. What are some correct…
rcampbell
  • 1,035
  • 4
  • 14
  • 24
7
votes
4 answers

what ports are used by ftp over ssl?

Possible Duplicate: What firewall ports do I need to open when using FTPS? Trying to open up ports in a sonicwall firewall. The service is ftp over ssl (NOTE: NOT sftp). What ports does this service use? I have tried standard ftp port as well…
developer1
7
votes
5 answers

Backup linux to ftp server

What do you use for backups to ftp server? I've tried the setup with Amanda and virtual tapes on the ftp server mounted with Curlftpfs and I'm not satisfied with it. I just don't feel confident about Amanda. Also I cannot use anything that uses…
Alakdae
  • 1,233
  • 8
  • 21
6
votes
1 answer

How to Read a Pure FTPD log file?

I'm trying to analyze my FTP log to investigate some unauthorized access, but I can't make sense of some of the far right columns. Thu Oct 01 00:13:55 2009 0 92.54.102.153 2547 /home/user1/public_html/index.html a _ o r user1 ftp 1 * c Thu Oct 01…
user22872
  • 85
  • 1
  • 1
  • 5
6
votes
2 answers

Server sent passive reply with unroutable address. Using server address instead IIS 8.5

I have just set up a FTP server in IIS 8.5 on my Windows Server 2012 R2 machine. With FileZilla when I try connect to the local IP (10.0.0.4) with my username and password on port 21, it will connect just fine, But when I try to connect on the…
jLynx
  • 133
  • 1
  • 1
  • 8
6
votes
1 answer

IIS FTP Not Working Remotely Windows Server 2012 R2

We are attempting to duplicate our server in the Azure cloud. Both are Windows 2012 R2 servers. FTP works on the original server but not on the duplicate server. Additionally, the duplicate server supports localhost FTP access, but not remote…
Scotty H
  • 305
  • 1
  • 3
  • 9
6
votes
2 answers

Preventing specific folder deletion in CentOS

I have a CentOS server running PureFTPd with multiple virtual users mapping to a single system user. Each of these virtual users gets chrooted to a directory corresponding to their username. The directory tree…
Ralph
  • 105
  • 1
  • 6
6
votes
1 answer

AWS RDS Nightly Staging Database

I am trying to determine if it is possible to configure the RDS service in AWS to do the following, but have not had much luck with my Google searches. When it does its instance backup, have it automatically delete an RDS instance and spin up a new…
Jeremy Harris
  • 245
  • 4
  • 12
6
votes
6 answers

VSFTPD and Implicit SSL

I have a Debian Dedicated server and I want to enable Implicit SSL on it using VSFTPD and I am having a hard time. I have read online and the only thing I can really find is how to enable SSL and in the man pages it lists one implicit ssl command.…
Luma
  • 1,460
  • 4
  • 19
  • 31
6
votes
2 answers

Allowing passive FTP connections in FirewallD (CentOS 7)

In CentOS 7 which comes with FirewallD, enabling HTTP access was easy: firewall-cmd --permanent --zone=public --add-service=http However, firewall-cmd --permanent --zone=public --add-service=ftp doesn't work: the rule applies, but I can't access FTP…
Danila Vershinin
  • 5,286
  • 5
  • 17
  • 21
6
votes
2 answers

FTP Server on Windows Server 2012: Works on localhost, error accessing folder when using domain

I am trying to setup a second FTP server on a computer running Windows Server 2008 and IIS 8.0. I already have an FTP server accessible with one port, and this one will be accessible on a different port and point to the same directory. I forwarded…
Jake
  • 602
  • 1
  • 9
  • 17
6
votes
2 answers

FTP client receives whole file, but always closes connection before finishing

On a Windows Server 2008 R2 Standard machine, I'm having trouble connecting to and downloading a file from a Windows FTP server. Filesize is ~3KB to 6KB. Very rarely ~100KB to ~500KB, but the server has plenty of space on disk. I've tried a passive…
Nathan Lutterman
  • 133
  • 3
  • 11
6
votes
3 answers

500 OOPS: SSL: cannot load RSA private key vsftpd

I'm configuring vsfptd on debian 7.3, I'm trying to use ssl. I generate the certficates using this command: openssl req -x509 -nodes -days 1925 -newkey rsa:2048 -keyout /etc/vsftpd/private/vsftpd2.key -out /etc/vsftpd/certificado/vsfptd3.pem And…
user2568422
  • 61
  • 1
  • 1
  • 2
6
votes
1 answer

Connections Number of VSFTP in Passive Mode

When working with passive mode, if we set pasv_max_port to 10100 and pasv_min_port to 10090. Does it mean the VSFTP server can only service 10 clients concurrently? Can we set a same port number to both pasv_max_port and pasv_min_port? If it is…
Steve Peng
  • 559
  • 1
  • 8
  • 18
6
votes
5 answers

vsftpd: refusing to run with writable root inside chroot

I want to setup a anonymous only ftp server (able to upload files). Here is my config…
WoooHaaaa
  • 1,605
  • 4
  • 15
  • 13