更多“名词解释题SWITCH:()”相关问题
  • 第1题:

    AutomaticConsumerGroupSwitchingisanimportantnewfeatureoftheDatabaseResourceManager.Whichthreeplandirectiveparametersareusedtocontrolthisfeature?()

    A.SWITCH_TIME

    B.SWITCH_GROUP

    C.MAX_SESS_POOL

    D.SWITCH_ESTIMATE


    参考答案:A, B, D

  • 第2题:

    AVTPdomainhassixactiveVLANs.Withoutnotice,allVLANsexceptVLAN1fail.Justpriortothefailure,Switch2wasaddedtothenetwork.WhichthreeissuesonSwitch2couldbethecause?()

    A.Switch2isconfiguredforonlyVLAN1

    B.Switch2isaVTPserverinadifferentdomain

    C.Switch2isaVTPserverintheCompanydomain

    D.Switch2isnotaVTPdomain.

    E.Switch2hasalowerVTPconfigurationrevisionnumberthanthecurrentVTPrevision

    F.Switch2hasahigherVTPconfigurationrevisionnumberthanthecurrentVTPrevision


    参考答案:A, C, F

  • 第3题:

    该题要求哪一个交换机为打印机提供指定端口?()

    A.Switch1

    B.Switch2

    C.Switch3

    D.Switch4


    参考答案:C
    由图可知S1是根桥。指定端口是基于网段间选举的。S3--S4之间S3的BID比S4小,所以S3-S4之间的指定端口在S3上。

  • 第4题:

    Refertotheexibit.Threecisco2950switchesaresettotheirdefaultprioritysettings.Duringthespanning-treeprocess,whichswitchwillbeelectedastherootbridge?()

    A.Switch3

    B.Switch4

    C.Switch2

    D.Switch1


    参考答案:D

  • 第5题:



    管理员要求能确保Vlan10和Vlan20能互通,并且Vlan20的用户访问外网时,使用10.1.30.1作为出口,二Vlan10的用户访问外网时,使用10.1.20.1作为出口,因此考虑使用策略路由。具体配置如下:
    [Switch] acl 3000
    [Switch-acl-adv-3000] rule permit ip source 192.168.1.0 0.0.0.255 destination 192.168.2.0 0.0.0.255
    [Switch-acl-adv-3000] rule permit ip source 192.168.2.0 0.0.0.255 destination 192.168.1.0 0.0.0.255
    Switch-acl-adv-3000] quit
    ?
    [Switch] acl 3001?//匹配内网192.168.1.0/24网段的数据流
    [Switch-acl-adv-3001]?(1)
    [Switch-acl-adv-3001] quit
    [Switch] acl 3002?//匹配内网192.168.2.0/24网段的数据流
    [Switch-acl-adv-3002] rule permit ip source 192.168.2.0 0.0.0.255
    [Switch-acl-adv-3002] quit
    ?
    [Switch] traffic classifier c0 operator or
    [Switch-classifier-c0]?(2)
    [Switch-classifier-c0] quit
    [Switch]?(3)
    [Switch-classifier-c1] if-match acl 3001
    [Switch-classifier-c1] quit
    [Switch] traffic classifier c2 operator or
    [Switch-classifier-c2] if-match acl 3002
    [Switch-classifier-c2] quit
    [Switch] traffic behavior b0
    [Switch-behavior-b0]?(4)
    [Switch-behavior-b0] quit
    [Switch] traffic behavior b1
    [Switch-behavior-b1]?(5)
    [Switch-behavior-b1] quit
    [Switch] traffic behavior b2
    [Switch-behavior-b2] redirect ip-nexthop 10.1.30.1
    [Switch-behavior-b2] quit
    ?[Switch](6)
    [Switch-trafficpolicy-p1]?(7)
    [Switch-trafficpolicy-p1] classifier c1 behavior b1
    [Switch-trafficpolicy-p1] classifier c2 behavior b2
    [Switch-trafficpolicy-p1] quit
    [Switch] interface gigabitethernet 1/0/3
    [Switch-GigabitEthernet1/0/3]?(8)
    问题1:简要叙述ACL3000在此配置中的作用是什么?
    问题2:请完成(1)-(8)空的命令填空


    答案:
    解析:
    (1)rule permit ip source 192.168.1.0 0.0.0.255或者 rule? [数字编号] permit ip source 192.168.1.0 0.0.0.255
    (2)if-match acl 3000
    (3)traffic classifier c1 operator or
    (4)permit
    (5)redirect ip-nexthop 10.1.20.1
    (6)traffic policy p1
    (7)classifier c0 behavior b0
    (8)traffic-policy p1 inbound
    【解析】
    试题分析:
    传统的路由转发原理是首先根据报文的目的地址查找路由表,然后进行报文转发。但是目前越来越多的用户希望能够在传统路由转发的基础上根据自己定义的策略进行报文转发和选路。策略路由PBR(Policy-Based Routing)就是一种依据用户制定的策略进行数据转发的机制。在某些需要指定特定的数据流走特定的下一跳的场景下可以使用策略路由实现,例如使不同的数据流通过不同的链路进行发送,提高链路的利用效率;将数据流引流到防火墙等安全设备,进行安全过滤;在满足业务服务质量的前提下,选择费用较低的链路传输业务数据,从而降低企业数据服务的成本。策略路由主要配置在于如何利用ACL区分数据,然后再使用PBR设定对应的数据流使用redirect ip-nexthop命令或redirect ipv6-nexthop(对应IPv6数据)命令设置下一跳即可解决。具体配置过程如下:1. 创建VLAN并配置各接口,配置路由等,保证IP网络连通。2. 配置ACL规则,不同网段的数据流。3. 配置流分类,匹配规则为对应的ACL规则,使设备可以对报文进行区分。4. 配置流行为,使满足不同ACL规则的数据流走不同的链路,此时要特别注意的是:先把内网互访的数据流放行。5. 配置流策略,绑定上述流分类和流行为,并应用到对应设备接口的入方向,实现策略路由。本题不涉及基本IP网路连通的配置,因此只要从第2步开始即可。配置ACL规则# 在Switch上创建编码为3000、3001、3002的高级ACL。[Switch] acl 3000 //主要用于匹配内网两个网段之间互访的数据流,这部分数据流不需要做重定向,如果不配置这一步会导致内网之间互访的流量也被重定向,从而导致内网互访不通。[Switch-acl-adv-3000] rule permit ip source 192.168.1.0 0.0.0.255 destination 192.168.2.0 0.0.0.255[Switch-acl-adv-3000] rule permit ip source 192.168.2.0 0.0.0.255 destination 192.168.1.0 0.0.0.255Switch-acl-adv-3000] quit[Switch] acl 3001 //匹配内网192.168.1.0/24网段的数据流[Switch-acl-adv-3001] rule permit ip source 192.168.1.0 0.0.0.255[Switch-acl-adv-3001] quit[Switch] acl 3002 //匹配内网192.168.2.0/24网段的数据流[Switch-acl-adv-3002] rule permit ip source 192.168.2.0 0.0.0.255[Switch-acl-adv-3002] quit步骤3 配置流分类在Switch上创建流分类c0、c1、c2,匹配规则分别为ACL 3000、ACL 3001和ACL3002。[Switch] traffic classifier c0 operator or[Switch-classifier-c0] if-match acl 3000[Switch-classifier-c0] quit[Switch] traffic classifier c1 operator or[Switch-classifier-c1] if-match acl 3001[Switch-classifier-c1] quit[Switch] traffic classifier c2 operator or[Switch-classifier-c2] if-match acl 3002[Switch-classifier-c2] quit步骤4 配置流行为# 在Switch上创建流行为b0、b1、b2,对于b0只配置permit的动作,对于b1和b2分别指定重定向到10.1.20.1和10.1.30.1的动作。[Switch] traffic behavior b0[Switch-behavior-b0] permit[Switch-behavior-b0] quit[Switch] traffic behavior b1[Switch-behavior-b1] redirect ip-nexthop 10.1.20.1[Switch-behavior-b1] quit[Switch] traffic behavior b2[Switch-behavior-b2] redirect ip-nexthop 10.1.30.1[Switch-behavior-b2] quit步骤5 配置流策略并应用到接口上# 在Switch上创建流策略p1,将流分类和对应的流行为进行绑定。[Switch] traffic policy p1[Switch-trafficpolicy-p1] classifier c0 behavior b0[Switch-trafficpolicy-p1] classifier c1 behavior b1[Switch-trafficpolicy-p1] classifier c2 behavior b2[Switch-trafficpolicy-p1] quit# 将流策略p1应用到Switch的GE1/0/3的入方向上。[Switch] interface gigabitethernet 1/0/3[Switch-GigabitEthernet1/0/3] traffic-policy p1 inbound

  • 第6题:

    打开锚灯! ()

    • A、Switch on the deck light!
    • B、Switch on the anchor light!
    • C、Switch on the cargo light!
    • D、Switch on the hold light!

    正确答案:B

  • 第7题:

    What will an Ethernet switch do if it receives a unicast frame with a destination MAC that is listed in the switch table?()

    • A、The switch will not forward unicast frames.
    • B、The switch will forward the frame to a specific port.
    • C、The switch will return a copy of the frame out the source port.
    • D、The switch will remove the destination MAC from the switch table.
    • E、The switch will forward the frame to all ports except the port on which it was received.

    正确答案:B

  • 第8题:

    Three switches are connected to one anther via trunk ports.Assuming the default switch configuration,which switch is elected as the root bridge for the spanning-tree instance of vlan 1?()

    • A、the switch with the lowest MAC address
    • B、the switch with the higest MAC address
    • C、the switch witch the higest IP address
    • D、the switch with the lowest IP address

    正确答案:A

  • 第9题:

    判断题
    break语句在switch结构语句中的作用是终止某个case,并跳出switch结构语句。
    A

    B


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

  • 第10题:

    单选题
    In which of the following lists of APS Action Requests is the priority correctly arranged from lowest tohighest?()
    A

    Wait-to-Restore,Forced Switch,Manual Switch,Lockout of Protection

    B

    Manual Switch,Wait-to-Restore,Lockout of Protection,Forced Switch

    C

    Lockout of Protection,Forced Switch, Manual Switch,Wait-to-Restore

    D

    Lockout of Protection,Manual Switch, Forced Switch,Wait-to-Restore

    E

    Wait-to-Restore,Manual Switch,Forced Switch,Lockout of Protection

    F

    Wait-to-Restore,Manual Switch,Lockout of Protection,Forced Switch


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

  • 第11题:

    名词解释题
    交分道岔 slip switch

    正确答案: 将直线异侧的两个对向单开道岔合并在一起便构成交分道岔。
    解析: 暂无解析

  • 第12题:

    判断题
    switch语句中必须有break语句,否则无法退出switch语句。
    A

    B


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

  • 第13题:

    What are two results of entering the Switch(config) vtp mode client command on a Catalyst switch?()

    A. The switch will ignore VTP summary advertisements

    B. The switch will forward VTP summary advertisements

    C. The switch will process VTP summary advertisements

    D. The switch will originate VTP summary advertisements

    E. The switch will create, modify and delete VLANs for the entire VTP domain


    参考答案:B, C

  • 第14题:

    Refer to the exhibit. What switch proves the spanning-tree designated port role for the network segment that services the printers?()

    A.Switch1

    B.Switch2

    C.Switch3

    D.Switch4


    参考答案:C

  • 第15题:

    What will an Ethernet switch do if it receives a unicast frame with a destination MAC that is listed in the switch table()。

    A.The switch will not forward unicast frames.

    B.The switch will forward the frame to a specific port.

    C.The switch will return a copy of the frame out the source port.

    D.The switch will remove the destination MAC from the switch table.

    E.The switch will forward the frame to all ports except the port on which it was received.


    参考答案:B

  • 第16题:

    某企业的网络结构如图 4-1 所示

    问题:4.1 (6 分) 根据 4-1 所示,完成交换机的基本配置,请根据描述,将以下配置代 码补充完整。
    (1)
    [HUAWEI] (2)
    Switch [Switch]vlan(3)10 20 30 100 200 [Switch](4)gigabitethernet0/0/1
    [Switch-GigabitEthernet0/0/1]port link-type(5)
    [Switch-GigabitEthernet0/0/1]port trunk allow-pass vlan(6)
    [Switch-GigabitEthernet0/0/1]quit [Switch]interface vlanif 10
    [Switch-Vlanif10]ip address 10.10.1.1.255.255.255.0 [Switch-Vlanif10]quit
    VLAN 20 30 100 200 配置略 ......
    问 题 : 4.2 按 照 公 司 规 定 , 禁 止 市 场 部 和 研 发 部 工 作 日 每 天 8:00~18:00 访问公司视频服务器,其他部门和用户不受此限制。请根 据描述,将以下配置代码补充完整。 ......
    [Switch] (7)satime 8:00 to 18:00 working-day
    [Switch]acl 3002
    [Switch-acl-adv-3002]rule deny ip source 10.10.2.0.0.0.0.255 destination 10.10.20.1 0.0.0.0 timc-range satime
    [Switch-acl-adv-3002]quit
    [Switch]acl 3003
    [Switch-acl-adv-3003]rule deny ip source 10.10.3.0.0.0.0.255 destination 10.10.20.10.0.0.0 time-range satime
    [Switch-acl-adv-3003]quit
    [Switch-acl-adv-3003]rule deny ip source 10.10.3.0.0.0.0.255 destination 10.10.20.10.0.0.0 time-range satime
    [Switch-acl-adv-3003]quit
    [Switch]traffic classifier c_market //(8
    [Switch-classifier-c_market](9)acl 3002 //将 ACL 与流分类关联
    [Switch-classifier-c_market]quit
    [Switch]traffic classifier c_rd
    [Switch-classifier-c_rd]if-match acl 3003 //将 ACL 与流分类关联
    [Switch-classifier-c_rd]quit
    [Switch](10)b_market //创建流行为
    [Switch-behavior-b_market] (11) //配置流行为动作为拒绝报文通过
    [Switch-behavior-b market]quit
    [Switch]traffic behavior b_rd
    [Switch-behavior-b_rd]deny
    [Switch-behavior-b_rd]quit
    [Switch](12)p_market //创建流策略
    [Switch-trafficpolicy-p_market]classifier c_market behavior b_market
    [Switch-trafficpolicy-p_market]quit
    [Switch]traffic policy p_rd //创建流策略
    [Switch-trafficpolicy-p_rd]classifier c_rd behavior b_rd
    [Switch-trafficpolicy-p_rd]quit
    [Switch]interface(13)
    [Switch-GigabitEthernet0/0/2]traffic-policy p_market(14)
    [Switch-GigabitEthernet0/0/2]quit
    [Switch]interface gigabitethernet 0/0/3
    [Switch-GigabitEthernet0/0/3]traffic-policy(15)inbound
    [Switch-GigabitEthernet0/0/3]quit


    答案:
    解析:
    1、 system-view 2、 sysname 3、 batch 4、 interface 5、 trunk 6、 all 或 10 7、 time-range 8、 创建一个 c_market 的流分类 9、 If-match 10、 traffic behavior 11、 Deny 12、 traffic policy 13、 gigabitethernet0/0/2 14、 inbound 15、 p_rd

  • 第17题:

    In which of the following lists of APS Action Requests is the priority correctly arranged from lowest tohighest?()

    • A、Wait-to-Restore,Forced Switch,Manual Switch,Lockout of Protection
    • B、Manual Switch,Wait-to-Restore,Lockout of Protection,Forced Switch
    • C、Lockout of Protection,Forced Switch, Manual Switch,Wait-to-Restore
    • D、Lockout of Protection,Manual Switch, Forced Switch,Wait-to-Restore
    • E、Wait-to-Restore,Manual Switch,Forced Switch,Lockout of Protection
    • F、Wait-to-Restore,Manual Switch,Lockout of Protection,Forced Switch

    正确答案:E

  • 第18题:

    What are two results of entering the Switch(config)# vtp mode client command on a Catalyst switch?()

    • A、The switch will ignore VTP summary advertisements.
    • B、The switch will forward VTP summary advertisements.
    • C、The switch will process VTP summary advertisements.
    • D、The switch will originate VTP summary advertisements.
    • E、The switch will create, modify and delete VLANs for the entire VTP domain.

    正确答案:B,C

  • 第19题:

    What are two results of entering the Switch(config)# vtp mode client command on a Catalyst switch?()

    • A、The switch will ignore VTP summary advertisements
    • B、The switch will forward VTP summary advertisements
    • C、The switch will process VTP summary advertisements
    • D、The switch will originate VTP summary advertisements
    • E、The switch will create, modify and delete VLANs for the entire VTP domain

    正确答案:B,C

  • 第20题:

    单选题
    What will an Ethernet switch do if it receives a unicast frame with a destination MAC that is listed in the switch table?()
    A

    The switch will not forward unicast frames.

    B

    The switch will forward the frame to a specific port.

    C

    The switch will return a copy of the frame out the source port.

    D

    The switch will remove the destination MAC from the switch table.

    E

    The switch will forward the frame to all ports except the port on which it was received.


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

  • 第21题:

    名词解释题
    Switch交换器

    正确答案: 构成星型拓扑网络中心的电子设备,交换器利用帧中的目的地地址来确定哪一台计算机应接收该帧。
    解析: 暂无解析

  • 第22题:

    名词解释题
    脱鞋道岔 skate throw-off switch

    正确答案: 使铁鞋在车辆溜行途中自行撤离钢轨的设备。脱鞋道岔又叫脱鞋器。
    解析: 暂无解析

  • 第23题:

    名词解释题
    Single switch

    正确答案: 单收缩,整块骨骼肌或单个肌细胞受到一次短促的刺激时,出现的一次机械收缩。
    解析: 暂无解析