(问题:Redirecting to /bin/systemctl restart iptables.service Failed to restart iptables.service: Unit not)
安装iptables-services
切换到root用户下,执行:
yum install iptables-services
systemctl enable iptables.service //设置开机启动
之后就可以使用以下指令了:
service iptables [start|stop|restart|save|status]
查看端口是否开放
firewall-cmd --query-port=7000/tcp --zone=public
如果显示no,可以使用下面命令开启7000端口:
firewall-cmd --zone=public --add-port=7000/tcp --permanent
开启端口后需要重启防火墙使其生效,命令为:
service iptables restart