How To Install FTP in Redhat Linux vsftpd-very secure ftp daemon

1)Install the vsftp package
#yum install vsftp*
2)switch on the vsftp
#chkconfig vsftpd on
Then check whether vsftpd is installed and working perfeclty or not
We can also verify whether vsftpd function is running or not
#netstat -a | grep ftp
#netstat -tulpn | grep :21
-l list the listening server socket
-p display PID/program name for socket
-n numeric
How To Connect The FTP
#ftp IPADDRESS
Enter the User Name And Password or anonumous
After connect we can get the information regarding send and receive file using help command
Important ftp Configuration  file
/etc/vsftpd/ftpusers >> list of user allowed or denied Permanently(userlist_enable , userli
/etc/vsftpd/user_list >> list of user allowed or denied
/etc/vsftpd/vsftpd.conf >> configuration file
if userlist_deny=NO, only allow users in this file
else if userlist_deny=YES (default), never allow users in this file
FTP Port Number
ftp 20 data
ftp 21 control

Post a Comment

0 Comments