博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Linux 防火墙命令的操作命令CentOS
阅读量:6842 次
发布时间:2019-06-26

本文共 545 字,大约阅读时间需要 1 分钟。

service firewalld status; #查看防火墙状态systemctl start firewalld.service;#开启防火墙systemctl stop firewalld.service;#关闭防火墙systemctl restart firewalld.service;  #重启防火墙systemctl disable firewalld.service#禁止防火墙开启自启systemctl enable firewalld#设置防火墙开机启动yum remove firewalld#卸载firewall
安装iptables防火墙及操作:#yum install iptables-services#安装iptables防火墙#vi /etc/sysconfig/iptables#编辑防火墙配置文件,开放3306端口   添加配置:-A INPUT -p tcp -m state --state NEW -m tcp --dport 3306 -j ACCEPT#systemctl restart iptables.service #最后重启防火墙使配置生效#systemctl enable iptables.service #设置防火墙开机启动

 

转载地址:http://ofzul.baihongyu.com/

你可能感兴趣的文章
基于pcDuino的WiFi实时视频监控智能小车——硬件部分(二)
查看>>
01-UI基础-04-02-UITableView : UIScrollView
查看>>
linux md5sum 的用法
查看>>
Java高级-HashMap工作机制
查看>>
Windows 64位系统安装Apache2.4+PHP5.5+MySQL5.6
查看>>
MySQL事务隔离级别介绍及设置
查看>>
jquery grep()筛选遍历数组
查看>>
RN开发总结 关于RN组件的导出export和export default
查看>>
Nginx+keepalived双机热备+负载均衡 ???待续
查看>>
搜素框架
查看>>
使用Xtrabackup对MySQL做主从复制
查看>>
HTML 元素和有效的 DTD文档类型
查看>>
shell 调试技术,伪信号打印程序出错位置
查看>>
(转)批处理
查看>>
struts标签绑定Map<String, List<Map<String, Object>>>
查看>>
navigator.userAgent.indexOf来判断浏览器类型
查看>>
【重磅消息】-支付宝小程序可以申请公测啦!!!
查看>>
vm用nat方式访问外网及访问宿主机
查看>>
opencv 配置
查看>>
python re group()
查看>>