单选题如何使Star2624路由器启用IP路由?()A router(config)#ip routingB router(config)#ip initC Router(config)#route ipD touter(config)#ip route

题目
单选题
如何使Star2624路由器启用IP路由?()
A

router(config)#ip routing

B

router(config)#ip init

C

Router(config)#route ip

D

touter(config)#ip route


相似考题
更多“单选题如何使Star2624路由器启用IP路由?()A router(config)#ip routingB router(config)#ip initC Router(config)#route ipD touter(config)#ip route”相关问题
  • 第1题:

    You need to configure a default route on a Ezonexam router. Which command will configure a default route on a router?

    A.VE1(config)# ip route 0.0.0.0 10.1.1.0 10.1.1.1

    B.VE1(config)# ip default-route 10.1.1.0

    C.VE1(config)# ip default-gateway 10.1.1.0

    D.VE1(config)# ip route 0.0.0.0 0.0.0.0 10.1.1.1


    正确答案:D
    解析:Explanation:Thecommand"IProute0.0.0.00.0.0.0<ip-addressoftheinterface>"commandisusedtoconfigureadefaultrouteonarouter.Inthiscase,adefaultroutewithanexthopIPaddressof10.1.1.1wasconfigured.IncorrectAnswers:A.Thiswillbeaninvalidroute,sincethe"10.1.1.0"valuewillspecifythenetworkmask,whichinthiscaseisinvalid.B,C.Thesecommandsareinvalid.Thecommand"ipdefault-network"couldbeused,butnot"ipdefault-route"or"ipdefault-gateway".IPdefault-gatewayisusedonswitches,notrouters.

  • 第2题:

    【问题2】(3分)

    根据图4-1的配置,补充完成下面路由器的配置命令:

    Router(config)# interface (3)

    Router(config-if)#ip address 10.10.1.1 255.255.255.0

    Router(config-if)#no shutdown

    Router(config-if)#exit

    Router(config)# interface (4)

    Router(config-if)# ip address 192.168.1.1 255.255.255.0

    Router(config)# interface (5)

    Router(config-if)# ip address 10.10.2.1 255.255.255.0


    正确答案:

    【问题2】(3分)

    (3)ethernet 0/0   (e0/0)

    (4)ethernet 0/l  (e0/1)

    (5)serial0/0 (s0/0)

  • 第3题:

    阅读下列广域网路由基本技术的应用,分析路由器的配置命令,

    实例:通过Cisco 2501连接A局域网与B局域网,如图5-1所示。

    假设实验条件如下:

    A网:202.96.199.0~202.96.199.255

    B网:202.97.76.0~202.97.76.31

    DNS Server:202.96.199.2(主),202.96.199.3(备)

    所属域:xxx.com

    广域网互联:需要一个包含4个IP地址(2个可用p)的子网,定为:202.98.0.0~ 202.98.0.3,其中202.98.0.1给A网,202.98.0.2给B网,互联专线速率:128 kbps。具体网络参数分配表如下:

    首先进入路由器:将计算机串行口连接到路由器的Console口,使用Netterm或者超级终端之类的软件登录。

    Router>en

    passwd:******(输入超级口令)

    全局配置:(A、B网相同)

    Routerconfig terminal(切换到配置状态)

    Router(config)enable secret my-root-password(定义超级口令)

    Router(config)ip host Router-A(定义路由器名.B网为Router-B)

    Router(config)ip domain-name (1)

    Router(config)nameserver 202.96.199.2(定义主域名服务器)

    Router(config)nameserver 202.96.199.3(定义备域名服务器)

    Router(config)ip classless

    Router(config)line (2)

    (定义5个telnet虚终端,即可以同时有5个人登录本路由器)

    Router(config-line)password my-telnet-password(定义telnet口令)

    Router(config-line)exit

    Router(config)exit

    地址和路由配置

    /****** A网路由器 ******/

    Router-Aconfig terminal(切换到配置状态)

    Router-A(config)intefface e()(配置 Ethernet 0 口)

    Router-A(config-if)description the LAN port link to my local network(端口说明)

    Router-A(config-if)ip address (3)

    Router-A(config-if)no shutdown(激活端口)

    Router-A(config-if)exit

    Router-A(config)4finterface s()(配置Serial()口)

    Router-A(config-if)description the WAN port link to Router-B(端口说明)

    Router-A(config-if)ip add 202.98.0.1 255.255.255.252(定义互联广域网IP地址)

    Router-A(config-if)bandwidth 128(定义端口速率,单位kbps)

    Router-A(config-if)no shutdown(激活端口)

    Router-A(config-if)exit

    Router-A(config)ip route (4)

    Router-A(config)exit

    Router-Awr m(保存配置)

    /****** B网络由器 ******/

    Router-Bconfig terminal

    Router-B(config)interface e()

    Router-B(config-if)deseription the LAN port link to my local network(端口说明)

    Router-B(config-if)ip add 202.97.76.1 255.255.255.224

    (定义以太网IP地址,子网掩码表示为拥有32个地址的子网)

    Router-B(config-if)no shutdown

    Router-B(config-if)exit

    Router-B (config)interface sO

    Router-B(config-if)description the WAN port link to Router-A(端品说明)

    Router-B(config-if)ip add 202.98.0.2 255.255.255.252

    Router-B (config-if)bandwidth 128

    Router-B(config-if)no shutdown

    Router-B (config-if)exit

    Router-B(config)ip route (5)

    Router-B(config)exit

    Router-Bwr m(保存配置)


    正确答案:(1)xxx.com 定义所属域名称B网为yyy.com。 (2)vty 04 (3)202.96.199.1 255.255.255.0 定义以太网IP地址子网掩码表示为C类网络。 (4)202.97.76.0255.255.255.224 202.98.0.2 定义静态路由通过网关到达对端局域网络IP为对端广域网IP地址。 (5)202.96.199.0255.255.255.0202.98.0.1 定义静态路由通过网关到达对端局域网络IP为对端广域网IP地址。
    (1)xxx.com 定义所属域名称,B网为yyy.com。 (2)vty 04 (3)202.96.199.1 255.255.255.0 定义以太网IP地址,子网掩码表示为C类网络。 (4)202.97.76.0255.255.255.224 202.98.0.2 定义静态路由,通过网关到达对端局域网络,IP为对端广域网IP地址。 (5)202.96.199.0255.255.255.0202.98.0.1 定义静态路由,通过网关到达对端局域网络,IP为对端广域网IP地址。

  • 第4题:

    You have been asked to configure a default route. Which of the IOS commands mentioned below will accomplish this task?()

    A. LTD(config)# ip route 0.0.0.0 0.0.0.0 192.168.15.36

    B. LTD(config)# ip route 0.0.0.0 192.168.15.36 255.255.255.255

    C. LTD# ip default-network 0.0.0.0 192.168.15.36 255.255.255.255

    D. LTD(config)# ip route 0.0.0.0 0.0.0.0 E0

    E. LTD(config)# ip route 0.0.0.0 255.255.255.255 S0

    F. LTD(config-router)# ip route 255.255.255.255 0.0.0.0 192.168.15.36


    参考答案:A, D

  • 第5题:

    在某台Cisco路由器中定义一个名为test的DHCP地址池(192.168.3.0/26),并保留192.168.3.62/29的IP地址。下列正确的配置语句是(29)。

    A.Router(config)#ip dhcp pooltest Router(dhcp-config)#network 192.168.3.00.0.0.63 Router(dhcp-config)#ip dhcp excluded-address192.168.3.62

    B.Router(config)#ip dhcp poo1 test Router(dhcp-config)#network 192.168.3.0255.255.255.192 Router(dhcp-config)#ip dhcp excluded-address 192.168.3.62255.255.255.248

    C.Router(config)#ip dhcp poo1 test Router(dhcp-config)#network 192.168.3.0/26 Router(dhcp-config)#ip dhcp excluded-address 192.168.3.62/29

    D.Router(config)#ip dhcp excluded-address 192.168.3.56192.168.3.62 Router(config)#ip dhcp pool test Router(dhcp-config)#network 192.168.3.0/26


    正确答案:D
    解析:子网地址是DHCP服务器可以分配给DHCP客户的有效IP地址范围。在DHCP Pool配置模式下,使用命令“networknetwork-number>[mask|/prefix-length]”配置IP地址池的子网地址和子网掩码。其中,子网掩码参数允许以两种形式表达,一种形式常见的点分十进制数表达形式(如 255.255.255.192),另一种形式是给出掩码前缀的长度,即掩码位为“1”的个数,如“255.255.255.192”可以写成“/26”。本试题中,配置DHCP地址池192.168.3.0/26的语句如下:
      Router(dhcp-config)#network192.168.3.0255.255.255.192
      或Router(dhcp-contig)#network192.168.3.0/26
      可以在全局配置模式“Router(config)#”下,使用“ip dhcp excluded-address low-address[high-address]”命令将要保留的地址从IP地址池中排除,使之成为不能动态分配的地址。本试题中,需要排除的IP地址范围是192.168.3.62/29。其中,“/29”是子网掩码255.255.255.248的前缀的长度。由于IP地址192.168.3.62的二进制表示是“1100 0000 1010 1000 0000 0011 1110”,其中阴影部分是子网掩码覆盖的比特范围,因此192.168.3.62/29所表达的IP地址范围是192.168.3.56-192.168.3.63。再由于192.168.3.63是 192.168.3.0/26网段的直接广播地址,需要排除,因此保留IP地址范围192.168.3.62/29的配置语句如下:
      Router(config)#ip dhcp excluded-adclress 192.168.3.56 192.168.3.62
      本试题选项A的“ip dhcp excluded-address192.168.3.62”仅排除单个IP地址192.168.3.62。选项B和选项C保留IP地址配置命令所在的配置模式有误,且不允许出现选项B的“ip dhcp exclude_address192.168.3.62 255.255.255.248”和选项C的“ip dhcp excluded-address 192.168.3.62/29”等带有子网掩码的格式。

  • 第6题:

    如何使Star2624路由器启用IP路由?()

    A.router(config)#ip routing

    B.router(config)#ip init

    C.Router(config)#route ip

    D.touter(config)#ip route


    参考答案:A

  • 第7题:

    Which of the following commands would you use, to configure a default route to any destination NOT found in the routing table?()

    • A、Router(config)# ip default-route 0.0.0.0 255.255.255.255 s0
    • B、Router(config)# ip route 0.0.0.0 255.255.255.255 s0
    • C、Router(config)# ip default-route 0.0.0.0 0.0.0.0 s0
    • D、Router(config)# ip route 0.0.0.0 0.0.0.0 s0
    • E、Router(config)# ip route any any e0

    正确答案:D

  • 第8题:

    下面哪条命令用于在路由器上添加一条默认路由?()

    • A、Router#ip route 0.0.0.0 0.0.0.0 192.168.100.1
    • B、Router#ip route 0.0.0.0 255.255.255.255 192.168.100.1
    • C、Router(Config)#ip route 0.0.0.0 0.0.0.0 192.168.100.1
    • D、Router(Config)#ip route 0.0.0.0 255.255.255.255 192.168.100.1

    正确答案:C

  • 第9题:

    如何使Star2624路由器启用IP路由?()

    • A、router(config)#ip routing
    • B、router(config)#ip init
    • C、Router(config)#route ip
    • D、touter(config)#ip route

    正确答案:A

  • 第10题:

    下面哪条命令用于校验路由发送的路由信息?()

    • A、Router(config-router)#show route ip
    • B、Router(config)#show ip rip
    • C、Router#show ip rip route
    • D、Router#show ip route

    正确答案:D

  • 第11题:

    单选题
    Which command will configure a default route on a router?()
    A

    router(config)# ip route 0.0.0.0 10.1.1.0 10.1.1.1

    B

    router(config)# ip default-route 10.1.1.0

    C

    router(config)# ip default-gateway 10.1.1.0

    D

    router(config)# ip route 0.0.0.0 0.0.0.0 10.1.1.1


    正确答案: C
    解析: 暂无解析

  • 第12题:

    单选题
    下面哪条命令用于校验路由发送的路由信息?()
    A

    Router(config-router)#show route ip

    B

    Router(config)#show ip rip

    C

    Router#show ip rip route

    D

    Router#show ip route


    正确答案: B
    解析: 暂无解析

  • 第13题:

    阅读路由器Router的部分配置信息,解释(5)~(7)处的命令,将答案填写在答题纸上相应的位置。

    Router(config)interface fastEthernet1/0.1

    Router(config-subif)encapsulation isl 11 (5)

    Router(config-subif)ip addreSs 192.168.1.1 255.255.255.240 (6)

    Router(config-subif)exit

    Router(config)interface fastEthernet1/0.2

    Router(config-subif)encapsulation isl 12

    Router(config-subif)ip address 192.168.1.33 255.255.255.224

    Router(config-subif)exit

    Router(config)interface fastEthernet1/0.3

    Router(config-subif)encapsulation isl 13

    Router(config-subif)ip address 192.168.1.129 255.255.255.192

    Router(config-subif)exit

    Router(config)ip routing (7)


    正确答案:(5)设置子接口fastEthernet1/0.1接收VLAN 11的数据trunk的数据封装协议isl (6)配置子接口fastEthemet1/0.1的IP地址和子网掩码 (7)启动路由配置如果无这条命令将导致路由配置无效
    (5)设置子接口fastEthernet1/0.1接收VLAN 11的数据,trunk的数据封装协议isl (6)配置子接口fastEthemet1/0.1的IP地址和子网掩码 (7)启动路由配置,如果无这条命令,将导致路由配置无效 解析:这部分的配置是使独臂路由器完成各VLAN之间的数据转发。独臂路由器,是指只用一个接口模拟多个接口工作,来完成VLAN之间的数据转发。实现方法是在一个接口中创建多个子接口,让各个子接口只接收和发送某一VLAN的数据。(5)和(6)处就是设置子接口fastEthernet1/0.1接收哪一个VLAN数据及数据封装协议,并指定该VLAN的的默认网关和子网掩码。命令“ip routing”的作用是启动路由配置,如果无这条命令,将导致路由配置无效。

  • 第14题:

    Cisc0路由器第3模块第1端口通过El标准的DDN专线与-台远程路由器相连,端口的IP地址为195.112.41.81/30,远程路由器端口封装PPP协议。下列路由器的端口配置,正确的是( )。

    A.Router(config)#interface s3/1Router(config-if)#bandwidth 2048Router(config-if)#ip address l95.112.41.81 255.255.255.252Router(cortfig-if)#encapsulation PPPRouter(config-if)#exit

    B.Router(config)#interface a3/1Router(config-if)#bandwidth 2000Router(config-if)#ip address 195.112.41.81 255.255.255.252Router(config-if)#encapsulation PPPRouter(config-if)#exit

    C.Router(config)#interface s3/lRouter(config-if)#bandwidth 2Router(config-if)#ip address 195.112.41.81 255.255:255.252Router(config-if)#encapsulation PPPRouter(config-if)#exit

    D.Router(config)#interface s3/1Router(config-if)#bandwidth 2048Router(config-if)#ip address 195.112.41.81 255.255.255.252Router(config-if)#encapsulation hdlcRouter(config-if)#exit


    正确答案:A
    题中路由器的端口配置方法如下:步骤一:进入第3模块第1端口配置模式(config)#interfaces3/1。步骤二:设置带宽,其中E1速率为2.048Mbit/s,所以设置带宽为2048(config-if)#bandwidth2048。步骤三:配置端口通信IP地址与子网掩码(config-if)#ipaddress195.112.41.81255.255.255.252。步骤四:设置远程路由器端口封装PPP协议,(config-if)#encapsulationPPP。步骤五:退出(config-if)#exit。因此A选项正确。

  • 第15题:

    如果在互联网中添加了一个局域网,要用手工方式将该局域网添加到路由表中,应使用的命令是( )。

    A.router(config)>ip route 2.0.0.0 255.0.0.0 via 1.0.0.2 B.router(config)ip route 2.0.0.0 255.0.0.0 1.0.0.2 C.router (config) ip route 2.0.0.0 via 1.0.0.2 D.router (config) ip route 2.0.0.0 1.0.0.2 mask 255.0.0.0


    正确答案:B

  • 第16题:

    Which of the following commands would you use, to configure a default route to any destination NOT found in the routing table?()

    A. Router(config)# ip default-route 0.0.0.0 255.255.255.255 s0

    B. Router(config)# ip route 0.0.0.0 255.255.255.255 s0

    C. Router(config)# ip default-route 0.0.0.0 0.0.0.0 s0

    D. Router(config)# ip route 0.0.0.0 0.0.0.0 s0

    E. Router(config)# ip route any any e0


    参考答案:D

  • 第17题:

    下面哪条命令用于在路由器上添加一条默认路由?

    A.Router#ip route 0.0.0.0 0.0.0.0 192.168.100.1

    B.Router#ip route 0.0.0.0 255.255.255.255 192.168.100.1

    C.Router(Config)# ip route 0.0.0.0 0.0.0.0 192.168.100.1

    D.Router(Config)# ip route 0.0.0.0 255.255.255.255 192.168.100.1


    正确答案:C

  • 第18题:

    配置策略路由时,需要在接口下通过路由图名字调用已配置的route-map,路由器上有个route-map的名字叫abc,下列配置中正确的是()

    • A、router(config-if)#ip policy route-map abc in
    • B、router(config-if)#ip policy route-mapabc out
    • C、router(config-if)#ip policy route-map abc
    • D、router(config-if)# policy route-map abc

    正确答案:C

  • 第19题:

    Which command will configure a default route on a router?()

    • A、router(config)# ip route 0.0.0.0 10.1.1.0 10.1.1.1
    • B、router(config)# ip default-route 10.1.1.0
    • C、router(config)# ip default-gateway 10.1.1.0
    • D、router(config)# ip route 0.0.0.0 0.0.0.0 10.1.1.1

    正确答案:D

  • 第20题:

    以下配置默认路由的命令正确的是:()

    • A、Quidway(config)#ip route 0.0.0.0 0.0.0.0 172.16.2.1
    • B、Quidway(config)#ip route 0.0.0.0 255.255.255.255 172.16.2.1
    • C、Quidway(config-if-s0)#ip route 0.0.0.0 0.0.0.0 172.16.2.1
    • D、Quidway(config)#ip router 0.0.0.0 0.0.0.0 172.16.2.1

    正确答案:A

  • 第21题:

    以下配置默认路由的命令正确的是:()

    • A、Quidway(config)#ip route 0.0.0.00.0.0.0172.16.2.1
    • B、Quidway(config)#ip route 0.0.0.0255.255.255.255172.16.2.1
    • C、Quidway(config-if-s0)#ip route 0.0.0.00.0.0.0172.16.2.1
    • D、Quidway(config)#ip router 0.0.0.00.0.0.0172.16.2.1

    正确答案:A

  • 第22题:

    多选题
    You have been asked to configure a default route. Which of the IOS commands mentioned below will accomplish this task?()
    A

    LTD(config)# ip route 0.0.0.0 0.0.0.0 192.168.15.36

    B

    LTD(config)# ip route 0.0.0.0 192.168.15.36 255.255.255.255

    C

    LTD# ip default-network 0.0.0.0 192.168.15.36 255.255.255.255

    D

    LTD(config)# ip route 0.0.0.0 0.0.0.0 E0

    E

    LTD(config)# ip route 0.0.0.0 255.255.255.255 S0

    F

    LTD(config-router)# ip route 255.255.255.255 0.0.0.0 192.168.15.36


    正确答案: A,D
    解析: 暂无解析

  • 第23题:

    单选题
    如何使Star2624路由器启用IP路由?()
    A

    router(config)#ip routing

    B

    router(config)#ip init

    C

    Router(config)#route ip

    D

    touter(config)#ip route


    正确答案: C
    解析: 暂无解析

  • 第24题:

    单选题
    以下配置默认路由的命令正确的是:()
    A

    Quidway(config)#ip route 0.0.0.00.0.0.0172.16.2.1

    B

    Quidway(config)#ip route 0.0.0.0255.255.255.255172.16.2.1

    C

    Quidway(config-if-s0)#ip route 0.0.0.00.0.0.0172.16.2.1

    D

    Quidway(config)#ip router 0.0.0.00.0.0.0172.16.2.1


    正确答案: C
    解析: 暂无解析