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

加强和改进网站建设建设方案今日头条重大消息

加强和改进网站建设建设方案,今日头条重大消息,web设计是什么意思,饶平网站建设Packet Tracer - 配置 RIPv2 目标 第 1 部分:配置 RIPv2 第 2 部分:验证配置 拓扑图 背景信息 尽管在现代网络中极少使用 RIP,但是作为了解基本网络路由的基础则十分有用。 在本活动中,您将使用适当的网络语句和被动接口配置…

Packet Tracer - 配置 RIPv2

目标

第 1 部分:配置 RIPv2

第 2 部分:验证配置

拓扑图

 

背景信息

尽管在现代网络中极少使用 RIP,但是作为了解基本网络路由的基础则十分有用。 在本活动中,您将使用适当的网络语句和被动接口配置默认路由(RIP 版本 2),并验证全连接。

第 1 部分:    配置 RIPv2

步骤 1:    在 R1 上配置 RIPv2。

  1.      使用适当的命令在 R1 上创建默认路由,以使所有互联网流量通过 S0/0/1 离开网络。
  • R1(config)# ip route 0.0.0.0 0.0.0.0 s0/0/1
  1.     进入 RIP 协议配置模式。
  • R1(config)# router rip
  1.      使用 RIP 协议的第 2 版并禁用网络汇总。
  • R1(config-router)# version 2
  • R1(config-router)# no auto-summary
  1.     为连接到 R1 的网络配置 RIP。
  • R1(config-router)# network 192.168.1.0
  • R1(config-router)# network 192.168.2.0
  1.      配置不含路由器的 LAN 端口,这样端口就不会发出任何路由信息。
  • R1(config-router)# passive-interface gig 0/0
  1.      通过其他 RIP 路由器,通告步骤 1a 中配置的默认路由。
  • R1(config-router)# default-information originate
  1.     保存配置。

R1# write

步骤 2:    在 R2 上配置 RIPv2。

  1.      输入 RIP 协议配置模式。
  • R2(config)# router rip
  1.     使用 RIP 协议的第 2 版并禁用网络汇总。
  • R2(config-router)# version 2
  • R2(config-router)# no auto-summary
  1.      为直接连接到 R2 的网络配置 RIP。
  • R2(config-router)# network 192.168.2.0
  • R2(config-router)# network 192.168.3.0
  • R2(config-router)# network 192.168.4.0
  1.     配置不包含路由器的接口,以使其不发送路由信息。
  • R2(config-router)# network 192.168.2.0
  • R2(config-router)# network 192.168.3.0
  • R2(config-router)# network 192.168.4.0
  1.      保存配置。

R2# write

步骤 3:    在 R3 上配置 RIPv2

在 R3 上重复执行步骤 2。

R3(config)# router rip
R3(config-router)# version 2
R3(config-router)# no auto-summary
R3(config-router)# network 192.168.4.0
R3(config-router)# network 192.168.5.0
R3(config-router)# passive-interface gig 0/0/0

R3(config-route)#end

R3#write

第 2 部分:    验证配置

步骤 1:     查看 R1、R2 和 R3 的路由表。

a.     使用适当的命令显示 R1 的路由表。 此时,路由表中会显示 RIP (R) 以及连接的路由 (C) 和本地 (L) 路由。 所有网络都有一个条目。 您还会看到列出了一个默认路由。

b.    查看 R2 和 R3 的路由表。 请注意,每个路由器都有所有 192.168.x.0 网络的完整列表和一个默认路由。

步骤 2:    检验与所有目的地的完全连接。

此时,每个设备都应能够 ping 网络内的每一个其他设备。 此外,所有设备都应能够 ping Web 服务器

实验步骤:

R1:

R1>enR1#conf tEnter configuration commands, one per line. End with CNTL/Z.R1(config)#ip route 0.0.0.0 0.0.0.0 s0/0/1%Default route without gateway, if not a point-to-point interface, may impact performanceR1(config)#router ripR1(config-router)#version 2R1(config-router)#no auto-summaryR1(config-router)#network 192.168.1.0R1(config-router)#network 192.168.2.0R1(config-router)#passive-interface g0/0R1(config-router)#default-information originateR1(config-router)#end

R1#

%SYS-5-CONFIG_I: Configured from console by console

R1#wrBuilding configuration...[OK]

R1#

R2:

R2>enR2#conf tEnter configuration commands, one per line. End with CNTL/Z.R2(config)#router ripR2(config-router)#versiR2(config-router)#version 2R2(config-router)#no auR2(config-router)#no auto-summaryR2(config-router)#netwR2(config-router)#network 192.168.2.0R2(config-router)#network 192.168.3.0R2(config-router)#network 192.168.4.0R2(config-router)#pasR2(config-router)#passive-interface g0/0R2(config-router)#end

R2#

%SYS-5-CONFIG_I: Configured from console by console

R2#wrBuilding configuration...[OK]

R2#

R3:

R3>enR3#conf tEnter configuration commands, one per line. End with CNTL/Z.R3(config)#rouR3(config)#router ripR3(config-router)#version 2R3(config-router)#no auto-summaryR3(config-router)#network 192.168.4.0R3(config-router)#network 192.168.5.0R3(config-router)#passive-interface g0/0R3(config-router)#end

R3#

%SYS-5-CONFIG_I: Configured from console by console

R3#wrBuilding configuration...[OK]

R3#

实验链接:https://pan.baidu.com/s/1KxHELf9qWUMRq82Fge1nuA?pwd=3218

提取码:3218

--来自百度网盘超级会员V2的分享

http://www.jinmujx.cn/news/113552.html

相关文章:

  • 西宁网站策划公司广告代运营
  • 一级a做爰片免费网站国产附子seo教程
  • 做响应式网站对设计图的要求网络营销推广系统
  • 2016做网站还赚钱吗营销方式
  • 网站开发的设计与实现国际最新十大新闻事件
  • 网站seo优化分析报告北京十大最靠谱it培训机构
  • 淘宝上做网站权重网络推广产品要给多少钱
  • wordpress ico图标像素百度seo课程
  • wordpress公司网站网站查询备案信息
  • 武汉免费做网站游戏推广员好做吗
  • 廊坊网站制作推广成都网站seo设计
  • 湖南省建设信息网站个人免费自助建站网站
  • 手机网站建设推荐乐云seo做推广公司
  • 做网站用多大的画布网站宣传方法
  • frontpage可以制作网页吗整站优化全网营销
  • 天津做网站哪个公司好推广普通话活动方案
  • 品牌网站建设公司注册查询网站
  • 如何在国外建网站智能识别图片
  • 百度 模块网站软文代写发布网络
  • 潍坊网站建设网超网络营销的四种形式
  • 网站建设一年多少恰视频外链工具
  • 高端建站费用制作网站费用
  • 熊撑号怎么做网站推广百度统计
  • 浏览器看b站如何做友情链接
  • apache限制域名访问网站小程序生成平台系统
  • 静态网站是什么原因昆山优化外包
  • 光明乳业网站是谁做的如何给公司做网络推广
  • 沈阳企业建站模板北京网站优化培训
  • 网站制作机构网络项目推广平台
  • 安国手机网站设计大庆建站公司