摘要:iptablesCentOS 7 以下的系统版本防火墙均使用iptables,所以要进行端口操作,请需要输入iptables命令开放端口(80为例):/sbin/iptables-IINPUT-ptcp--dport80-jACCEPT关闭端口(8
iptables
CentOS 7 以下的系统版本防火墙均使用iptables,所以要进行端口操作,请需要输入iptables命令开放端口(80为例):
/sbin/iptables-IINPUT-ptcp--dport80-jACCEPT关闭端口(80为例):
/sbin/iptables-IINPUT-ptcp--dport80-jDROP保存更改:
/etc/rc.d/init.d/iptablessave查看开放端口:
/etc/init.d/iptablesstatusfirewallCentOS 7 及以上的系统版本防火墙均使用firewall,所以要进行端口操作,请需要输入firewall命令1.查看已经开放的端口:
firewall-cmd--list-ports2.添加端口(80端口为例):
firewall-cmd--zone=public--add-port=80/tcp--permanent3.重新载入:
firewall-cmd--reload4.检查端口:
firewall-cmd--zone=public--query-port=80/tcp5.关闭端口(80为例):
firewall-cmd--zone=public--remove-port=80/tcp--permanent6.重启防火墙:
firewall-cmd--reload#重启firewall systemctlstopfirewalld.service#停止firewall systemctldisablefirewalld.service#禁止firewall开机启动 firewall-cmd--state#查看默认防火墙状态(关闭后显示notrunning,开启后显示running)7.命令含义:
–zone#作用域 –add-port=80/tcp#添加端口,格式为:端口/通讯协议 –permanent#永久生效,没有此参数重启后失效关闭firewall,安装iptablesCentOS 7默认使用的是firewall作为防火墙,使用iptables必须重新设置一下1.关闭防火墙,禁止开启启动
systemctlstopfirewalld.service systemctldisablefirewalld.service2.安装 iptables service
yum-yinstalliptables-services3.后续即可使用iptable命令操作来管理防火墙
相关文章推荐
虚拟主机的专业参数,分别都是什么意思?2022-09-09
中非域名注册规则是怎样的?注册域名有什么用处? 2022-01-10
HostEase新年活动促销 美国/香港主机全场低至五折2021-12-28
HostGator下载完整备份教程分享2021-12-28
Flink中有界数据与无界数据的示例分析2021-12-28