Exam 200-301 All QuestionsBrowse all questions from this exam
Question 1285

SIMULATION

-

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

-

All physical cabling is in place and verified. Switch SW-1 is pre-configured and inaccessible. SW-2 and SW-3 ports must be configured and operational to complete the configuration.

1. Configure SW-2 and SW-3 ports E0/0 to use the industry standard encapsulation method for trunking and only tag VLAN 10

2. Configure SW-2 and SW-3 ports E0/0 to send and receive untagged traffic over VLAN 11

3. Configure SW-2 and SW-3 ports E0/2 and E0/3 to use the industry standard encapsulation method for trunking and tag all VLANS

4. Configure SW-2 and SW-3 ports E0/2 and E0/3 for link aggregation using the industry standard protocol with the following requirements:

o SW-2 ports must not initiate the negotiation for the aggregation protocol

o SW-3 ports must immediately negotiate the aggregation protocol

o Use the designated number assignment

    Correct Answer:

Discussion
dorian81

# TASK 1 SW-2(config)# int Fa0/1 SW-2(config-if)# switchport trunk encapsulation dot1q SW-2(config-if)# switchport trunk allowed vlan 10 SW-3(config)# int Fa0/1 SW-3(config-if)# switchport trunk encapsulation dot1q SW-3(config-if)# switchport trunk allowed vlan 10 # TASK 2 SW-2(config)# int Fa0/1 SW-2(config-if)# switchport trunk native vlan 11 SW-3(config)# int Fa0/1 SW-3(config-if)# switchport trunk native vlan 11 # TASK 3 SW-2(config)# int range Fa0/2 - 3 SW-2(config-if-range)# switchport trunk encapsulation dot1q SW-2(config-if-range)# switchport mode trunk SW-3(config)# int range Fa0/2 - 3 SW-3(config-if-range)# switchport trunk encapsulation dot1q SW-3(config-if-range)# switchport mode trunk # TASK 4 SW-2(config)# int range Fa0/2 - 3 SW-2(config-if-range)# channel-group 23 mode passive SW-3(config)# int range Fa0/2 - 3 SW-3(config-if-range)# channel-group 23 mode active ALL# copy running-config startup-config

a67c04a

It should be: switchport trunk encapsulation dot1q switchport mode trunk switchport trunk allowed vlan 10,11 switchport trunk native vlan 11

Bran512

How does one map all of this on the exam? Or is this just selection?

Stefino77

*SW2 enable config t interface e0/0 switchport mode trunk switchport trunk allow vlan 10 switchport trunk encapsulation dot1q switchport trunk native vlan 11 exit interface range e0/2-3 channel-group 23 mode active exit interface port-channel 23 switchport mode trunk switchport trunk encapsulation dot1q switchport trunk native vlan 11 exit wr *SW3 enable config t interface e0/0 switchport mode trunk switchport trunk allow vlan 10 switchport trunk encapsulation dot1q switchport trunk native vlan 11 exit interface range e0/2-3 channel-group 23 mode passive exit interface port-channel 23 switchport mode trunk switchport trunk encapsulation dot1q switchport trunk native vlan 11 exit wr

KuyaErik101

Task 1 and 2 Sw-2 conf t interface E0/0 switchport mode trunk switchport trunk encapsulation dot1q switchport trunk native vlan 11 switchport trunk allowed vlan 10, 11 Sw-3 conf t interface E0/0 switchport mode trunk switchport trunk encapsulation dot1q switchport trunk native vlan 11 switchport trunk allowed vlan 10, 11 Task 3-4 sw-2 conf t interface range E0/2-3 switchport mode trunk switchport trunk encapsulation dot1q channel-group 23 mode passive Sw-3 conf t interface range E0/2-3 switchport mode trunk switchport trunk encapsulation dot1q channel-group 23 mode active

lmmujsi

the portchannel itself MUST be defined as a trunk also.

gopolo

Agreed Get up-to-date https://www.pinterest.com/pin/937522847419119666/

picho707

The answer appears to be correct.

picho707

I take it back. The statement "switchport access vlan 10" is incorrect. Its should be "switchport trunk allowed vlan 10"

AbdullahMohammad251

I think you are wrong, it says only "tag" not only "allow." Can you please explain why you think so?

86a50a6

tagged traffic is the allowed traffic on a trunk port, Untagged traffic is the traffic that is sent via the native vlan on a trunk port. Untagged traffic is alsof the traffic that is sent on a acces port.

AbdullahMohammad251

The second task asks you to allow sending and receiving on vlan11, if you are allowing only vlan 10 on the trunk link then vlan 11 will not be allowed!!