CCNA 200-125 Exam: Trunking Questions With Answers

  1. Which command can you enter to determine whether a switch is operating in trunking mode?
    • A. show vlan
    • B. show ip interface brief
    • C. show interfaces
    • D. show interface switchport*

    Show (Hide) Explanation/Reference
    Below is an example of the output of this command. Interface Ethernet1/0 is operating in trunking mode.

    CCNA 200-125 Exam: Trunking Questions With Answers 1

  2. Which two commands can be used to verify a trunk link configuration status on a Cisco switch? (choose two)
    • A. show interfaces trunk*
    • B. show interfaces switchport*
    • C. show ip interface brief
    • D. show interfaces vlan

    Show (Hide) Explanation/Reference
    The “show interfaces trunk” command and “show interfaces switchport” command can be used to verify the status of an interface (trunking or not). The outputs of these commands are shown below (port Ethernet 1/0 has been configured as trunk):

    CCNA 200-125 Exam: Trunking Questions With Answers 2

    CCNA 200-125 Exam: Trunking Questions With Answers 1

    The “show ip interface brief” command only gives us information about the IP address, the status (up/down) of an interface:

    CCNA 200-125 Exam: Trunking Questions With Answers 4

    The “show interfaces vlan” command only gives us information about that VLAN, not about which ports are the trunk links:

    CCNA 200-125 Exam: Trunking Questions With Answers 5

  3. Refer to the exhibit:CCNA 200-125 Exam: Trunking Questions With Answers 6Switch port FastEthernet 0/24 on AlSwitch1 will be used to create an IEEE 802.1Q-complaint trunk to another switch. Based on the output shown, What is the reason the trunk does not form, even thought the proper cabling has been attached?
    • A. VLANs have not been created yet.
    • B. An IP address must be configured for the port.
    • C. The port is currently configured for access mode.*
    • D. The correct encapsulation type has not been configured.
    • E. The no shutdown command has not been entered for the port.

    Show (Hide) Explanation/Reference
    The “Operational Mode” is “static access” so this port is currently in access mode.
  4. Which two of these are characteristics of the 802.1Q protocol? (Choose two)
    • A. It is a layer 2 messaging protocol which maintains vlan configurations across network.
    • B. It includes an 8-bit field which specifies the priority of a frame.
    • C. It is used exclusively for tagging vlan frames and does not address network reconvergence following switched network topology changes.
    • D. It modifies the 802.3 frame header and thus requires that the FCS be recomputed.*
    • E. It is a trunking protocol capable of earring untagged frames.*

    Show (Hide) Explanation/Reference
    IEEE 802.1Q is the networking standard that supports Virtual LANs (VLANs) on an Ethernet network. It is a protocol that allows VLANs to communicate with one another using a router. 802.1Q trunks support tagged and untagged frames.

    If a switch receives untagged frames on a trunk port, it believes that frame is a part of the native VLAN. Also, frames from a native VLAN are not tagged when exiting the switch via a trunk port.

    The 802.1q frame format is same as 802.3. The only change is the addition of 4 bytes fields. That additional header includes a field with which to identify the VLAN number. Because inserting this header changes the frame, 802.1Q encapsulation forces a recalculation of the original FCS field in the Ethernet trailer.

    Note: Frame Check Sequence (FCS) is a four-octet field used to verify that the frame was received without loss or error. FCS is based on the contents of the entire frame.

  5. How to create a trunk port and allow VLAN 20? (Choose three)
    • A. switchport trunk encapsulation dot1q*
    • B. switchport mode trunk*
    • C. switchport trunk allowed vlan 20*
    • D. switchport trunk native vlan 20
    • E. ?

    Show (Hide) Explanation/Reference
    In switches that support both InterSwitch Link (ISL) and 802.1Q trunking encapsulations, we need to specify an trunking protocol so we must use the command “switchport trunk encapsulation dot1q” command first to set the trunk mode to 802.1Q. Then we configure trunking interface with the “switchport mode trunk” command. Then we explicitly allow vlan 20 with the command “switchport trunk allowed vlan 20” command. By default all VLANs are allowed to pass but after entering this command, only VLAN 20 is allowed.
  6. Which mode is compatible with Trunk, Access, and desirable ports?
    • A. Trunk Ports
    • B. Access Port
    • C. Dynamic Auto*
    • D. Dynamic Desirable

    Show (Hide) Explanation/Reference
    Maybe this question wanted to ask “if the other end is configured with trunk/access/desirable mode” then which mode is compatible so that the link can work. In that case both “dynamic auto” and “dynamic desirable” mode are correct. The difference between these two modes is “dynamic auto” is passively waiting for the other end to request to form a trunk while “dynamic desirable” will actively attempt to negotiate to convert the link into a trunk.
  7. What field is consist of 6 bytes in the field identification frame in IEEE 802.1Q?
    • A. SA*
    • B. DA
    • C. FCS
    • D. other

    Show (Hide) Explanation/Reference
    The picture below shows the fields in IEEE 802.1Q frame.

    CCNA 200-125 Exam: Trunking Questions With Answers 7

    The SA field is the source address field. The field should be set to the MAC address of the switch port that transmits the frame. It is a 48-bit value (6 bytes). The receiving device may ignore the SA field of the frame.

    In fact there is another correct answer for this question: DA (Destination Address) which also consists of 6 bytes. Maybe there is a mistake or typo in this question.

  8. Which statement about DTP is true?
    • A. It uses the native VLAN.
    • B. It negotiates a trunk link after VTP has been configured.
    • C. It uses desirable mode by default.
    • D. It sends data on VLAN 1.*

    Show (Hide) Explanation/Reference
    Control traffic like CDP, DTP, PAgP, and VTP uses VLAN 1 to operate, even if you change the native VLAN.
  9. How can you disable DTP on a switch port?
    • A. Configure the switch port as a trunk.* (no correct answer, in fact) 
    • B. Add an interface on the switch to a channel group.
    • C. Change the operational mode to static access.
    • D. Change the administrative mode to access.

    Show (Hide) Explanation/Reference
    Although some books and websites said DTP is disabled if the switch port is configured as trunk or access mode (via the command “switchport mode trunk” or “switchport mode access”) but in fact DTP is still running in these modes. Please read at http://packetlife.net/blog/2008/sep/30/disabling-dynamic-trunking-protocol-dtp/. The only way to disable DTP on a switch port is to use the “switchport nonegotiate” command. But notice this command can only be used after configuring that switch port in “trunk” or “access” mode.

    Therefore this is a question with no correct answer but if we have to choose an answer, we will choose answer A. At least it is correct in theory.

  10. What is true about DTP? (Choose three)
    • A. Layer 2 protocol*
    • B. Layer 3 protocol
    • C. Proprietary protocol*
    • D. enabled by default*
    • E. disabled by default

    Show (Hide) Explanation/Reference
    The Dynamic Trunking Protocol (DTP) is a proprietary networking protocol developed by Cisco Systems for the purpose of negotiating trunking on a link between two VLAN-aware switches, and for negotiating the type of trunking encapsulation to be used. It is a Layer 2 protocol and it is enabled by default on Cisco switches (so the interfaces of your switches will be in “dynamic auto” or “dynamic desirable” mode). If you want to turn it off, use the “switchport nonegotiate” under interface mode.
Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x