代考首页 | 代考价格 | 代考流程 | 证书查询 | 信誉评价 | 代考论坛 | 海外港台代考价格 | 题库报价
  思科CISCO | 微软MICROSOFT | 华为HCNE | ORACLE认证 | SUN认证 | CIW认证 | IBM认证 | LPI认证 | CCNA专题 | MCSE专题 | ADOBE | 仿真题库
   会员登陆
用户:
密码:

   代考详细流程

代考地图
代考思科CCNA认证
代考思科CCNP认证
代考微软MCP认证
代考微软MCSE2000
代考微软MCSE2003
代考微软MCSD.NET
代考LPI认证
代考微软全能认证
代考思科微软全能认证
代考思科全能认证
代考思科CCDA认证
代考思科CCDP认证
代考思科CCIP认证
代考思科CCSP认证
代考思科CCVP认证
代考微软MCTS技术专家
代考MCITP微软IT专家
代考MCPD专业开发人员

   IT代考--本站服务
  itsky100.comIT认证代考 联盟的 代考 机构,提供 CCNA 代考 ,MCSE 代考 ,MCP 代考 ,CCNP 代考 ,JAVA 代考 ,ORACLE 代考 等各种IT 认证替考 服务。
  免费提供 IT认证 学习资料 考试题库 CCNA CCNP JAVA CIW MCSE MCSD教学资料 免费下载。
  IT认证代考 ,具体操作在我们的考试中心进行,通过百分百,请您绝对放心。
 
 
 
 
 
 
  首页>>CCNA专题>>正文
 
CCNA考点精析---IP路由表分析

R2(config)#ip route 1.1.1.0 255.255.255.0 192.168.123.1
R2(config)#ip route 1.1.2.0 255.255.255.0 192.168.123.1
R2(config)#ip route 1.1.3.0 255.255.255.0 192.168.123.1

  红字标识的即为next-hop

  看一下路由表:

R2#sh ip route static
1.0.0.0/24 is subnetted, 3 subnets
S 1.1.1.0 [1/0] via 192.168.123.1
S 1.1.2.0 [1/0] via 192.168.123.1
S 1.1.3.0 [1/0] via 192.168.123.1

  到达三个未知的地方全部都交给了 via 192.168.123.1 ,注意[]里的数字[1/0]

  二、使用出接口interface:

R1(config)#ip route 2.2.1.0 255.255.255.0 serial 1/1
R1(config)#ip route 2.2.2.0 255.255.255.0 serial 1/1
R1(config)#ip route 2.2.3.0 255.255.255.0 serial 1/1

  红字标识的地方即为出接口

  看一下路由表:

R1#sh ip route static
2.0.0.0/24 is subnetted, 3 subnets
S 2.2.1.0 is directly connected, Serial1/1
S 2.2.2.0 is directly connected, Serial1/1
S 2.2.3.0 is directly connected, Serial1/1

  这里已经没有[]了。取而代之的是directly connected,说明路由器R1认为这些条目都是自己直连的条目。

  路由器在路由选择的过程中会比较哪条路是更好的路

  这时候如果用第一种方法给它配上相同的路由条目,看一下会出现什么情况:

R1(config)#ip route 2.2.1.0 255.255.255.0 192.168.12.2
R1(config)#ip route 2.2.2.0 255.255.255.0 192.168.12.2
R1(config)#ip route 2.2.3.0 255.255.255.0 192.168.12.2
R1#sh ip route sta
R1#sh ip route static
2.0.0.0/24 is subnetted, 3 subnets
S 2.2.1.0 is directly connected, Serial1/1
[1/0] via 192.168.12.2
S 2.2.2.0 is directly connected, Serial1/1
[1/0] via 192.168.12.2
S 2.2.3.0 is directly connected, Serial1/1
[1/0] via 192.168.12.2

  R1认为现在R1到达R2后面的直连网络可以有两条路走了,其实只有这一条通道,却被R1认为是两条不同的路。可见,这两种方法需要根据情况使用,否则可能会出现路由选择的问题。Floating Static Routes

  设置一条管理距离稍大于正常使用的一条静态路由,这样一来,当正常链路DOWN后,这条稍大的路由条目马上可以UP起来替代正常路由条目工作。

(1)Router(config)#ip route 1.1.1.0 255.255.255.0 192.168.123.2
(2)Router(config)#ip route 1.1.1.0 255.255.255.0 192.168.12.2 50

  如上,当(1)down后,(2)会自动地up,顶替(1)

  以下为例题:

  1、Users on the 172.17.22.0 network cannot reach the server located on the 172.31.5.0 network. The network administrator connected to router Coffee via the console port, issued the show ip route command, and was able to ping the server. Based on the output of the show ip route command and the topology shown in the graphic, what is the cause of the failure?

  A: The network has not fully converged.

  B: IP routing is not enabled.

  C: A static route is configured incorrectly.

  D: The FastEthernet interface on Coffee is disabled.

  E: The neighbor relationship table is not correctly updated.

  F: The routing table on Coffee has not updated .

  Correct Answers:  C

  该题中,172.18.22.0网段的用户无法访问到172.31.5.0的服器,管理员通过show ip route命令看到了如下的路由表记录,试分析哪些说法是正确的。

  首先比较以下两条直连路由条目,正常;下面的一条静态默认路由的下一跳地址却有问题,因为网络中并没有172.19.22.2这个地址。假设现在从 172.17.22.0有主机A向172.31.5.0中的SERVER发送信息,数据报文进入Coffee后,Coffee经过查表得知,该路由条目并未存在于路由表中,所以被匹配默认路由,交给下一跳172.19.22.2,但是Coffee却发现并不知道 172.19.22.2应该怎么走,所以该数据包被丢弃。

本新闻共3页,当前在第2页  1  2  3  

 

 

版权所有 国际IT认证代考联盟网

Copyright (C) 2006 www.ITSKY100.com All rights reserved