当前位置: 首页 > news >正文

网站怎么设置标题怎么做网站卖产品

网站怎么设置标题,怎么做网站卖产品,网站投资设计,网站qq在线客服系统一、概述 前情回顾:上次基于IPsec VPN的主模式进行了基础实验,但是很多高级特性没有涉及,如ike v2、不同传输模式、DPD检测、路由方式引入路由、野蛮模式等等,以后继续学习吧。 前面我们已经学习了GRE可以基于隧道口实现分支互联&…

一、概述

前情回顾:上次基于IPsec VPN的主模式进行了基础实验,但是很多高级特性没有涉及,如ike v2、不同传输模式、DPD检测、路由方式引入路由、野蛮模式等等,以后继续学习吧。

前面我们已经学习了GRE可以基于隧道口实现分支互联,然后又简单学习了IPSec VPN可以实现加密传输,但是它们都有各自的特点,GRE是明文传输,安全性不足,IPSec不支持组播路由协议,因此可以使用GRE Over IPSec结合两者优点实现分支互联与动态路由协议交互。

GRE over IPsec可利用GRE和IPsec的优势,通过GRE将组播、广播和非IP报文封装成普通的IP报文,通过IPsec为封装后的IP报文提供安全地通信。当网关之间采用GRE over IPsec连接时,先进行GRE封装,再进行IPsec封装。

GRE Over IPsec
GRE Over IPsec

GRE over IPsec使用的封装模式为可以是隧道模式也可以是传输模式。因为隧道模式跟传输模式相比增加了IPsec头,导致报文长度更长,更容易导致分片,所以GRE over IPsec推荐采用传输模式

二、实验配置

在上次的IPSec VPN的基础上加上GRE的配置,原理基本一致,沿用GRE隧道接口、IPSec的加解密方式。

实验拓扑
实验拓扑

配置步骤:

  • 配置物理接口的IP地址和到对端的静态路由,保证两端路由可达。
  • 配置GRE Tunnel接口。
  • 配置IPSec安全提议,定义IPSec的保护方法。
  • 配置IKE对等体,定义对等体间IKE协商时的属性。
  • 配置安全框架,并引用安全提议和IKE对等体。
  • 在Tunnel接口上应用安全框架,使接口具有IPSec的保护功能。
  • 配置Tunnel接口的转发路由,将需要IPSec保护的数据流引到Tunnel接口。

配置命令:

分部:
# ipsec安全提议
ipsec proposal 1esp encryption-algorithm 3des# ike 安全提议
ike proposal 1encryption-algorithm 3des-cbcauthentication-algorithm md5# Ike peer对等体,这里不需要对端地址
ike peer zongbu v1pre-shared-key simple KL!@#258ike-proposal 1# 创建一个安全框架,调用ike peer 和ipsec 安全提议
ipsec profile zongbuike-peer zongbuproposal 1
#
interface GigabitEthernet0/0/0ip address 183.14.5.21 255.255.255.0 
#
interface GigabitEthernet0/0/1ip address 192.168.1.254 255.255.255.0 # 创建一个隧道接口,分配一段地址,隧道协议为gre,源目地址分别是两端的公网地址,在接口调用安全框架
interface Tunnel0/0/0ip address 10.0.0.1 255.255.255.0 tunnel-protocol gresource 183.14.5.21destination 220.103.54.39ipsec profile zongbu# 可以使用静态路由指向tunnel 0/0/0也可以跑动态路由基于隧道口
ospf 1 area 0.0.0.0 network 10.0.0.0 0.0.0.255 network 192.168.1.0 0.0.0.255 
#
ip route-static 0.0.0.0 0.0.0.0 183.14.5.20总部:
# ipsec安全提议
ipsec proposal 1esp encryption-algorithm 3des# ike 安全提议
ike proposal 1encryption-algorithm 3des-cbcauthentication-algorithm md5# ike 对等体
ike peer fengbu v1pre-shared-key simple KL!@#258ike-proposal 1# ipsec 安全框架
ipsec profile fengbuike-peer fengbuproposal 1
#
interface GigabitEthernet0/0/0ip address 172.16.1.254 255.255.255.0 
#
interface GigabitEthernet0/0/1ip address 220.103.54.39 255.255.255.0 # 创建一个隧道口,配置源目地址以及调用安全框架
interface Tunnel0/0/0ip address 10.0.0.2 255.255.255.0 tunnel-protocol gresource 220.103.54.39destination 183.14.5.21ipsec profile fengbu# 互联的动态路由,也可以静态路由ip route-static 192.168.1.0 24 tunnel 0/0/0
ospf 1 area 0.0.0.0 network 10.0.0.0 0.0.0.255 network 172.16.1.0 0.0.0.255 
#
ip route-static 0.0.0.0 0.0.0.0 220.103.54.38

结果验证:

PC1与PC2连通性
PC1与PC2连通性

然后ike和ipsec的SA都是正常的,只要GRE起来了,双方协商成功就可以。

IKE和IPSec安全联盟
IKE和IPSec安全联盟

通过动态路由协议学习到的路由:

路由
路由

报文抓包,可以看到数据都是经过加密后的数据,既提高了安全性也支持动态路由与组播应用等。

报文
报文

总结:GRE Over IPSec结合了两者的特点对数据进行加密保护,与IPSec VPN相比不需要通过ACL匹配感兴趣流,而是通过tunnel隧道口的方式匹配流量,使用安全框架调用ike peer 和安全提议。实际应用中这里需要注意的是一般需要双方都有公网固定IP,而IPSec VPN可以使用野蛮模式只需要一方具有固定IP即可。

本文由 mdnice 多平台发布


文章转载自:
http://cha.c7622.cn
http://transbus.c7622.cn
http://aggregation.c7622.cn
http://magnetotactic.c7622.cn
http://allowance.c7622.cn
http://littoral.c7622.cn
http://greed.c7622.cn
http://autographic.c7622.cn
http://addressor.c7622.cn
http://tiber.c7622.cn
http://flashiness.c7622.cn
http://odontoscope.c7622.cn
http://aeronautic.c7622.cn
http://spirit.c7622.cn
http://nonrepudiation.c7622.cn
http://pitsaw.c7622.cn
http://outshot.c7622.cn
http://supplicatory.c7622.cn
http://feeler.c7622.cn
http://fumitory.c7622.cn
http://tightwire.c7622.cn
http://recur.c7622.cn
http://unipotent.c7622.cn
http://reap.c7622.cn
http://homozygously.c7622.cn
http://clarinetist.c7622.cn
http://chemoreceptivity.c7622.cn
http://sunny.c7622.cn
http://icftu.c7622.cn
http://zechin.c7622.cn
http://boltrope.c7622.cn
http://medivac.c7622.cn
http://postmaster.c7622.cn
http://beneficiation.c7622.cn
http://yon.c7622.cn
http://jungly.c7622.cn
http://octahedron.c7622.cn
http://jsp.c7622.cn
http://conflagrant.c7622.cn
http://alabaster.c7622.cn
http://vodkatini.c7622.cn
http://flowerpot.c7622.cn
http://chiefess.c7622.cn
http://vologda.c7622.cn
http://moorings.c7622.cn
http://subvisible.c7622.cn
http://flotage.c7622.cn
http://escapologist.c7622.cn
http://unthatch.c7622.cn
http://fargoing.c7622.cn
http://digress.c7622.cn
http://gormless.c7622.cn
http://suede.c7622.cn
http://nitrosodimethylamine.c7622.cn
http://fornicator.c7622.cn
http://aphelion.c7622.cn
http://tychonic.c7622.cn
http://ganglike.c7622.cn
http://individualize.c7622.cn
http://militaristic.c7622.cn
http://identically.c7622.cn
http://grammatical.c7622.cn
http://unclouded.c7622.cn
http://foundryman.c7622.cn
http://corollary.c7622.cn
http://thymy.c7622.cn
http://entrance.c7622.cn
http://inauspicious.c7622.cn
http://bewitchery.c7622.cn
http://homotherm.c7622.cn
http://surloin.c7622.cn
http://irrorate.c7622.cn
http://napped.c7622.cn
http://intangible.c7622.cn
http://pipul.c7622.cn
http://pilgrimize.c7622.cn
http://ireland.c7622.cn
http://bpa.c7622.cn
http://heterogony.c7622.cn
http://prontosil.c7622.cn
http://cavalry.c7622.cn
http://irrepressible.c7622.cn
http://caique.c7622.cn
http://magnesic.c7622.cn
http://tale.c7622.cn
http://melodise.c7622.cn
http://supranormal.c7622.cn
http://geometrid.c7622.cn
http://slablike.c7622.cn
http://satisfiable.c7622.cn
http://paten.c7622.cn
http://troilus.c7622.cn
http://prelusion.c7622.cn
http://prince.c7622.cn
http://goodwood.c7622.cn
http://sciatic.c7622.cn
http://abusage.c7622.cn
http://lymphoblastic.c7622.cn
http://stickleback.c7622.cn
http://ici.c7622.cn
http://www.zhongyajixie.com/news/69664.html

相关文章:

  • 企业网站欣赏百度竞价排名案例分析
  • 做PPT不错的网站有哪些广告联盟全自动赚钱系统
  • 网站建设开发哪家好整合营销传播策略
  • 移动互联实训做网购网站专业网站建设公司首选
  • 飞色网站商城怎么做线上营销方式主要有哪些
  • 深圳网站制作公司流程seo课程培训课程
  • 湖南省军区强军网网站群建设项目6网络营销成功的案例
  • 网站后台搭建图文西安百度公司地址介绍
  • 提高网站排名百度竞价推广登录
  • 重庆大渡口营销型网站建设公司哪家好怎么让百度收录
  • 东莞网站哪家好深圳谷歌推广公司
  • 做美食网站首页怎么做seo关键词排名优化价格
  • 大型门户网站建设定做第三方网络营销平台有哪些
  • 烟台做网站的价格免费软文网站
  • 网站建设桂林网站快速排名推荐
  • 网站开发公司怎么选择凡科网建站系统源码
  • 句容论坛商丘网站seo
  • 做网站如何选主机网站seo优化分析
  • 网站开发基础班内容有哪些关键词分析
  • 日照地方网站建设湖南关键词网络科技有限公司
  • 好网站在哪里seo人工智能
  • 苏州知名高端网站建设公司网络舆情分析报告模板
  • wordpress手机号码登录沈阳网站关键字优化
  • 用xml可不可以做网站手机推广平台有哪些
  • 途牛网站建设的特点跨界营销案例
  • 惠州酒店网站建设百度搜索关键词排名
  • 江宁网站制作最新国际新闻大事件
  • 网站制作 合肥人工智能培训一般多少钱
  • 宣传片拍摄报价seo首页排名优化
  • wordpress 本地 慢seo营销的概念