更多“下列命令中,()能加密所有明文口令。A、Router(config)#password-encryptionB、Router(config)#service password-encryptionC、Router#service password-encryptionD、Router#password-encryption”相关问题
  • 第1题:

    下面是路由器Router1的配置命令列表,请为(6)~(10)空缺处填写合适的命令/参数,实现Router1的正确配置。

    Router>enable

    Router config terminal

    Router (config) hostname Router1

    Router1 (config) interface ethernet 0

    Router1 (config-if) ip address (6)

    Router1 (config-if) no shutdown

    Router1 (config-if) (7)

    Router1 (config-if) ip address (8)

    Router1 (config-if) no shutdown

    Router1 (config-if) exit

    Router1 (config) ip routing

    Router1 (config) router ospf 100

    Router1 (config-router) (9)

    Router1 (config-router) (10)

    Router1 (config-router) ip ospf message-digest-key 1 md 5 wg_gcz

    Router1 (config-router) area 0 authentication message-digest

    Router1 (config-if) end

    Router1 Copy run start


    正确答案:(6) 192.1.0.129 255.255.255.192 (7) interface serial 0 (8) 192.200.10.5 255.255.255.252 (9) network 192.200.10.4 0.0.0.3 area 0 (10) network 192.1.0.128 0.0.0.63 area 1
    (6) 192.1.0.129 255.255.255.192 (7) interface serial 0 (8) 192.200.10.5 255.255.255.252 (9) network 192.200.10.4 0.0.0.3 area 0 (10) network 192.1.0.128 0.0.0.63 area 1 解析:这是一道要求在看懂网络拓扑图的基础上,配置OSPF路由协议的推理填空题。解题的思路是先粗略浏览一下网络拓扑图及已给出的路由器Router1配置信息,再重点推敲网络拓扑图中各路由器每一接口IP地址的分配信息。要看懂本题关于路由器Ronter1中OSPF路由协议的配置信息,需要先熟悉表4-14、表 4-15中的配置命令及功能。

      阅读题中所给出的路由器Router1配置信息后,大体可以判断对于(6)~(8)空缺处的配置属于路由器接口IP地址配置问题;(9)、(10)空缺处的配置属于OSPP协议全局配置问题。接着可先将图4-10所示的网络拓扑图中各路由器每一接口的IP地址信息整理出米,整理结果见表4-16。

    由表中信息可推理出,(6)空缺处应填入192.1.0.129255.255.255.192。由于(8)空缺处前面有“ip address”的关键信息,因此可知该处也应填写IP地址信息。阅读网络拓扑图,发现图中路由器Router1仅示意了两个接口,因为(6)空缺处已配置了接口E0的IP地址,所以可推理出(7)空缺处应该是从接口E0配置子模式切换到接口S0的配置子模式,应填入进入接口S0配置子模式的配置命令“interface sedal 0”;(8)空缺处应该填入接口S0的IP地址信息192.200.10.5255.255.255.252。
    分析图4-10所示的拓扑结构,路由器Router1的S0、E0接口分别处于区域0、区域1,因此可确定 (9)、(10)空缺处主要用于配置与该路由器S0、E0接口相连网段的IP地址信息及网络区域号信息,可分别填入“network 192.200.10.4 0.0.0.3 area 0”及“network 192.1.0.128 0.0.0.63 area 1”配置语句。
    以下给出本网络拓扑中路由器Router1的完整配置信息及解释,以供实验或实践操作时参考。
    Router>enable (进入特权模式)
    Router# config terminal (进入配置模式)
    Router (config)# hostname Router1 (设置主机名为Router1)
    Router1 (config) # interface ethernet 0 (进入接口E0配置于模式)
    Router1 (config-if) # ip address 192.1.0.129 255.255.255.192(为该接口分配IP地址192.1.0.129/26)
    Router1 (config-if) # no shutdown (激活该端口)
    Router1 (config-if) # interface serial 0(进入接口S0配置子模式)
    Router1 (config-if) #ip address 192.200.10.5 255.255.255.252
    (为该接口分配IP地址192.200.10.5)
    Router1 (config-if) # no shutdown (激活该端口)
    Router1 (config-if) #exit (退出端口配置了模式)
    Router1 (config)# ip routing
    (设置允许配置路由,若没有这一步将导致配置的路由无效)
    Router1 (config) # router ospf 100(指定使用OSPF协议,路由进ID为100)
    Router1 (config-router) # network 192.200.10.40.0.0.3 area 0
    (指定与该路由器相连的网络IP地址为192.200.10.4,子网掩码的反码为0.0.0.3,网络区域ID号为口)
    Router1 (config-router) # network 192.1.0.128 0.0.0.63 area 1
    (指定与该路由器相连的网络IP地址为192.1.0.128,子网掩码的反码为0.0.0.63,网络区域ID号为1)
    Router1 (config-muter) # ip ospf message-digest-key 1 md5 wg_gcz
    (使用消息摘要MD5算法进行身份验证)
    Router1 (config-router) # area 0 authentication message-digest
    (指定对区域0进行身份验证)
    Router1 (config-if) # end (退出回到特权模式)
    Router1 # copy run start(将配置写入非易失性RAM中,保存配置信息)

  • 第2题:

    哪个命令用来设置Cisco设备串行接口的默认封装()

    A.Router(config)encapsulation hdlc

    B.Router(config)encapsulation default hdlc

    C.Router(config-if)encapsulation hdlc

    D.Router(config-if)encapsulation ppp


    正确答案:C

  • 第3题:

    下面哪条命令用于在路由器上添加进入telnet的登录口令()。

    A.Router(Config)linevty04

    B.Routerpasswordkkk

    C.Router(Config)loginpasswordkkk

    D.Routerlinevty04


    正确答案:A

  • 第4题:

    下面是路由器Router2的配置命令列表,在空白处填写合适的命令/参数,实现Router2的正确配置。

    Router2>en

    Router2conf term

    Router2(config)interface e0

    Router2(config-if)ip address 192.1.0.65 255.255.255.192

    Router2(config-if)interface s0

    Router2(configr-if)ip address 192.200.10.6 255.255.255.252

    Router2(config-if)end

    Router2(config)router (8)

    Router2(config-router)network (9) area 0

    Router2(config-router)network (10) area 2

    Router2(config-router)exit

    Router2copy run start


    正确答案:(8)ospf 200(注:200为OSPF进程号可为1~65535之间的任意整数) (9)192.200.10.4 0.0.0.3 (10)192.1.0.64 0.0.0.63
    (8)ospf 200(注:200为OSPF进程号,可为1~65535之间的任意整数) (9)192.200.10.4 0.0.0.3 (10)192.1.0.64 0.0.0.63

  • 第5题:

    哪个命令加密所有明文密码?()

    A.Router(config)#password-encryption

    B.Router(config)#servicepassword-encryption

    C.Router#servicepassword-encryption

    D.Router#password-encryption


    参考答案:B

  • 第6题:

    以下哪个不是路由器配置超级用户的口令______。

    A.Router (config) #enable password 7 phy 123

    B.Router (config) #enable secret phy 123

    C.Router (config) #enable password phy 123

    D.Router (config) #password 7 phy 123


    正确答案:D

  • 第7题:

    以下什么命令能加密所有明文口令()

    • A、Router(config)#password-encryption
    • B、Router(config)#service password-encryption
    • C、Router#service pass-word-encryption
    • D、Router#password-encryption

    正确答案:B

  • 第8题:

    哪个命令加密所有明文密码?()

    • A、 Router(config)#password-encryption
    • B、 Router(config)#service password-encryption
    • C、 Router#service password-encryption
    • D、 Router# password-encryption

    正确答案:B

  • 第9题:

    表明用户正在配置路由协议中的是().

    • A、Router(config)#
    • B、Router(config-linE.#
    • C、Router(config-iF.#
    • D、Router(config-router)#

    正确答案:D

  • 第10题:

    下列路由器命令中用于激活接口的命令是()。

    • A、Router(config-if)#noshutdown
    • B、Router(config-if)#end
    • C、Router(config-if)#configt
    • D、Router(config-if)#switchportmodeAccess

    正确答案:A

  • 第11题:

    单选题
    以下什么命令能加密所有明文口令()
    A

    Router(config)#password-encryption

    B

    Router(config)#service password-encryption

    C

    Router#service pass-word-encryption

    D

    Router#password-encryption


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

  • 第12题:

    单选题
    哪个命令加密所有明文密码?()
    A

     Router(config)#password-encryption

    B

     Router(config)#service password-encryption

    C

     Router#service password-encryption

    D

     Router# password-encryption


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

  • 第13题:

    下列命令中,()能加密所有明文口令。

    A.Router(config)#password-encryption

    B.Router(config)#servicepassword-encryption

    C.Router#password-encryption

    D.Router#servicepassword-encryption


    参考答案:B

  • 第14题:

    【问题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)

  • 第15题:

    下列路由器命令中,能够对接口进行配置的状态是(44)。

    A.router>

    B.router(config)#

    C.router(config-if)#

    D.router#


    正确答案:C
    解析:与交换机一样,路由器也分为用户模式(登录时自动进入,只能够查看简单的信息)、特权模式(也称为EXEC模式,能够完成配置修改、重启等工作)、全局配置模式(对会影响IOS全局运作的配置项进行设置)、子配置模式(对具体的组件,如网络接口等进行配置),四种状态的转换命令如下所示:Router>enable(进入特权模式)Router#configterminal(进入配置模式)Router(config)#interfacefastetherneft0/1(进入接口F0/1子配置模式)Router(config)#ipaddress192.168.0.1255.255.255.0(设置该接口的IP地址,格式为ipaddressip-aodrsubnet-mask)Router(config)#noshutdown(激活接口)11:02:01:%LINK-3-UPDOWN:InterfaceFastEthernet0/1changedstatetoup.Router(config)#end(退回特权模式)路由器通常是模块化的,每个模块都有一些相应的接口,如以太网口、快速以太网口、串行口等。而且,与交换机不同,它们在默认情况下关闭的,需要人为启动它。

  • 第16题:

    下面是路由器Router1的配置命令列表,在空白处填写合适的命令/参数,实现Router1的正确配置。

    Router1>en

    Router1conf term

    Router1(config)iriterface e0

    Router1(config-if)ip address 192.1.0.129 255.255.255.192

    Router1 (config-if)interface s0

    Router1(config-if)ip address 192.200.10.5 255.255.255.252

    Router1(config-if)end

    Router1(config)Eouter (5)

    Router1(config-router)network (6) area 0

    Router1(config-router)network (7) area 1

    Router1(config-router)exit

    Router1copy run start


    正确答案:(5)ospf 100(注:100为OSPF进程号可为1~65535之间的任意整数) (6)192.200.10.4 0.0.0.3 (7)192.1.0.128 0.0.0.63
    (5)ospf 100(注:100为OSPF进程号,可为1~65535之间的任意整数) (6)192.200.10.4 0.0.0.3 (7)192.1.0.128 0.0.0.63 解析:所在的命令的作用是启用OSPF进生程,因此该处应填写“OSPF进程ID>”;空(6)和空(7)所在的命令的作用是指定与Router1路由器相连的网络。该路由器相连两个网络,一个是192.200.10.4/30、另一个是192.1.0.128/26。但需要注意的是network命令中使用的不是予网掩码,而是wildcard-mask。它子网掩码的反码,可以使用255.255.255.255减去予网掩码求出。因此空(6)处应填写“192.200.10.4 0.0.0.3”;空(7)处应填写“192.1.0.128 0.0.0.63”。

  • 第17题:

    Which command encrypts all plaintext passwords?()

    A.Router(config)#password-encryption

    B.Router(config)#service password-encryption

    C.Router#service password-encryption

    D.Router# password-encryption


    参考答案:B

  • 第18题:

    下列选项中,哪一项不是路由器配置超级用户的口令( )。

    A.Router (config) # enable secret phy l23

    B.Router (config) # password 7phy 123

    C.Router (config) # enable password phy 123

    D.Router (config) # enable password 7Phy l23


    正确答案:B

  • 第19题:

    Which of the following commands on the wireless interface of a cisco 3845 integrated service router allows the ssid to broadcast?()

    • A、router(config-ssid)# enable
    • B、router(config-ssid)# advertise
    • C、router(config-ssid)# broadcast
    • D、router(config-ssid)# guest-mode

    正确答案:D

  • 第20题:

    下列命令提示符()属于接口配置模式。

    • A、Router(config)#
    • B、Router#
    • C、Router(config-if)#
    • D、Router>

    正确答案:C

  • 第21题:

    哪个IOS命令关闭名称-地址解析)?()

    • A、ROUTER#NOIPDOMAIN-LOOKUP
    • B、ROUTER(CONFIG)#NODOMAIN-LOOKUP
    • C、Router(config-iF.#noipdomain-lookup
    • D、Router(config)#domain-lookupoff

    正确答案:B

  • 第22题:

    Which command encrypts all plaintext passwords?()

    • A、Router(config)#password-encryption
    • B、Router(config)#service password-encryption
    • C、Router#service password-encryption
    • D、Router# password-encryption

    正确答案:B

  • 第23题:

    单选题
    下列命令中,()能加密所有明文口令。
    A

    Router(config)#password-encryption

    B

    Router(config)#service password-encryption

    C

    Router#service password-encryption

    D

    Router#password-encryption


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