怎么关闭linux服务器防火墙
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了怎么关闭linux服务器防火墙相关的知识,希望对你有一定的参考价值。
1、查看防火墙状态 /etc/init.d/iptables/status。
2、关闭防火墙:/etc/init.d/iptables/stop(这是临时关闭,关闭的是当前运行的防火墙,重启之后防火墙又会启动,因为它是开机自启动的)。
3、查看是否关闭成功。
4、改为开机不启动:chkconfig iptables off 。
5、再次查看开机启动状态,检验是否配置成功。
6、重启电脑,查看防火墙启动状态 。
参考技术A 1) 重启后生效 开启: chkconfig iptables on 关闭: chkconfig iptables off 2) 即时生效,重启后失效 开启: service iptables start 关闭: service iptables stop 需要说明的是对于Linux下的其它服务都可以用以上命令执行开启和关闭操作。 在开启了防火墙时,做如下设置,开启相关端口, 修改/etc/sysconfig/iptables 文件,添加以下内容: -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 80 -j ACCEPT -A RH-Firewall-1-INPUT -m state --state NEW -m tcp -p tcp --dport 22 -j ACCEPT 参考技术B Linux中的防火墙有多种,一般指的iptables。1. Linux防火墙(Iptables)重启系统生效
1
2
开启: chkconfig iptables on
关闭: chkconfig iptables off
2.Linux防火墙(Iptables) 即时生效,重启后失效
1
2
开启: service iptables start
关闭: service iptables stop
3.其它linux防火墙,请自行参考说明文档。一般对于Linux下的服务都可以用以上命令执行开启和关闭操作,而防火墙通常都以服务形式运行,因此也算是一个通用的方法。 参考技术C 开始-设置-控制面板-管理工具-服务 有个Application Layer gateway service 的服务 停止它,将启动类型设为禁用 参考技术D 电视新闻读谅石板戳烦
在 Linux 中为防火墙日志配置特定的日志文件 [关闭]
【中文标题】在 Linux 中为防火墙日志配置特定的日志文件 [关闭]【英文标题】:Configure specific log file for firewall logs in Linux [closed] 【发布时间】:2022-01-23 13:39:34 【问题描述】:我有一个接收 Stormshield 防火墙日志的 debian linux 服务器,我需要配置一个特定的日志文件,它们都将被写入其中
我想我必须解决 logrotate 但我不知道该怎么做。
日志如下所示:
92.168.2.253 → 10.22.5.58 Syslog 758 USER.WARNING: 1 2021-12-22T10:45:38+01:00 FW-STORMSHIELD asqd - - - \357\273\277id=firewall time="2021-12-22 10:45:38" fw="FW-STORMSHIELD" tz=+0100 startime="2021-12-22 10:45:35" pri=4 confid=01 slotlevel=2 ruleid=56 rulename="17b8311aa81_10e" srcif="Ethernet5" srcifname="DMZ-OPEN***" ipproto=tcp dstif="Ethernet0" dstifname="internet" proto=ssl src=192.168.13.153 srcport=64722 srcportname=port-tcp-sup srcname=P-WINSAV-007-alegal srcmac=00:0c:22:12:fd:82 dst=145.240.201.174 dstport=443 dstportname=https dstname=drive.google.com dstcontinent="na" dstcountry="us" modsrc=96.35.166.98 modsrcport=27922 ipv=4 action=block msg="ChangeCipherSpec trop t\303\264t" class=protocol classification=0 alarmid=312 target=dst repeat=2 l
你有什么想法吗?
感谢您的宝贵时间。
【问题讨论】:
您的问题与编程无关。 Unix 和 Linux 堆栈交换(我们的姊妹站点之一,右上角图标上的链接)可能更相关。注意:答案取决于您使用的系统日志程序。可能您正在使用 rsyslog(因此请检查 /etc/rsyslog* 文件(或名称中带有syslog
的其他文件)
【参考方案1】:
查看此guide 以在stormshield 上启用系统日志。 启用后,由 stromshield 生成的日志消息应该“自动”写入 syslog 主 Q,它们将从那里(可能)被记录到 /var/log/syslog。
【讨论】:
以上是关于怎么关闭linux服务器防火墙的主要内容,如果未能解决你的问题,请参考以下文章
linux怎么关闭iptables linux如何关闭防火墙