centos7下配置vsftp和ssh

centos下默认安装命令 yum

安装vsftp

yum -y install vsftp

开启vsftp服务

systemctl start vsftpd

centos默认无netstat

安装netstart

yum -y install net-tools

查看端口

netstat -ano|grep 22

21端口关闭状态


v2-d9bfa356a3cadb12a2c776ef8ed63a31_b.jpg


关闭firewall

systemctl stop firewalld.service

查看firewall状态

[root@localhost vsftpd]# firewall-cmd --state
not running

设置端口为2121

vim /etc/vsftpd/vsftpd.conf打开vsftpd主配置文件
listen_port=2121在最后添加端口


查看iptables规则表

iptables -L -n

清空iptables规则表

iptables -F

关闭所有端口

iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT DROP

允许2121端口

iptables -A INPUT -p tcp --dport 2121 -j ACCEPT
iptables -A OUTPUT -p tcp --sport 2121 -j ACCEPT




设置禁止匿名用户登录FTP

anonymous_enable=No修改Yes为No

重启vsftp.d

systemctl restart vsftpd.service

修改ftp默认目录

local_root=/ftp
chroot_local_user=YES


关闭ls -R命令的使用

ls_recurse_enable=No

关闭ascii下载模式

vim /etc/vsftpd/vsftpd.conf#
#ascii_download_enable=YES



打开ssh配置文件

vim /etc/ssh/sshd_config

禁止root登录

PermitRootLogin=no

仅允许指定网段使用ssh

vim /etc/hosts.allowsshd:192.168.80.0/255.255.255.0
vim /etc/hosts.allowsshd:ALL


设置仅允许指定用户back登录

AllowUsers back

设置最大重试次数为5

MaxAuthTries 5

禁止空密码

PermitEmptyPasswords no

设置每300秒判断一次客户端是否超时

ClientAliveInterval 300

允许超时次数5次

ClientAliveCountMax 5

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

SwBack

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值