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

上海宝山网站建设培训免费注册公司

上海宝山网站建设培训,免费注册公司,出国做博士后网站,可以自己做视频网站吗实验拓扑 需求 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.hkea.cn/news/658666/

相关文章:

  • 微信怎么做网站推广百度网站优化培训
  • 网站开发支持多个币种电子技术培训机构
  • 移动网站设计与制作怎么找关键词
  • 国内移动端网站做的最好的厦门人才网597人才网
  • 建网站收费吗aso关键词覆盖优化
  • 西安的网站设计与制作首页微信视频号怎么推广引流
  • 顺义公司建站多少钱pc端百度
  • wordpress收费资源下载关键词优化的策略
  • 广州做网站建设的公司网站公司
  • 做网络平台的网站有哪些广州网站维护
  • 网页 代码怎么做网站东莞市民最新疫情
  • 电子商务网站设计中影响客户体验的元素有搜索引擎有哪些种类
  • 网站建设难点优化关键词技巧
  • 免费行情网站链接百度知道合伙人官网
  • 餐饮公司网站建设的特点大数据智能营销
  • 济南快速排名刷关键词排名seo软件
  • 系统做网站的地方百度推广登录后台登录入口
  • 集约化网站建设情况广告公司网站制作
  • 网站制作发票字节跳动广告代理商加盟
  • 义乌做网站武汉seo推广优化公司
  • 济宁哪家网站建设公司正规谷歌浏览器 免费下载
  • 有没有女的做任务的网站广东省新闻
  • seo长尾关键词优化如何做网站推广优化
  • 网站搭建服务合同seo排名赚
  • 东莞有什么比较好的网站公司苏州关键词排名系统
  • 做中国供应商免费网站有作用吗浙江网站推广运营
  • mysql8 wordpress百度推广优化是什么意思
  • 做装修广告网站好seo推广公司招商
  • 城市模拟建设游戏网站今天最新的新闻头条新闻
  • 手机网站自适应代码品牌网络营销策划方案