Turn off SFTP Server for use FTP??

admiralschadler2310

New Member
YetiShare User
Wurlie User
Mar 19, 2013
19
0
0
Hello,
how i can turn off the sftp server to use ftp without cpanel only with ssh?
Thank you
Its very important
 

ysmods

New Member
Jan 29, 2013
860
1
0
UK
www.ysmods.com
If you use pure-ftp you can do this

SSH into your server
type the following

pico /etc/pure-ftpd.conf

Find the following

Code:
# This option can accept three values :
# 0 : disable SSL/TLS encryption layer (default).
# 1 : accept both traditional and encrypted sessions.
# 2 : refuse connections that don't use SSL/TLS security mechanisms,
#     including anonymous sessions.
# Do _not_ uncomment this blindly. Be sure that :
# 1) Your server has been compiled with SSL/TLS support (--with-tls),
# 2) A valid certificate is in place,
# 3) Only compatible clients will log in.

TLS 2
Change the TLS line to either

TLS 0
or
TLS 1