该用户从未签到
|
- 1、关闭 CentOS 7 自带的 firewall 防火墙
- # 关闭防火墙
- systemctl stop firewalld
- # 取消开机启动
- systemctl disable firewalld
- 2、安装 iptables-services
- # Cetnos 7 默认已经装了 iptables, 只需装 services
- yum install iptables-services -y
- 3.首先开放22端口以防止ssh掉线
- iptables -A INPUT -p tcp --dport 22 -j ACCEPT
- iptables -A OUTPUT -p tcp --sport 22 -j ACCEPT
- 保存配置防止丢失
- service iptables save
- 默认设置为拒绝
- iptables -P INPUT DROP
- iptables -P FORWARD DROP
- iptables -P OUTPUT DROP
复制代码
|
上一篇:快手新版封号代码下一篇:300集JAVASE高级精英实战盛宴
|