Home > AWS > Install and Configure FTP Server in Amazon EC2 instance

Install and Configure FTP Server in Amazon EC2 instance

June 26th, 2008

For many users, running FTP Sever in Amazon EC2 instance is headache at the first time. You need to experiment before being able to transfer data. The main problems are Ingress firewall in Amazon environment and NAT traversal.

Here I’m using vsftp (vsfptd) Server, which is one of the most popular and easy to configure. The instance is running from base Fedora 4 AMI but the setup should be identical to other Red Hat based distros.

Install vsftpd FTP server, if not installed earlier:

# yum install vsftpd

Its upto you which FTP method i.e. Active or Passive you want to use. The problem with active mode is that your computer is sending a request out of port 21 when all of a sudden, the server attempts to initiate a request with your computer on port 20. Since communication on port 21 does not imply communication on port 20, it appears as if some unauthorized host has attempted to initiate a new connection with your computer. Kind of sounds like a hack right? Your firewall may think so too (or your NAT router may have no idea to which computer to route the request). Active mode is not used as default method of ftp transfer in many clients these days.

On the other hand, as the Ingress firewall is running in AWS, from the firewall’s standpoint, to support passive mode FTP the following communication channels need to be opened:

FTP server’s port 21 from anywhere (Client initiates connection).
FTP server’s port 21 to ports > 1023 (Server responds to client’s control port).
FTP server’s ports > 1023 from anywhere (Client initiates data connection to random port specified by server).
FTP server’s ports > 1023 to remote ports > 1023 (Server sends ACKs (and data) to client’s data port).

That second part is the problem: FTP server listens on a random port and hands that back to the client, so the client initiates a connection to a random server port, which you must allow.

Opening up all ports > 1023 isn’t so good for security. But what you can do is allow the ports through the distributed firewall and then setup your own filtering inside your instance. Instead, you would better open a fixed number of ports (such as 1024 to 1048) and configure your FTP Server to only use that ports.

Check whether required ports are open or not in your EC2 security group. (if you are unaware about security group, it should be ‘defaul’ unless you created a new one).

# ec2-describe-group

This command will print all ports which are currently open. If you dont find port 20,21,1024-1048 then you need to open these ports but if you dont find the command itself i.e.
# ec2-describe-group
-bash: ec2-describe-group: command not found

You need to install ec2 command line tools. You can find them here and the instructions to setup/configure can be found here.

Open the ports now:

# ec2-authorize default -p 20-21
# ec2-authorize default -p 1024-1048

Here, ‘default’ is the name of security group. You can also open ports for specific IPs. For ease of use, you better install ElasticFox, a firefox extension to manage EC2 stuff. you can find more about it here.

At this moment, you can start your FTP server and if you try to connect it, the process will get failed. By checking logs, you should find something like:

Status: Connected
Status: Retrieving directory listing...
Command: PWD
Response: 257 "/" is current directory.
Command: TYPE A
Response: 200 Type set to A
Command: PASV
Response: 227 Entering Passive Mode (216,182,238,73,129,75).
Command: LIST
Error: Transfer channel can't be opened. Reason: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
Error: Could not retrieve directory listing

Time to configure vsftpd.conf file:
# vi /etc/vsftpd/vsftpd.conf
---Add following lines at the end of file---
pasv_enable=YES
pasv_min_port=1024
pasv_max_port=1048
pasv_address=Public IP of your instance

Put public IP of your EC2 instance and then Save the file. Now restart the server:

# /etc/init.d/vsftpd restart

One another thing I noticed recently in some instances is that even after configured properly, ftp client is not able to connect. You can find the description and solution of that problem in this post on this blog.

Bookmark and Share

AWS , , ,

  1. sushilver
    June 27th, 2008 at 10:50 | #1

    useful information… i like it

  2. =Bill.Barnhill
    November 29th, 2008 at 01:11 | #2

    Very useful article, one typo though: it’s ec2-describe-group not ec2-describe-groups

  3. November 29th, 2008 at 09:55 | #3

    @Bill,

    thanks buddy for pointing out typo, I’ve fixed it.

  4. George
    December 29th, 2008 at 02:33 | #4

    Thanks for this. Was having a bugger of a time finding the right combo to make passive mode work properly with the security groups.

  5. Jimmy
    February 20th, 2009 at 03:45 | #5

    Hey! Thanks for posting this! It was a great helping in getting my ftp server setup! Keep up the good work!

  6. mukul
    March 16th, 2009 at 00:12 | #6

    great help!! thanks a lot, keep up the good stuff.

  7. March 17th, 2009 at 05:33 | #7

    nice!

  8. April 1st, 2009 at 04:33 | #8

    This is very useful. I’m trying find a way to autmate this piece. Is there a way to use a perl script to configure the web server.

  9. jason
    May 12th, 2009 at 18:36 | #9

    Thanks! this worked great!

  10. devon
    June 10th, 2009 at 06:39 | #10

    small typo,

    # yum install vsfptd

    should be

    # yum install vsftpd

    correct?

  11. June 12th, 2009 at 19:00 | #11

    correct :) thanks for pointing out. fixed.

  12. November 11th, 2009 at 19:57 | #12

    I have some problem regarding on the fetching data from the amazon server. “Login” pages do not load on http://www.tenlegs.com when running under SSL. The brief root cause of this is as follows:
    (1) http://www.general.com is configured with an SSL certificate issued for this domain name
    (2) Our static content (images, css) are stored on Amazon S3. When any of our website’s web pages make reference to these images under ssl (eg: https://www.general.com/index.php generates html that refers to https://sample.general.com/images/logo.jpg), the web browser finds that sample.general.com is actually s3.amazonaws.com, and the certificate for s3.amazonaws.com does not match the sample.general.com domain name. The net effect is that the static content is blocked from displaying in the browser, leading to a messy looking page.

  13. Mike
    January 30th, 2010 at 15:07 | #13

    Hi, I install and config like this, but my FTP client returns:
    “Response: 200 Switching to Binary mode.
    Command: PASV
    Response: 500 OOPS: child died
    Command: PORT 222,212,103,247,18,106
    Error: Connection closed by server
    Error: Failed to retrieve directory listing”
    Do you have any suggestion? Thanks.

  14. January 30th, 2010 at 15:13 | #14

    Hi Mike, are you sure all mentioned ports are open? did you tried restarting ftp server?

  15. Mike
    January 30th, 2010 at 19:19 | #15

    @jagbir
    Hi, Jagbir:
    I use 10000/10024 port, and use Amazon AWS Management Console to config Security Groups as:
    ———————-
    Connection Method
    -
    Protocol
    tcp
    From Port
    10000
    To Port
    10024
    Source (IP or group)
    0.0.0.0/0
    —————-
    And you can see my problem post at Amazon forum here:
    https://developer.amazonwebservices.com/connect/thread.jspa?threadID=41962&tstart=0.
    But still no answer….

  1. No trackbacks yet.
Get Adobe Flash playerPlugin by wpburn.com wordpress themes