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 #<em>---Add following lines at the end of file---</em> 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.
You may also like to read:
* 5 steps to secure your Linux Server
* How to setup multiple mysql servers in a single Linux machine.
* Setup Mysql Cluster in Amazon EC2.
* Download, install and configure perlbal loadbalancer.
* How to find out clients of your Mysql server.
* Fix and optimize Mysql server running slow without any load.
* Script to sync files between web servers.
* Install and configure HAProxy loadbalancer.
* Quick web based php script to check replication status of multiple MySQL Servers
Pingback: Quora
Pingback: Cloud Computing with Amazon ams – Free :) « Technube
Pingback: NodeJS, Websockets and EC2 | Mike Newell
Pingback: κυτταρίτιδα
Pingback: get firefox
Pingback: AWS:EC2:: Could not connect FTP client?
Pingback: code de la route gratuit
Pingback: Amazon Web Services