一、iptables防火墙1、基本操作 # 查看防火墙状态 service iptables status # 停止防火墙 service iptables stop # 启动防火墙 service iptables start # 重启防火墙 service iptables restart # ...
分类:
系统相关 时间:
2020-08-05 00:08:24
阅读次数:
88
在使用注册中心Zookeeper时注意关闭linux防火墙,windows防火墙。 1.关闭linux防火墙 (1)停止防火墙服务:systemctl stop firewalld.service (2)禁止firewall开机启动:systemctl disable firewalld.servi ...
分类:
其他好文 时间:
2020-06-23 21:02:27
阅读次数:
52
一、iptables防火墙1、基本操作————————————————————————————————# 查看防火墙状态service iptables status ————————————————————————————————# 停止防火墙service iptables stop ————— ...
分类:
系统相关 时间:
2020-06-07 21:03:04
阅读次数:
113
一、回顾 1、iptables/netfilter a、netfilter:raw,mangle,nat,filter PREROUTING --> INPUT PREROUTING --> FORWARD --> POSTROUTING OUTPUT --> POSTROUTING b、filte ...
分类:
系统相关 时间:
2020-06-06 11:21:27
阅读次数:
79
一、iptables扩展模块(续) 1、state a、The "state" extension is a subset of the "conntrack" module."state" allows access to the connection tracking state for thi ...
分类:
系统相关 时间:
2020-06-04 18:06:53
阅读次数:
85
linux防火墙的相关命令 一、iptables防火墙(需要安装防火墙sudo apt-get install firewalld命令查看插件) 1、基本操作 # 查看防火墙状态 service iptables status # 停止防火墙 service iptables stop # 启动防火 ...
分类:
系统相关 时间:
2020-05-31 13:08:40
阅读次数:
56
一、iptables/netfilter 1、规则 a、组成部分:根据规则匹配条件来尝试匹配报文,一旦匹配成功,就由规则定义的处理动作做出处理 (1)、匹配条件 1)、基本匹配条件:内建 2)、扩展匹配条件:扩展模块定义 (2)、处理动作 1)、基本处理动作:内建 2)、扩展处理动作:由扩展模块定义 ...
分类:
系统相关 时间:
2020-05-30 12:48:50
阅读次数:
74
环境:VMware、CentOS8 从centos7开始使用systemctl.firewalld来管理服务和程序,包括了service和chkconfig。 防火墙状态:systemctl status firewalld.service Active: inactive (dead)/activ ...
分类:
系统相关 时间:
2020-05-22 19:43:38
阅读次数:
88
前言在早期的Linux系统中,默认使用的是iptables配置防火墙。尽管新型的firewalld防火墙已经被投入使用多年,但是大量的企业在生产环境中依然出于各种原因而继续使用iptables。考虑到iptables在当前生产环境中还具有顽强的生命力,我觉得还是有必要再好好地讲解一下这项技术。iptables简介1、什么是iptables?iptables是Linux防火墙工作在用户空间的管理工具
分类:
其他好文 时间:
2020-05-13 12:33:08
阅读次数:
62
SELinux SELinux(Security-Enhanced Linux) 是美国国家安全局(NSA)对于强制访问控制的实现,这个功能管理员又爱又恨,大多数生产环境也是关闭的做法,安全手段使用其他方法。 大多数ssh连接不上虚拟机,都是因为防火墙和selinux阻挡了 获取selinux状态 ...
分类:
系统相关 时间:
2020-05-04 21:39:56
阅读次数:
114