IPsec VPN综合实验

news2024/11/28 0:39:41

一、实验目的及拓扑

实验目的:

1、在总部通过防火墙建立双机热备

2、在分支通过路由器向外宣告防火墙NAT SERVER

3、在分支和总部自己建立站点到站点VPN并实现负载分担

二、基础配置

如拓扑所示配置相应端口地址

三、详细配置

(一)双机热备配置

#
 hrp enable
 hrp interface GigabitEthernet1/0/2 remote 10.0.0.13
 hrp mirror session enable
 hrp standby config enable
#

#
 hrp enable
 hrp interface GigabitEthernet1/0/2 remote 10.0.0.12
 hrp mirror session enable
 hrp standby config enable
#

(二)VPN配置

1、防火墙1和防火墙2总部站点配置

acl number 3000
 rule 5 permit ip source 10.1.0.0 0.0.255.255 destination 10.1.0.0 0.0.255.255
#
ipsec proposal LAN_SET
 esp authentication-algorithm sha1
 esp encryption-algorithm 3des
#
ike proposal default
 encryption-algorithm aes-256 aes-192 aes-128
 dh group14
 authentication-algorithm sha2-512 sha2-384 sha2-256
 authentication-method pre-share
 integrity-algorithm hmac-sha2-256
 prf hmac-sha2-256
ike proposal 10
 encryption-algorithm 3des
 dh group2
 authentication-algorithm sha1
 authentication-method pre-share
 integrity-algorithm hmac-sha2-256
 prf hmac-sha2-256
#
ike peer FW3
 pre-shared-key HUAWEI
 ike-proposal 10
 remote-address 155.1.12.14
#
ipsec policy LAN_MAP 10 isakmp
 security acl 3000
 ike-peer FW3
 proposal LAN_SET
 sa trigger-mode auto
#
#
interface Vlanif121
 ip address 155.1.121.12 255.255.255.0
 ipsec policy LAN_MAP
#

#
interface Vlanif131
 ip address 155.1.131.13 255.255.255.0
 ipsec policy LAN_MAP alone
#

调整安全策略

HRP_M[FW1-policy-security]dis th
2024-08-06 02:50:25.360 
#
security-policy
 default action permit
 rule name IN_TO_OUT
  source-zone trust
  destination-zone untrust
  source-address 10.1.0.0 mask 255.255.0.0
  action permit
 rule name OUT_TO_IN
  source-zone untrust
  destination-zone trust
  destination-address 10.1.100.100 mask 255.255.255.255
  service protocol tcp destination-port 80
  action permit
 rule name FOR_VPN
  source-zone untrust
  destination-zone trust
  source-address 10.1.0.0 mask 255.255.0.0
  destination-address 10.1.0.0 mask 255.255.0.0
  action permit
 rule name OUT_TO_LOCAL
  source-zone untrust
  destination-zone local
  service protocol udp destination-port 4500
  service protocol udp destination-port 500
  action permit

#

2、防火墙3分支站点配置

#
acl number 3000
 rule 5 permit ip source 10.1.0.0 0.0.255.255 destination 10.1.0.0 0.0.255.255
#
ipsec proposal LAN_SET
 esp authentication-algorithm sha1
 esp encryption-algorithm 3des
#
ike proposal 10
 encryption-algorithm 3des
 dh group2
 authentication-algorithm sha1
 authentication-method pre-share
 integrity-algorithm hmac-sha2-256
 prf hmac-sha2-256
#
ike peer FW1
 pre-shared-key HUAWEI
 ike-proposal 10
 remote-address 155.1.121.12
ike peer FW2
 pre-shared-key HUAWEI
 ike-proposal 10
 remote-address 155.1.131.13
#
ipsec policy LAN_MAP1 10 isakmp
 security acl 3000
 ike-peer FW1
 proposal LAN_SET
 sa trigger-mode auto
ipsec policy LAN_MAP2 10 isakmp
 security acl 3000
 ike-peer FW2
 proposal LAN_SET
 sa trigger-mode auto
#

配置隧道并将隧道加入DMZ区域

[FW3-Tunnel1]dis th
#
interface Tunnel1
 ip address unnumbered interface GigabitEthernet1/0/0
 tunnel-protocol ipsec
 source GigabitEthernet1/0/0
 destination 155.1.121.12
 ipsec policy LAN_MAP1
#

[FW3-Tunnel2]dis th
#
interface Tunnel2
 ip address unnumbered interface GigabitEthernet1/0/0
 tunnel-protocol ipsec
 source GigabitEthernet1/0/0
 destination 155.1.131.13
 ipsec policy LAN_MAP2
#

[FW3]dis zone 
local
 priority is 100
 interface of the zone is (0):
#
trust
 priority is 85
 interface of the zone is (2):
    GigabitEthernet0/0/0
    GigabitEthernet1/0/1
#
untrust
 priority is 5
 interface of the zone is (1):
    GigabitEthernet1/0/0
#
dmz
 priority is 50
 interface of the zone is (2):
    Tunnel1
    Tunnel2
#

安全策略调整

[FW3-policy-security]dis th
2024-08-06 03:14:03.740 
#
security-policy
 rule name LOCAL_TO_ANY
  source-zone local
  action permit
 rule name OUT_TO_LOCAL
  source-zone untrust
  destination-zone local
  service protocol udp destination-port 4500
  service protocol udp destination-port 500
  action permit
 rule name DMZ_TO_IN
  source-zone dmz
  destination-zone trust
  source-address 10.1.0.0 mask 255.255.0.0
  destination-address 10.1.0.0 mask 255.255.0.0
  action permit
 rule name IN_TO_DMZ
  source-zone trust
  destination-zone dmz
  source-address 10.1.0.0 mask 255.255.0.0
  destination-address 10.1.0.0 mask 255.255.0.0
  action permit
#

调整路由

#
ip route-static 10.1.0.0 255.255.0.0 Tunnel1
ip route-static 10.1.0.0 255.255.0.0 Tunnel2
#

(三)在R2上使用NAT SERVER防火墙3地址

#
interface GigabitEthernet0/0/0
 ip address 155.1.12.2 255.255.255.0 
 nat server protocol udp global 155.1.12.14 500 inside 10.1.142.14 500
 nat server protocol udp global 155.1.12.14 4500 inside 10.1.142.14 4500
#

四、结果验证

[FW3]dis ike sa

IKE SA information :
 Conn-ID    Peer                                          VPN              Flag(
s)               Phase  RemoteType  RemoteID        
--------------------------------------------------------------------------------
----------------------------------------------------
 48         155.1.131.13:4500                                              RD|ST
|A               v2:2   IP          155.1.131.13    
 38         155.1.131.13:4500                                              RD|A 
                 v2:1   IP          155.1.131.13    
 50         155.1.121.12:4500                                              RD|ST
|A               v2:2   IP          155.1.121.12    
 49         155.1.121.12:4500                                              RD|ST
|A               v2:1   IP          155.1.121.12    

  Number of IKE SA : 4
--------------------------------------------------------------------------------
----------------------------------------------------

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/1985253.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

unity VR项目3DUI:人物头部旁“说话框”,功能:1.永远朝向相机 2.打字效果 3.UI不会被模型遮挡 4.切换位置 5.文字自动根据内容扩充

提示:文章有错误的地方,还望诸位大神不吝指教! 文章目录 前言一、UI搭建1.创建基节点2.创建Canvas3.添加永远看向相机代码4.创建UI背景,设置相关操作1.锚点设置2.添加组件:Vertical Layout Group、Content Size Fitter…

P-one新增火焰图-为性能测试开启新视野

随着软件业务流程的日益复杂,传统的性能测试方法已经难以满足对性能问题精准定位的需求。测试人员需要一种更加直观、全面的方式来分析软件在运行过程中的性能表现,以便快速准确地找到性能瓶颈并进行优化。因此,我们在性能测试平台P-One中加入…

几分钟教你实现一个酷炫的扫光效果

前言 话不多说,咱们先来看看本篇文章中我们实现的效果。 是不是发现这个效果非常的熟悉?没错,这经常能够在一些电商网站可以看到,那这究竟是怎么实现的呢?接下来由我来带领大家尝试做一个类似这样的效果出来。 实现…

浏览器采集黑屏 问题

chrome://flags/#use-angle Choose ANGLE graphics backend 选择OPENGL 然后重启浏览器 就可以了

美股市场波动与科技股动态

一、美股市场波动 周一,美股三大股指低开高走,但最终收盘时道指跌2.6%,纳指跌3.43%,标普跌3%。美国十年国债收益率涨0.053%,收报3.787%,恐慌指数VIX涨64.9%至38.57。现货黄金跌1.34%,报2409.42…

2024年有哪些好用的文件加密软件?十款常用加密软件推荐

在2024年,随着数据泄露和网络威胁的日益复杂,文件加密软件成为了保护敏感信息不可或缺的工具。无论是个人用户还是企业,选择合适的加密软件都是确保数据安全的重要一环。 1. 安秉加密软件 安秉加密软件专为企业设计,提供全面的信…

SpringBoot框架学习笔记(六):自定义转换器、内容协商 和 Thymeleaf

1 自定义转换器 1.1 基本介绍 (1)SpringBoot在响应客户端请求时,将提交的数据封装成对象时,使用了内置的转换器,一共提供了124个内置转换器,核心源码,在 GenericConverter 接口的内部类 Conve…

澳洲联储按兵不动,通胀阴霾难散

澳洲联储核心通胀率仍远高于目标水平,经济增长依然强劲,因此维持高利率是必要的。 鹰派立场坚定 澳洲联储的这一决定与全球其他央行的政策走向形成了鲜明对比。许多发达经济体的央行已经开始降息,以应对经济增长放缓的风险。然而&#xff0…

TapData 信创数据源 | 国产信创数据库 OceanBase 数据同步指南,加速国产化进程,推进自主创新建设

随着国家对自主可控的日益重视,目前在各个行业和区域中面临越来越多的国产化,采用有自主知识产权的国产数据库正在成为主流。长期以来,作为拥有纯国产自研背景的 TapData,自是非常重视对于更多国产信创数据库的数据连接器支持&…

WiFi模块无线通信交互,乐鑫ESP32物联网方案,启明云端乐鑫代理商

随着物联网(IoT)技术的飞速发展,我们正步入一个智能化、互联化的世界。在这一进程中,无线WiFi模块作为连接物理世界与数字世界的桥梁,扮演着至关重要的角色。 WiFi模块是一种基于WiFi协议的无线模块,它可以实现设备之间的无线通信…

ACM MM 2024 | 比SDXL和DALL-E·3更引人入胜!ReCorD:交互场景生成最新SOTA!

文章链接:https://arxiv.org/pdf/2407.17911 git链接:https://alberthkyhky.github.io/ReCorD/ 亮点直击: 引入了一种新颖的推理框架,将潜在扩散模型(LDM)与视觉语言模型(VLM)相结合…

私域成交的关键点

私域运营,私域团购,私域秒杀,私域发售

单张图像降噪Masked and Shuffled Blind Spot Denoising for Real-World Images

文章目录 Masked and Shuffled Blind Spot Denoising for Real-World Images1.噪声的空间相关性2.mask3.loss4.masking ratio 与 spatial correlation的关系5.空间噪声去相关6.Automated selection of the BSD masking ratio7.小结 Masked and Shuffled Blind Spot Denoising f…

深入 Dify 源码,洞察 Dify RAG 切片机制实现细节

背景介绍 最近测试时发现 Dify 的 RAG 分片效果一般,不管是使用之前 深入 Dify 源码,洞察 Dify RAG 核心机制 中有调研过的默认解析还是 Unstructured 解析。因此调研比较了 大量的开源框架 实现了特定格式的结构化解析方案,并与 Dify 现有解…

高通8255 Android Virtio Virtio-IIC 配置方法

目录 一:VirtIO和Passthrough的区别 方法一: passthrough 方法二:virtIO 二:配置逻辑 三:示例Virtio-I2C配置 Virtio-I2C框架 步骤一:QNX IIC资源配置 & 测试 配置 测试 步骤二:B…

干货整理: 什么软件能够监控电脑? 六大好用监控电脑软件抢手推荐

如何保障电脑的安全是许多企业用户关注的焦点。 除了常见的杀毒软件外,电脑监控软件也是一道重要的防线。 这些软件能够实时监控电脑的各项运行状况,及时发现并处理潜在的安全威胁,确保电脑的正常运行和用户数据的安全。 接下来&#xff0…

优思学院|防呆法的十大原理

防呆法(Poka-Yoke),又称防错法(Mistake-Proofing),是一种通过预防错误的发生来提高工作效率,也是精益管理、六西格玛中常用的管理工具。以下就是防呆法的十大原理: 1. 断根原理 断…

算法_链表专题---持续更新

文章目录 前言两数相加题目要求题目解析代码如下 两两交换链表中的结点题目要求题目解析代码如下 重排链表题目要求题目解析代码如下 合并K个升序链表题目要求题目解析 K个一组翻转链表题目要求题目解析代码如下 前言 本文将记录leetcode链表算法题解,包含题目有&a…

Why Memory Matters?(记忆力为何如此重要?)

What is memory? The general consensus is that memory is a multitude of cognitive systems which allow us to store information for certain periods of time so that we can learn from our past experiences and predict the future. 什么是记忆?人们普遍的共识是&am…

《PostgreSQL 数据库在国内的发展前景》

从DB-engines这张2024年8月的最新排名图上可以看出,PostgreSQL数据库的发展趋势还是非常好的,在国内,PostgreSQL数据库也展现出令人振奋的发展前景,非常明显的一种表现就是腾讯云、人大金仓、阿里云、华为等众多厂商都有基于Postg…