nerdexam
Cisco

200-301 · Question #1447

Lab Simulation 18 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 lab simulation requires configuring VLAN trunking with a specific native VLAN and LACP-based EtherChannel between three Cisco switches according to detailed specifications.

Submitted by kev92· Mar 5, 2026Network Access

Question

Lab Simulation 18 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 VLANS 35 and 45 have been configured in all three switches. All physical connectivity has been installed and verified All inter-switch links must be operational. 1. Configure SW-1 and SW-2 switch ports e0/0 and e0/1 for 802.1q trunking allowing all VLANS 2. Configure the inter-switch links on SW-1 e0/2, SW-2 e0/2, and SW-3 e0/0 and e0/1 to use native VLAN 35 3. Configure SW-1 and SW-2 switch ports e0/0 and e0/1 for link aggregation SW-1 should immediately negotiate LACP and SW-2 must only respond to LACP requests Answer: SW-1 Interface e0/0 Channel-group 12 mode active Interface e0/1 Channel-group 12 mode active Interface port-channel 12 Switchport trunk encapsulation dot1q Switchport mode trunk Switchport trunk native vlan 35 Interface e0/2 Switchport trunk native vlan 35 SW-2 Interface e0/0 Channel-group 12 mode passive Interface e0/1 Channel-group 12 mode passive Interface port-channel 12 Switchport trunk encapsulation dot1q Switchport mode trunk Switchport trunk native vlan 35 Interface e0/2 Switchport trunk native vlan 35 SW-3 Interface e0/0 Switchport trunk native vlan 35 Interface e0/1 Switchport trunk native vlan 35

Exhibits

200-301 question #1447 exhibit 1
200-301 question #1447 exhibit 2

Explanation

The lab simulation requires configuring VLAN trunking with a specific native VLAN and LACP-based EtherChannel between three Cisco switches according to detailed specifications.

Approach. The correct approach involves accessing the console of each switch (SW-1, SW-2, and SW-3) and applying the specified Cisco IOS commands to fulfill each task. The order of operations is important, especially when configuring EtherChannel, as the trunking parameters are typically applied to the Port-Channel interface.

SW-1 Configuration:

enable
configure terminal
interface range e0/0, e0/1
 channel-group 12 mode active
 exit
interface port-channel 12
 switchport trunk encapsulation dot1q
 switchport mode trunk
 switchport trunk native vlan 35
 exit
interface e0/2
 switchport trunk encapsulation dot1q
 switchport mode trunk
 switchport trunk native vlan 35
 exit
end
write memory

SW-2 Configuration:

enable
configure terminal
interface range e0/0, e0/1
 channel-group 12 mode passive
 exit
interface port-channel 12
 switchport trunk encapsulation dot1q
 switchport mode trunk
 switchport trunk native vlan 35
 exit
interface e0/2
 switchport trunk encapsulation dot1q
 switchport mode trunk
 switchport trunk native vlan 35
 exit
end
write memory

SW-3 Configuration:

enable
configure terminal
interface range e0/0, e0/1
 switchport trunk encapsulation dot1q
 switchport mode trunk
 switchport trunk native vlan 35
 exit
end
write memory

Reasoning for each task:

  1. Trunking on SW-1/SW-2 e0/0 and e0/1 (Port-Channel 12): These interfaces form an EtherChannel, so trunking properties (switchport trunk encapsulation dot1q and switchport mode trunk) are applied to the logical interface port-channel 12. This allows all VLANs to pass over the trunk as per the default behavior unless switchport trunk allowed vlan is used to filter.
  2. Native VLAN 35 on all inter-switch links: The command switchport trunk native vlan 35 must be applied to interface port-channel 12 (on both SW-1 and SW-2) and to the direct inter-switch links (e0/2 on SW-1, e0/2 on SW-2, and e0/0, e0/1 on SW-3). All these links must also be explicitly configured as 802.1q trunks (switchport trunk encapsulation dot1q and switchport mode trunk) for the native VLAN command to take effect.
  3. LACP Link Aggregation on SW-1/SW-2 e0/0 and e0/1: On SW-1, the physical interfaces e0/0 and e0/1 are configured with channel-group 12 mode active to initiate LACP negotiation. On SW-2, the same physical interfaces are configured with channel-group 12 mode passive to respond to LACP requests, fulfilling the requirement for immediate negotiation from SW-1 and passive response from SW-2.

Common mistakes.

  • common_mistake. Common mistakes include:
  • Incorrect LACP modes: Setting both ends to 'passive' would prevent the EtherChannel from forming, as neither side would initiate LACP. Setting both to 'active' would work but does not meet the specific requirement that SW-2 only responds. Using 'on' mode (unconditional EtherChannel) would disable LACP and prevent dynamic negotiation.
  • Forgetting to configure trunking/native VLAN on Port-Channel: Trunking parameters (switchport mode trunk, switchport trunk encapsulation dot1q, switchport trunk native vlan) must be applied to the interface port-channel 12 after the physical interfaces have been assigned to it. Applying them only to the physical interfaces before the channel group command might lead to unexpected behavior or loss of configuration.
  • Missing trunk configuration on direct links: Interfaces e0/2 on SW-1, e0/2 on SW-2, and e0/0/e0/1 on SW-3 are also inter-switch links and must be configured as 802.1Q trunks with native VLAN 35. Forgetting this would result in incorrect VLAN routing between switches and SW-3.
  • Incorrect encapsulation: On Cisco switches, it's crucial to specify switchport trunk encapsulation dot1q before switchport mode trunk when dealing with older switches that might support ISL, or just for best practice and clarity, even if 802.1Q is the only option.
  • Not saving the configuration: Failing to execute write memory or copy running-config startup-config would result in the loss of all configurations upon reboot or lab termination.

Concept tested. The core concepts tested are Cisco IOS switch configuration for:

  1. VLAN Trunking (IEEE 802.1Q): Establishing inter-switch links capable of carrying traffic for multiple VLANs.
  2. Native VLAN: Understanding and configuring the untagged VLAN on 802.1Q trunks.
  3. Link Aggregation (EtherChannel/Port Aggregation Protocol): Grouping multiple physical links into a single logical link for increased bandwidth and redundancy.
  4. Link Aggregation Control Protocol (LACP): Dynamically negotiating EtherChannel links using active and passive modes.
  5. Interface Configuration: Applying settings to physical and logical (Port-Channel) interfaces, including using interface ranges.

Topics

#802.1q trunking#VLAN configuration#switch port modes

Community Discussion

No community discussion yet for this question.

Full 200-301 Practice