linux防火墙配置(基于yum仓的配置)详细步骤
目录
- 前言
- 1.首先确保yum仓的配置是否完好(CentOs6)
- 2.要求在centOs6中安装httpd和mod_ssl软件包
- 3.在CentOs6中启用httpd.service并使其开机自启
- 4.在web内容的开发者完成Web应用之前,使用Congratulation!来提供占位符页面
- 5.启用和启动firewalld服务
- 6.在CentOs6上的firewalld配置对所有未指定连接使用dmz区域
- 7.打开两台虚拟机,分别查看虚拟机地址
- 8.来自子网10.1.1.0/24网段的流量路由到work区域
- 9.重置
- 10.查看此时的source
- 11.work区域应打开Https需要的所有端口,并且对所有未加密的http流量进行过滤
- 12.在另一台虚拟机红帽6上查看yum仓是否完好
- 13.在红帽6中使用curl 来对服务器进行测试,测试https://10.1.1.211
- 14.网页测试
前言
【linux防火墙配置(基于yum仓的配置)详细步骤】此实验准备两台虚拟机便于调试,一台CentOs6,一台红帽6
1.首先确保yum仓的配置是否完好(CentOs6)
文章图片
2.要求在centOs6中安装httpd和mod_ssl软件包
[root@cento211 yum.repos.d]# yum -y install httpd mod_ssl
3.在CentOs6中启用httpd.service并使其开机自启
[root@cento211 ~]# systemctl enable httpd.service Created symlink from /etc/systemd/system/multi-user.target.wants/httpd.service to /usr/lib/systemd/system/httpd.service. [root@cento211 ~]# systemctl start httpd.service
4.在web内容的开发者完成Web应用之前,使用Congratulation!来提供占位符页面
[root@cento211 ~]# vim /var/www/html/index.html Congratulation!
查看应用web页面的编辑内容
[root@cento211 ~]# cat /var/www/html/index.html Congratulation!
5.启用和启动firewalld服务
[root@cento211 ~]# systemctl is-enabled firewalldenabled
6.在CentOs6上的firewalld配置对所有未指定连接使用dmz区域
(1).首先看Firewalld的默认区域
[root@cento211 ~]# firewall-cmd --get-default public (是默认的public区域)
(2).使用dmz区域
[root@cento211 ~]# firewall-cmd --set-default-zone=dmz success
(3).查看此时的默认区域
[root@cento211 ~]# firewall-cmd --get-default dmz
7.打开两台虚拟机,分别查看虚拟机地址
文章图片
8.来自子网10.1.1.0/24网段的流量路由到work区域
[root@cento211 ~]# firewall-cmd --permanent --add-source=10.1.1.0/24 --zone=work success
9.重置
[root@cento211 ~]# firewall-cmd --reload success
10.查看此时的source
[root@cento211 ~]# firewall-cmd --list-all --zone=work work (active)target: defaulticmp-block-inversion: nointerfaces: sources: 10.1.1.0/24 (这个就是我们配置的地址)services: dhcpv6-client sshports: protocols: masquerade: noforward-ports: source-ports: icmp-blocks: rich rules:
11.work区域应打开Https需要的所有端口,并且对所有未加密的http流量进行过滤
(1).首先打开Https服务
[root@cento211 ~]# firewall-cmd --permanent --add-service=https --zone work success
(2).重置
[root@cento211 ~]# firewall-cmd --reload success
(3).查看此服务被启用
文章图片
12.在另一台虚拟机红帽6上查看yum仓是否完好
文章图片
13.在红帽6中使用curl 来对服务器进行测试,测试https://10.1.1.211
[root@centos6-212~]# curl -k https://10.1.1.211Congratulation!
14.网页测试
文章图片
到此这篇关于linux防火墙配置(基于yum仓的配置)详细步骤的文章就介绍到这了,更多相关linux防火墙配置内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
推荐阅读
- vue-cli|vue-cli 3.x vue.config.js 配置
- Linux下面如何查看tomcat已经使用多少线程
- Beego打包部署到Linux
- 从战略性的角度可以配置股票
- Linux|109 个实用 shell 脚本
- linux定时任务contab
- 缓存有关的配置和属性
- 芯灵思SinlinxA33开发板Linux内核定时器编程
- Spring|Spring Boot 自动配置的原理、核心注解以及利用自动配置实现了自定义 Starter 组件
- Vagrant|Vagrant (三) - 网络配置