0℃
2015年03月31日
⁄ FTP
⁄ 被围观 47,526次+
本文档最后更新于2020年3月18日
一、配置防火墙,开启FTP服务器需要的端口
CentOS 7.x 8.x 默认使用的是firewall作为防火墙,这里改为iptables防火墙。
1、关闭firewall:
systemctl stop firewalld.service #停止firewall
systemctl disable firewalld.service #禁止firewall开机启动
2、安装iptables防火墙
yum install iptables-services #安装
vi /etc/sysconfig/iptables #编辑防火墙配置文件
# Firewall configuration written by system-config-firewall
# Manual customization of this file is not reco...
CentOS, FTP, Vsftpd阅读全文
0℃
2012年06月24日
⁄ FTP
⁄ 被围观 27,282次+
环境说明:
/home/www.osyunwei.com目录下有三个子目录
bbs
sns
blog
实现目的:
建立三个FTP用户
用户名:bbs 密码:123456 访问目录(可读、可写、可修改、可删除):/home/www.osyunwei.com/bbs
用户名:sns 密码:123456 访问目录(可读、可写、可修改、可删除):/home/www.osyunwei.com/sns
用户名:blog 密码:123456 访问目录(可读、可写、可修改、可删除):/home/www.osyunwei.com/blog
配置篇
一、配置防火墙,开启21端口、9000到9045端口
说明:debian默认安装是没有开启任何防火墙的,为了服...
Debian, Debian Vsftpd服务器, Vsftpd, Vsftpd服务器配置阅读全文