置s防火墙设

CentOs是我们工作中使用的比较多的一个linux操作系统了,在上面发布服务的时候经常要配置防火墙规则,因为CentoOs6和CentOs7的防火墙配置方式有所区别,这里记录下来,方便后面使用。

CentOs6防火墙

etc/init.d/iptables status    //查看状态service iptables start        //开启防火墙service iptables stop         //关闭防火墙chkconfig iptables on         //开启开机自启chkconfig iptables off        //关闭开机自启//添加防火墙例外vi /etc/sysconfig/iptables    //编辑iptables文件-A INPUT -p tcp -m state --state NEW -m tcp --dport 8081 -j ACCEPT   //加入端口配置service iptables start        //重启服务或iptables -A INPUT -p tcp --dport 8080 -j ACCEPT /etc/rc.d/init.d/iptables save/etc/init.d/iptables restart

CentOs7防火墙

systemctl start firewalld    //启动systemctl status firewalld   //查看状态systemctl stop firewalld     //停止systemctl disable firewalld  //禁用添加防火墙例外firewall-cmd --zone=public --add-port=80/tcp --permanent    (--permanent永久生效,没有此参数重启后失效)重新载入firewall-cmd --reload查看firewall-cmd --zone= public --query-port=80/tcp删除firewall-cmd --zone=public --remove-port=80/tcp --permanent
上一篇:豆角炒茄子 有人直接下锅炒 难怪炒得不好吃 教你正确做法
下一篇:排骨焯水后又腥又柴 看完大厨做法才知道 原来用错了水