Linux的防火墙概念

Posted 小学弟-

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux的防火墙概念相关的知识,希望对你有一定的参考价值。

#linux的防火墙概念
#因为如果你不关防火墙,很可能运行 django、nginxmysql出错
#防火墙可能会阻挡端口流量的 出口
#也会阻挡外来请求的 入口


#selinux iptables firewalld
1.关闭selinux
1.获取selinux状态
getenforce
2.临时关闭selinux,重启后又会生效
setenforce 0
3.永久关闭selinux,写入到selinux配置文件
vim /etc/selinux/config
SELINUX=disabled #更改为这个
4.重启后selinux永久关闭

 

 

2.iptables (软件防火墙)
1.查看防火墙规则
iptables -L
2.清空防火墙规则
iptables -F
3.关闭防火墙软件,这个服务永久关闭
systemctl stop firewalld

systemctl disable firewall 从开机自启中,移除这个防火请服务,永久关闭

以上是关于Linux的防火墙概念的主要内容,如果未能解决你的问题,请参考以下文章

Linux的防火墙概念

Linux防火墙iptables之概念篇

学习Linux须知1.0之Linux相关概念工具(yumvim)防火墙等

linux之网络安全

Linux自有服务+防火墙+计划任务

Linux下防火墙操作