Linux 防火墙
2021/8/19 7:07:40
本文主要是介绍Linux 防火墙,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
查看防火墙的状况
service iptables status
开启与关闭防火墙
1) 永久生效
开启: chkconfig iptables on
chkconfig ip6tables on ---针对ipv6
关闭: chkconfig iptables off
chkconfig ip6tables off ---针对ipv6
2) 即时生效,重启后失效
开启: service iptables start
关闭: service iptables stop
3) Centos7.0 以后不再使用 service, 而是systemctl
状态:systemctl status firewalld
开启:systemctl start firewalld
关闭:systemctl stop firewalld
这篇关于Linux 防火墙的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-10-22原生鸿蒙操作系统HarmonyOS NEXT(HarmonyOS 5)正式发布
- 2024-10-18操作系统入门教程:新手必看的基本操作指南
- 2024-10-18初学者必看:操作系统入门全攻略
- 2024-10-17操作系统入门教程:轻松掌握操作系统基础知识
- 2024-09-11Linux部署Scrapy学习:入门级指南
- 2024-09-11Linux部署Scrapy:入门级指南
- 2024-08-21【Linux】分区向左扩容的方法
- 2024-08-21【Linux】gnome桌面环境切换KDE Plasma
- 2024-08-19如何安装 VMware Tools (macOS, Linux, Windows)
- 2024-08-15Linux部署Scrapy教程:入门级指南