防火墙基本操作

防火墙对centos6和7版本操作不同所以第一步要看操作系统的版本

1、查看操作系统的版本

1
cat /etc/redhat-release

 

 

2、  6版本的相关操作

1
2
3
4
5
6
7
8
9
10
11
iptables防火墙启动、重启、停止
service iptables start
service iptables restart
service iptables stop
 
iptables防火墙开机启动、不启动
chkconfig iptables on
chkconfig iptables off
 
查看iptables防火墙生效配置
iptables -L

 3、 7版本的相关操作

1
2
3
4
5
6
7
8
9
10
11
启动服务: systemctl start firewalld
systemctl是CentOS7的服务管理工具中主要的工具,它融合之前service和chkconfig的功能于一体。
启动一个服务:systemctl start firewalld.service
关闭一个服务:systemctl stop firewalld.service
重启一个服务:systemctl restart firewalld.service
显示一个服务的状态:systemctl status firewalld.service
在开机时启用一个服务:systemctl enable firewalld.service
在开机时禁用一个服务:systemctl disable firewalld.service
查看服务是否开机启动:systemctl is-enabled firewalld.service
查看已启动的服务列表:systemctl list-unit-files|grep enabled
查看启动失败的服务列表:systemctl --failed

 

posted @   万笑佛  阅读(23)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· 没有Manus邀请码?试试免邀请码的MGX或者开源的OpenManus吧
· 【自荐】一款简洁、开源的在线白板工具 Drawnix
· 园子的第一款AI主题卫衣上架——"HELLO! HOW CAN I ASSIST YOU TODAY
· Docker 太简单,K8s 太复杂?w7panel 让容器管理更轻松!
点击右上角即可分享
微信分享提示