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

东营网站建设价钱表今天热点新闻事件

东营网站建设价钱表,今天热点新闻事件,视频网站seo怎么做,中文网站域名注册实验拓扑 需求 1 R6为ISP只能配置IP地址,R1-R5的环回为私有网段 2 R1/4/5为全连的MGRE结构,R1/2/3为星型的拓扑结构,R1为中心站点 3 所有私有网段可以互相通讯,私有网段使用OSPF完成。 IP规划 配置IP R1 # interface GigabitEt…

实验拓扑

请添加图片描述

需求

1 R6为ISP只能配置IP地址,R1-R5的环回为私有网段
2 R1/4/5为全连的MGRE结构,R1/2/3为星型的拓扑结构,R1为中心站点
3 所有私有网段可以互相通讯,私有网段使用OSPF完成。

IP规划
在这里插入图片描述

配置IP

R1

#
interface GigabitEthernet0/0/0ip address 16.1.1.1 255.255.255.0 
#
interface GigabitEthernet0/0/1ip address 61.1.1.1 255.255.255.0 
#
interface LoopBack0ip address 192.168.1.1 255.255.255.0 
#

R2

#
interface GigabitEthernet0/0/0ip address 26.1.1.1 255.255.255.0 
#
interface LoopBack0ip address 192.168.2.1 255.255.255.0 
#

R3

#
interface GigabitEthernet0/0/0ip address 36.1.1.1 255.255.255.0 
#
interface LoopBack0ip address 192.168.3.1 255.255.255.0 
#

R4

#
interface GigabitEthernet0/0/0ip address 46.1.1.1 255.255.255.0 
#
interface LoopBack0ip address 192.168.4.1 255.255.255.0 
#

R5

#
interface GigabitEthernet0/0/0ip address 56.1.1.1 255.255.255.0 
#
interface LoopBack0ip address 192.168.5.1 255.255.255.0 
#

R6

#
interface GigabitEthernet0/0/0ip address 16.1.1.2 255.255.255.0 
#
interface GigabitEthernet0/0/1ip address 61.1.1.2 255.255.255.0 
#
interface GigabitEthernet0/0/2ip address 56.1.1.2 255.255.255.0 
#
interface GigabitEthernet2/0/0ip address 26.1.1.2 255.255.255.0 
#
interface GigabitEthernet3/0/0ip address 36.1.1.2 255.255.255.0 
#
interface GigabitEthernet4/0/0ip address 46.1.1.2 255.255.255.0 
#

配置缺省路由

R1

#
ip route-static 0.0.0.0 0.0.0.0 16.1.1.2
ip route-static 0.0.0.0 0.0.0.0 61.1.1.2
#

R2

#
ip route-static 0.0.0.0 0.0.0.0 26.1.1.2
#

R3

#
ip route-static 0.0.0.0 0.0.0.0 36.1.1.2
#

R4

#
ip route-static 0.0.0.0 0.0.0.0 46.1.1.2
#

R5

#
ip route-static 0.0.0.0 0.0.0.0 56.1.1.2
#

配置完成后测试各直连路由连通性

R1-R2R3的GRE环境配置

R1

#
interface Tunnel0/0/0ip address 10.1.1.1 255.255.255.0 tunnel-protocol gre p2mpsource 16.1.1.1nhrp entry multicast dynamicnhrp network-id 100
#

R2

#
interface Tunnel0/0/0ip address 10.1.1.2 255.255.255.0 tunnel-protocol gre p2mpsource GigabitEthernet0/0/0ospf dr-priority 0nhrp network-id 100nhrp entry 10.1.1.1 16.1.1.1 register
#

R3

#
interface Tunnel0/0/0ip address 10.1.1.3 255.255.255.0 tunnel-protocol gre p2mpsource GigabitEthernet0/0/0ospf dr-priority 0nhrp network-id 100nhrp entry 10.1.1.1 16.1.1.1 register
#

配置完成后测试tunnel隧道的连通性

R1-R4R5的MGRE环境配置

R1

#
interface Tunnel0/0/1ip address 10.1.2.1 255.255.255.0 tunnel-protocol gre p2mpsource 61.1.1.1nhrp entry multicast dynamic
#

R4

#
interface Tunnel0/0/0ip address 10.1.2.2 255.255.255.0 tunnel-protocol gre p2mpsource 46.1.1.1nhrp entry 10.1.2.1 61.1.1.1 registernhrp entry 10.1.2.3 56.1.1.1 register
#

R5

#
interface Tunnel0/0/0ip address 10.1.2.3 255.255.255.0 tunnel-protocol gre p2mpsource 56.1.1.1nhrp entry multicast dynamicnhrp entry 10.1.2.1 61.1.1.1 register
#

配置完成后测试tunnel隧道的连通性

配置OSPF

R1的配置

#
ospf 1 router-id 1.1.1.1 area 0.0.0.0 network 10.1.1.1 0.0.0.0 network 10.1.2.1 0.0.0.0 network 192.168.1.1 0.0.0.0 
##
interface Tunnel0/0/0ospf network-type broadcast#

GRE环境下的OSPF

在这里插入图片描述

R2

#
ospf 1 router-id 2.2.2.2 area 0.0.0.0 network 10.1.1.2 0.0.0.0 network 192.168.2.1 0.0.0.0 
##
interface Tunnel0/0/0ospf network-type broadcastospf dr-priority 0#

R3

#
ospf 1 router-id 3.3.3.3 area 0.0.0.0 network 10.1.1.3 0.0.0.0 network 192.168.3.1 0.0.0.0 
##
interface Tunnel0/0/0ospf network-type broadcastospf dr-priority 0#

MGRE环境下的OSPF

在这里插入图片描述

R4

#
ospf 1 router-id 4.4.4.4 area 0.0.0.0 network 10.1.2.2 0.0.0.0 network 192.168.4.1 0.0.0.0 
#
#
interface Tunnel0/0/0ospf network-type broadcast#

R5

#
ospf 1 router-id 5.5.5.5 area 0.0.0.0 network 10.1.2.3 0.0.0.0 network 192.168.5.1 0.0.0.0 
#
#
interface Tunnel0/0/0ospf network-type broadcast#
http://www.ahscrl.com/news/13072.html

相关文章:

  • 网站改版需要重新备案吗软文撰写
  • 怎样做网站域名搜索引擎营销的案例
  • 塘厦网站建设百度查询关键词排名工具
  • 专业手机网站怎么做域名信息查询系统
  • 想做网站怎么跟做网站的公司谈判seo如何优化一个网站
  • 域名的正确书写格式关键词seo是什么
  • 怎样在手机上做动漫视频网站企业管理软件
  • 自己做文学网站赚钱吗岳阳网站界面设计
  • 博客下载流程优化
  • 海口网站制作价格技术培训平台
  • 佛山建设小学网站谷歌seo网站运营
  • 政府网站建设技术方案搜索引擎营销的实现方法
  • 一个人建网站关键词优化搜索排名
  • 灰色网站建设新产品的推广销售方法
  • 大红门桥做网站商品营销推广的方法有哪些
  • 织梦做双语网站谷歌搜索引擎大全
  • 广州网站建设方案网站seo关键词优化排名
  • 一个公司备案多个网站要注意吸引人的软文标题
  • 网站没备案怎么做淘宝客苏州seo网络推广
  • 在建设部网站网推技巧
  • 学平面设计网站seo站长工具查询
  • 电影网站权重怎么做文娱热搜榜
  • 惠州市企业网站seo点击软件网页在线代理翻墙
  • 2018年做网站郑州粒米seo外包
  • 云图书馆平台网站建设百度提交入口的网址
  • 做亚马逊网站费用吗seo怎样优化网站
  • ps外包网站西安seo学院
  • 美摄短视频sdk快照关键词优化
  • 网站语言是什么教你如何快速建站
  • 房和城乡建设委员会网站外贸seo优化