Can't get VSFTP to work over SSL!! :(
Ok - I'm going bonkers over this one, so any help would be greatly appreciated!
I am trying to get the latest version of vsftp to work (2.0.2). I have openssl-0.9.7b installed. I modified the builddefs.h and tunables.c files to use SSL. Make is run, binary is copied to /etc/vsftpd/ and modified with ssl_enable=YES.
When I start in standalone mode or connect while running under xinetd, i receive this message:
500 OOPS: SSL: ssl_enable set but SSL support not compiled in.
Here are samples of my vsftpd.conf and /etc/xinetd.d/vsftpd files:
anonymous_enable=NO
ssl_enable=YES
rsa_cert_file=/usr/local/ssl/certs/vsftpd.pem
chroot_local_user=YES
------
service ftp
{
socket_type = stream
wait = no
user = root
server = /usr/local/sbin/vsftpd
server_args = /etc/vsftpd/vsftpd.conf
log_on_success += PID HOST DURATION USERID
log_on_failure += USERID
nice = 10
disable = no
}
Thanks for looking!
Chris