vsftpd is the Very Secure File Transfer Protocol Daemon. The server can
be launched via a “super-server” such as inetd(8) or xinetd(8). Alterna‐
tively, vsftpd can be launched in standalone mode, in which case vsftpd
itself will listen on the network. This latter mode is easier to use, and
recommended. It is activated by setting listen=YES in /etc/vsftpd.conf.
Direct execution of the vsftpd binary will then launch the FTP service
ready for immediate client connections.
server: ubuntu 18.04
1. install
sudo apt-get install vsftpd
2. configure
sudo vim /etc/vsftpd.conf
-
write_enable=YES
-
utf8_filesystem=YES
then,
sudo service vsftpd restart
3. enable
3.1
sudo /etc/init.d/vsftpd start
sudo /etc/init.d/vsftpd stop
sudo /etc/init.d/vsftpd restart
3.2
sudo service vsftpd start
sudo service vsftpd stop
sudo service vsftpd restart
3.3
systemctl restart vsftpd
4. test
4.1 win10 cmd
ftp 192.168.221.129