welcome: please sign in
location: Diff for "Storage/Vsftpd"
Differences between revisions 19 and 20
Revision 19 as of 2014-03-10 11:51:15
Size: 2092
Editor: cabrillo
Comment:
Revision 20 as of 2014-03-10 12:07:12
Size: 2360
Editor: cabrillo
Comment:
Deletions are marked like this. Additions are marked like this.
Line 58: Line 58:
   {{{
   # lftp
   lftp :~> set ftp:ssl-force true
   lftp :~> set ftp:ssl-protect-data true
   lftp :~> set ssl:verify-certificate no
   lftp :~> connect ftp01.ifca.es
   lftp ftp01.ifca.es:~> user '''your_username'''
   Password:'''your_passwd'''
}}}
 

The very Secure FTPd Service

  • Vsftpd is a GPL licensed FTP server for UNIX systems, including Linux. It is secure and extremely fast. It is stable. Don't take my word for it, though. Below, we will see evidence supporting all three assertions. We will also see a list of a few important sites which are happily using vsftpd. This demonstrates vsftpd is a mature and trusted solution.

  • Accesing to IFCA storage using the Ftp servers will be only allowed under TLS connection.

Clients

  • There are several clients that supports this kind of connection (TLS), we will have as example of HOWTO by two of the most used

Filezilla Client

different kind of platforms (Linux, Windows, Mac) or from the common repository distrubutionfor linux systems.

  1. For debian or Ubuntu
       sudo apt-get install filezilla
  2. For Redhat
       yum install filezilla
  • Howto use filezilla with TLS connection.
    1. Open the filezilla Client and go to "Open The Site Manager"

      Filez1.png

    2. Fill in the labels and Connect
      1. Host: The host name of ftp server ftp01.ifca.es in our case.

      2. Encription: Select the Require explicit FTP over TLS option.

      3. user: The username that has been provided to you.

      4. password: The passwd that has been provided to you.

      Filez2.png

    3. Accept the Certificate and enjoy

      Filez3.png

      1

Lftp

  • lftp client is available under common repositori distribution.
    1. For debian or Ubuntu
         sudo apt-get install lftp
    2. For Redhat
         yum install lftp
  • Howto use lftp with TLS connection.
    •    # lftp
         lftp :~> set ftp:ssl-force true
         lftp :~> set ftp:ssl-protect-data true
         lftp :~> set ssl:verify-certificate no 
         lftp :~> connect ftp01.ifca.es
         lftp ftp01.ifca.es:~> user '''your_username'''
         Password:'''your_passwd''' 
  1. ftp01.ifca.es if formed by a pool of ftp servers is possible to have to accept several certificates (up to 8) (1)

eciencia: Storage/Vsftpd (last edited 2014-03-10 12:07:12 by cabrillo)