didario
Occasional Visitor
Welcome.
How to enable encryption in vsftpd (FTPES - FTP through explicit TLS / SSL) RT-N66U.
Vsftpd server supports this standard.
I could easily run it on tomato by shibby (but I want to RMerlin mod), by adding to the vsftpd:
and to iptables:
and generated key:
However, the RT-66u, I do like (/jffs/configs/vsftpd.conf.add:; /jffs/scripts / firewall start) but vsftpd does not start (500 OOPS: bad bool value in config file for: ssl_enable).
From what I know vsftpd required openssl for this option, which is in the firmware.
There's no way that I'm doing something wrong?
PS: sorry for the broken English: (
How to enable encryption in vsftpd (FTPES - FTP through explicit TLS / SSL) RT-N66U.
Vsftpd server supports this standard.
I could easily run it on tomato by shibby (but I want to RMerlin mod), by adding to the vsftpd:
Code:
pasv_max_port = 8010
pasv_min_port = 8001
ssl_enable = YES
require_ssl_reuse = YES
allow_anon_ssl = NO
force_local_data_ssl = YES
force_local_logins_ssl = YES
ssl_tlsv1 = YES
ssl_sslv2 = NO
ssl_sslv3 = NO
ssl_ciphers = HIGH
rsa_cert_file = / mnt/sda1/cert/vsftpd.pem
and to iptables:
Code:
iptables-I INPUT-j ACCEPT-p tcp - dport 8001:8010
and generated key:
Code:
openssl req -x509 -nodes -days 365 -newkey rsa:2048 -keyout /mnt/sda1/cert/vsftpd.pem -out /mnt/sda1/cert/vsftpd.pem
However, the RT-66u, I do like (/jffs/configs/vsftpd.conf.add:; /jffs/scripts / firewall start) but vsftpd does not start (500 OOPS: bad bool value in config file for: ssl_enable).
From what I know vsftpd required openssl for this option, which is in the firmware.
There's no way that I'm doing something wrong?
PS: sorry for the broken English: (
Last edited: