CentOS7或7以上,无iptable解决方法

CentOS7或7以上,无iptable解决方法,第1张

CentOS7或7以上,无iptable解决方法

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端口

一定要看的干货
链接: 除了接私单,写博客,做教程之外,程序员如何利用自身技术,实现躺着赚钱!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4696469.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-07
下一篇 2022-11-07

发表评论

登录后才能评论

评论列表(0条)

保存