nerdexam
CiscoCisco

200-301 · Question #1596

200-301 Question #1596: Real Exam Question with Answer & Explanation

The correct approach involves configuring LACP-based link aggregation on interfaces E0/0-1 on both switches, then applying 802.1Q trunking with a specified native VLAN (45) and allowed VLANs (15, 45) to the resulting Port-channel 15 interface, and finally verifying connectivity.

Submitted by renata2k· Mar 5, 2026Network Access

Question

Lab Simulation 40 Guidelines This is a lab item in which tasks will be performed on virtual devices. - Refer to the Tasks tab to view the tasks for this lab item. - Refer to the Topology tab to access the device console(s) and perform the tasks. - Console access is available for all required devices by clicking the device icon or using the tab(s) above the console window. - All necessary preconfigurations have been applied. - Do not change the enable password or hostname for any device. - Save your configurations to NVRAM before moving to the next item. - Click Next at the bottom of the screen to submit this lab and move to the next question. - When Next is clicked, the lab doses and cannot be reopened. Topology Tasks Task 1 Configure trunks between Sw1 and Sw2 on ports E0/0 and E0/1 using the IEEE standard frame tagging method. - Add VLAN 45 as untagged on the trunk ports. - Only extend VLAN 15 and the untagged VLAN across the trunk. - Verify that PC1 is capable of pinging PC2. Task 2 On Sw1 and Sw2, use IEEE 802.3ad link aggregation. - Combine E0/0 and E0/1 into a single logical link while leaving the trunk configurations intact. - Assign number 15 to the link. - Both links must negotiate aggregation. Answer: See the below explanation

Explanation

The correct approach involves configuring LACP-based link aggregation on interfaces E0/0-1 on both switches, then applying 802.1Q trunking with a specified native VLAN (45) and allowed VLANs (15, 45) to the resulting Port-channel 15 interface, and finally verifying connectivity.

Approach. The lab requires two main tasks: configuring 802.1Q trunks and 802.3ad (LACP) link aggregation. It is best practice to configure the EtherChannel (link aggregation) first, then apply Layer 2 configurations like trunking to the logical EtherChannel interface.

For both Sw1 and Sw2, the following CLI commands should be entered:

  1. Enter privileged EXEC mode and then global configuration mode:

    enable
    configure terminal
    
  2. Task 2: Configure IEEE 802.3ad link aggregation (LACP) on interfaces E0/0 and E0/1:

    interface range ethernet 0/0 - 1
      channel-group 15 mode active
      no shutdown
    exit
    
    • interface range ethernet 0/0 - 1: Selects the physical interfaces to be bundled.
    • channel-group 15 mode active: Creates Port-channel 15 and enables LACP (IEEE 802.3ad) in active mode. 'Active' mode ensures that both links actively try to negotiate the aggregation, satisfying 'Both links must negotiate aggregation' and 'Assign number 15 to the link'.
  3. Task 1: Configure trunking on the Port-channel 15 interface:

    interface port-channel 15
      switchport mode trunk
      switchport trunk native vlan 45
      switchport trunk allowed vlan 15,45
      no shutdown
    exit
    
    • interface port-channel 15: Switches configuration context to the newly created logical interface.
    • switchport mode trunk: Configures the interface as a trunk port, using the IEEE 802.1Q standard frame tagging method (default for Cisco when specifying trunk mode).
    • switchport trunk native vlan 45: Sets VLAN 45 as the untagged (native) VLAN on the trunk, as required by 'Add VLAN 45 as untagged on the trunk ports'.
    • switchport trunk allowed vlan 15,45: Restricts the trunk to permit only VLAN 15 and VLAN 45 (the native VLAN), fulfilling 'Only extend VLAN 15 and the untagged VLAN across the trunk'.
  4. Save the configuration:

    end
    copy running-config startup-config
    
    • copy running-config startup-config: Saves the current running configuration to NVRAM, as required by the lab guidelines.
  5. Task 1 Verification: Verify that PC1 is capable of pinging PC2.

    • From PC1's console, execute ping 10.15.15.20.
    • From PC2's console, execute ping 10.15.15.10.
    • A successful ping confirms that the link aggregation, trunking, and VLAN configurations are correct and operational.

Common mistakes.

  • common_mistake. Common mistakes include:
  • Using channel-group 15 mode on instead of mode active: 'Mode on' creates a static EtherChannel (Port-channel) without LACP negotiation, failing the requirement for 'IEEE 802.3ad' and 'Both links must negotiate aggregation'.
  • Using channel-group 15 mode passive on both switches: If both sides are in passive LACP mode, they will only listen for LACP packets and will not initiate negotiation, thus an EtherChannel will not form. At least one side must be 'active'.
  • Configuring switchport mode trunk and other trunk settings on the physical interfaces (e0/0-1) before creating the channel-group: While some Cisco IOS versions might allow this through configuration inheritance, the most reliable and standard approach is to first bundle the interfaces into a Port-channel, and then apply all Layer 2 (or Layer 3) configurations directly to the logical interface port-channel interface. Configuring physical interfaces first can lead to configuration loss or inconsistency when they are bundled.
  • Incorrect native VLAN: Not setting switchport trunk native vlan 45 would leave the native VLAN as the default (usually VLAN 1), failing a specific task requirement.
  • Incorrect allowed VLANs: Allowing all VLANs (switchport trunk allowed vlan all) or not restricting them to 15,45 would work for VLAN 15 but violates the explicit instruction to 'Only extend VLAN 15 and the untagged VLAN across the trunk'.
  • Not performing symmetrical configuration on both Sw1 and Sw2: Link aggregation and trunking are point-to-point protocols and require identical (or compatible) configurations on both ends to function correctly.
  • Not saving the configuration: Failing to execute copy running-config startup-config will cause all applied configurations to be lost if the device reloads or the lab simulation moves to the next question, resulting in task failure.

Concept tested. The question tests fundamental networking concepts including: VLAN trunking (IEEE 802.1Q), Native VLAN configuration, Allowed VLANs on a trunk, Link Aggregation Control Protocol (LACP) using IEEE 802.3ad, EtherChannel/Port-channel creation and configuration, and basic network connectivity verification (ping).

Topics

#VLAN Trunking#802.1Q#Native VLAN#Trunk Allowed VLANs

Community Discussion

No community discussion yet for this question.

Full 200-301 PracticeBrowse All 200-301 Questions