What is VSFTPD Server ?
Vsftpd is a File Transfer Protocol, This software is use to transfer our files into remote server.
In this tutorial we will install,configure ftp server to use passive mode port range.
First we need to install Vsftpd server.
Login into the server via ssh and access root
Install VsFtpd Server
root@athena:/home/sentono#apt-get install vsftpd
Configure VsFtpd Server
root@athena:/home/sentono#pico /etc/vsftpd.conf
#This function is to enable local user so local user also can using vsftp server with local password.
#This function is to enable passive mode
pasv_enable=YES
#This function is to limite passive mode range from 50000 to 51000 TCP ports
#save this file and exit
Restart VsFtpd Server
root@athena:/home/sentono#/etc/init.d/vsftpd restart
Try to connect with ftp client such as cuteftp,wsftp with passive mode to VsFTP server.
Post new comment