OPS335 FTP Lab

From CDOT Wiki
Revision as of 17:12, 5 September 2011 by Paul.W (talk | contribs) (Set up your FTP Server (Active Mode))
Jump to: navigation, search


VSFTP Setup

This lab will show you how to set up an FTP server inside a VM guest on a Fedora 13 host. Since you'll be using a VM as the FTP server, you'll only require one lab PC. Remember, these are not group labs - please work individually.

Background Information:

FTP uses 2 TCP ports. The first, usually port 21, is used to send commands to the server (ls, cd, get, put, etc.) and to receive command replies from the server. The second, usually port 20, is used to send a file to the server during an upload or to receive a file from the server during a download.

  • FTP can work in 2 modes: Active or Passive.
    • In active mode the client connects to the server on port 21. The server then connects back to the client from port 20. In both connections, the ports used on the client are insecure high-numbered ports ( greater than 1023 ).
    • In passive mode the client first connects to the server on port 21 and makes a second connection to a high-numbered port. As with active mode, the ports used on the client are insecure high-numbered ports ( greater than 1023 ).

FTP can be set up so that anonymous users (users without accounts on the server) may download and possibly upload files.

Build your VM

  • Power up your PC (the gateway with host name f13), login as joker, open a terminal window and "su -" to root.
  • Setup a default Desktop firewall. You can do this from the System->Administration->Firewall menu by stopping the firewall and then selecting the Desktop option to make a new one.
  • Once your Desktop firewall is set up you'll need to restart the libvirtd service. Use the command "service libvirtd restart".
  • Check your firewall using the "iptables-save" command. You should get something that looks like this .
  • Still as root you need to install an ftp client. Use this command: "yum install ftp".
  • Now make sure you are connected to the Internet. Start Firefox and authenticate yourself with your LEARN password.
  • Use virt-manager to create a new Virtual Machine (VM) named vm01.
  • Login to your VM and ensure you have the default Fedora Desktop firewall set up. Your firewall should look something line this .

Before preceeding to the next part ensure your gateway is working properly and that your server has full access to the Internet. Try some of these commands on your VM guest:

 ping 192.168.122.1
 host cbc.ca

also start Firefox in the guest and ensure it can view outside web sites.

Set up your FTP Server (Passive Mode)

  1. Still on vm01 use yum to install vsftpd and edit the config file (/etc/vsftpd/vsftpd.conf) to implement the following:
    • Anonymous users should be able to login and download any files (permissions allowing) from the /var/ftp/pub.
    • Anonymous uploading should not be allowed.
    • Local users should be allowed to login to their own accounts and upload/download their own files.
  2. The FTP Greeting Banner should be set to "Welcome to OPS335 FTP Server".
  3. Set the maximum number of concurrent client connections to 50.
  4. Set the maximum transfer rate for anonymous users to 131072 bytes per second.
  5. Set the connection timeout for all clients to 90 seconds.
  6. Enable file transfer logging.
  7. You'll now have to modify your vm01 firewall to allow NEW tcp connections on port 21.
  8. You'll also need to set SELinux to permissive mode: setenforce 0.
  9. Finally you'll have to install the ftp connection tracking module into your kernel. Use this command: "modprobe nf_conntrack_ftp". To verify that your kernel module is installed you can use the "lsmod" command.
  10. At this point you should test your FTP server from hosts within your intranet. It should work properly for both anonymous and local users. From a terminal window on the gateway try these activities:
    • ftp as joker on your VM, then list, get and put files.
    • ftp as anonymous to your VM, then list and get files.

Configure the Firewall

  • Now configure your firewall (using iptables) on the gateway to allow FTP clients through to the vm01 FTP server.
  • You'll need to forward packets with destination port 21 to your VM machine.
  • Test your firewall by logging into a second PC (try both Windows and Linux) and attempt an FTP connection to your gateway PC. Test both local user as well as anonymous connections.

Set up your FTP Server (Active Mode)

  1. Edit /etc/vsftpd/vsftpd.conf and disable Passive mode (so now only Active mode is enabled) and then restart vsftpd.
  2. Test your firewall by logging into a second PC (try both Windows and Linux) and attempt an FTP connection to your gateway PC. Test both local user as well as anonymous connections.

Log Packets with Netfilter

  1. On the firewall/gateway add iptables log rules to monitor ftp traffic (control and data) for the following:
    • PREROUTING chain of nat table
    • FORWARD chain of filter table
    • POSTROUTING chain of nat table
  2. On vm01 add iptables log rules to monitor ftp traffic (control and data) for the following:
    • PREROUTING chain of nat table
    • INPUT chain of filter table
    • OUTPUT chain of filter table
    • POSTROUTING chain of nat table
  3. Now repeat step 2 of PART D while monitoring your packets using "tail -f /var/log/messages" on both the gateway/firewall and vm01.

Completing the Lab

Answer the following questions and and email them to your teacher in ASCII text format.

  1. What is your full name and 9-digit Seneca student ID?
  2. Hand in your output from the following commands on the FTP server:
    • cat /etc/vsftpd/vsftpd.conf | grep -v ^# | awk 'NF>0'
    • cat /var/log/xferlog
    • iptables-save
  3. Hand in your output from the following commands on the gateway:
    • iptables-save
  4. Show the log files on both the gateway (f13) and the server (vm01) generated in step 3 of PART E.