ProFTPD mod_tls is not loaded properly?

Posted by develroot on Server Fault See other posts from Server Fault or by develroot
Published on 2012-12-02T21:08:37Z Indexed on 2012/12/02 23:09 UTC
Read the original article Hit count: 364

Filed under:
|
|

The server is running CentOS 5 with DirectAdmin. I am trying to get ProfFTPD work over TLS, however it seems that proftpd is lacking mod_tls support, even though it was compiled with mod_tls.

 # proftpd -l
Compiled-in modules:
  mod_core.c
  mod_xfer.c
  mod_auth_unix.c
  mod_auth_file.c
  mod_auth.c
  mod_ls.c
  mod_log.c
  mod_site.c
  mod_delay.c
  mod_facts.c
  mod_ident.c
  mod_ratio.c
  mod_readme.c
  mod_cap.c

As you can see there is no mod_tls.c, however, the DirectAdmin configuration file for proftpd suggests that it was built with TLS support:

 # cat /usr/local/directadmin/custombuild/configure/proftpd/configure.proftpd
#!/bin/sh
install_user=ftp \
install_group=ftp \
./configure \
--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/run \
--mandir=/usr/share/man \
--without-pam \
--disable-auth-pam \
--enable-nls \
--with-modules=mod_ratio:mod_readme:mod_tls

And all I get when I try to connect over FTPS using FileZilla is:

Raspuns:    220 ProFTPD 1.3.3c Server ready.
Comanda:    AUTH TLS
Raspuns:    500 AUTH not understood
Comanda:    AUTH SSL
Raspuns:    500 AUTH not understood

Am I missing something? thanks.

© Server Fault or respective owner

Related posts about centos

Related posts about proftpd