CentOS7没有iptables,默认使用firewalld ;
iptables默认无法被systemctl控制,需要安装iptables-services、iptables-devel这两个依赖包。
禁用/停止自带的firewalld服务 如下
停止firewalld服务
[root@localhost ~]# systemctl stop firewalld
禁用firewalld服务
[root@localhost ~]# systemctl mask firewalld
查看iptables现有规则
[root@localhost ~]# iptables -L -n
先允许所有,不然有可能会出问题
[root@localhost ~]# iptables -P INPUT ACCEPT
安装iptables-services、iptables-devel
启用并启动iptables
查看状态 systemctl status iptables.service
查看iptables配置文件 vim /etc/sysconfig/iptables
添加一个80端口
一定要看的干货
链接: 除了接私单,写博客,做教程之外,程序员如何利用自身技术,实现躺着赚钱!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)