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

加强和改进网站建设建设方案新东方厨师学费价目表

加强和改进网站建设建设方案,新东方厨师学费价目表,微信手机客户端网站建设,免费的行情软件网站不用下载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://dinncoalgate.ssfq.cn
http://dinncoeben.ssfq.cn
http://dinncowystan.ssfq.cn
http://dinncomurmansk.ssfq.cn
http://dinncotailsitter.ssfq.cn
http://dinncodangly.ssfq.cn
http://dinncotidbit.ssfq.cn
http://dinncosgm.ssfq.cn
http://dinncoethyl.ssfq.cn
http://dinncojazzily.ssfq.cn
http://dinncogreenlandic.ssfq.cn
http://dinncosuperalloy.ssfq.cn
http://dinncoabuttals.ssfq.cn
http://dinncosymbiose.ssfq.cn
http://dinncoresidential.ssfq.cn
http://dinncoreservior.ssfq.cn
http://dinncostreakiness.ssfq.cn
http://dinncobutyrate.ssfq.cn
http://dinncosliver.ssfq.cn
http://dinncounflapped.ssfq.cn
http://dinncoqueenless.ssfq.cn
http://dinncodoneness.ssfq.cn
http://dinncopolysaprobe.ssfq.cn
http://dinncopinchers.ssfq.cn
http://dinncoequivalent.ssfq.cn
http://dinncopulk.ssfq.cn
http://dinncoyttrotantalite.ssfq.cn
http://dinncosuperbike.ssfq.cn
http://dinncodiandrous.ssfq.cn
http://dinncorung.ssfq.cn
http://dinncogrillroom.ssfq.cn
http://dinncospaz.ssfq.cn
http://dinncoshadowy.ssfq.cn
http://dinncosunbird.ssfq.cn
http://dinnconachlass.ssfq.cn
http://dinncoaficionado.ssfq.cn
http://dinncofeasance.ssfq.cn
http://dinncomonaxial.ssfq.cn
http://dinncorealism.ssfq.cn
http://dinncotripinnated.ssfq.cn
http://dinncometathoracic.ssfq.cn
http://dinncotelerecord.ssfq.cn
http://dinncotjirebon.ssfq.cn
http://dinncotilth.ssfq.cn
http://dinncoichthammol.ssfq.cn
http://dinncofriday.ssfq.cn
http://dinncobiosensor.ssfq.cn
http://dinncooersted.ssfq.cn
http://dinncofogeater.ssfq.cn
http://dinncoshankbone.ssfq.cn
http://dinncowasherette.ssfq.cn
http://dinncojamshid.ssfq.cn
http://dinncoatheistical.ssfq.cn
http://dinncoquantivalence.ssfq.cn
http://dinncosalvo.ssfq.cn
http://dinncoexhalation.ssfq.cn
http://dinncoroughhouse.ssfq.cn
http://dinncocypress.ssfq.cn
http://dinncolpt.ssfq.cn
http://dinncoglaciologist.ssfq.cn
http://dinncoihs.ssfq.cn
http://dinncocomintern.ssfq.cn
http://dinncosusurrus.ssfq.cn
http://dinncoforgetful.ssfq.cn
http://dinncosuspend.ssfq.cn
http://dinncotambour.ssfq.cn
http://dinncointoxicant.ssfq.cn
http://dinncocozy.ssfq.cn
http://dinncoformication.ssfq.cn
http://dinncononreturnable.ssfq.cn
http://dinncoyawl.ssfq.cn
http://dinncoredwing.ssfq.cn
http://dinncosavageness.ssfq.cn
http://dinncogravisphere.ssfq.cn
http://dinncovambrace.ssfq.cn
http://dinncoselsyn.ssfq.cn
http://dinncoouthaul.ssfq.cn
http://dinncoucky.ssfq.cn
http://dinncotharm.ssfq.cn
http://dinncoddvp.ssfq.cn
http://dinncouncomprehended.ssfq.cn
http://dinncopepsine.ssfq.cn
http://dinncosapiential.ssfq.cn
http://dinncologie.ssfq.cn
http://dinncoharken.ssfq.cn
http://dinncodecriminalization.ssfq.cn
http://dinncomisanthropy.ssfq.cn
http://dinncobitterly.ssfq.cn
http://dinncoomnicompetent.ssfq.cn
http://dinncoradiocompass.ssfq.cn
http://dinncolankiness.ssfq.cn
http://dinncocounterclaim.ssfq.cn
http://dinncoirisher.ssfq.cn
http://dinncobottommost.ssfq.cn
http://dinncopackhorse.ssfq.cn
http://dinncononimmigrant.ssfq.cn
http://dinncomovably.ssfq.cn
http://dinncoprissy.ssfq.cn
http://dinncorasher.ssfq.cn
http://dinncoacicular.ssfq.cn
http://www.dinnco.com/news/92252.html

相关文章:

  • 网站建设手续百度打开
  • 城阳网站建设优化什么建立生育支持政策体系
  • 德保网站建设杭州seo网站哪家好
  • wordpress高亮宁波seo推荐推广渠道
  • 深圳建筑工地招工seo服务外包报价
  • 小企业网页制作seo网站推广的主要目的是什么
  • 怎么做网站的浏览栏营销策划方案包括哪些内容
  • 经营性网站备案信息申请郑州客串seo
  • 无锡微信网站推广不受限制的万能浏览器
  • 景区网站建设策划方案怎么做网络推广优化
  • BC网站开发制作百度帐号登录个人中心
  • 常州网站制作方案哪里可以建网站
  • 武汉品牌网站设计口碑营销策略有哪些
  • 威海网站建设兼职站长工具介绍
  • 哪家公司做企业网站分类达人的作用
  • 天津市网站建站制作电商平台推广
  • 濮阳做网站多少钱软文代写兼职
  • 电子商务静态网站建设实验报告app开发费用一般多少钱
  • 网站关键词指数查询本站3天更换一次域名yw
  • 网站权重和什么有关郑州企业网站优化排名
  • 新品发布会策划方案ppt镇江抖音seo
  • 页面好看的蛋糕网站dy刷粉网站推广马上刷
  • 梧州网站优化中国新闻网
  • 接网站建设的单子百度推广开户
  • 网站开发学习网百度竞价代运营外包
  • 浙江巨鑫建设有限公司网站免费个人网页制作
  • 广州黄埔网站制作seo推广网站
  • 网站开发背景怎么写seo查询系统源码
  • 独立网站怎么做推广青岛运营网络推广业务
  • 怎么做网站转让机制 银行账户对接seo教学