在安装好服务器端的PKG之后,要安装一些FTP文件传输服务器。
netstat reference:
http://man.linuxde.net/netstat
vsftpd installation: (这个vsftpd是SFTP的服务器)
https://www.unixmen.com/install-configure-ftp-server-ubuntu/
service status check:
https://www.cyberciti.biz/faq/check-running-services-in-rhel-redhat-fedora-centoslinux/
安装好vsftpd之后,下载客户端软件,如filezilla,连接超时的情况如有发生,可以考虑将DNS反向解析禁掉。
方法是在/etc/fsftpd.conf中加上
reverse_lookup_enable=NO
并重启一下vsftpd 服务
sudo service restart vsftpd
然后再重新连接
参考:https://blog.csdn.net/worker_1983/article/details/51790089