exam questions

Exam 200-301 All Questions

View all questions & answers for the 200-301 exam

Exam 200-301 topic 1 question 1285 discussion

Actual exam question from Cisco's 200-301
Question #: 1285
Topic #: 1
[All 200-301 Questions]

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

Show Suggested Answer Hide Answer
Suggested Answer:

Comments

Chosen Answer:
This is a voting comment (?). It is better to Upvote an existing comment if you don't have anything to add.
Switch to a voting comment New
dorian81
Highly Voted 1 year ago
# 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
upvoted 9 times
...
Essohjay
Most Recent 8 months, 4 weeks ago
SW2# conf t SW2(config)# int e0/0 SW2(config-if)# switchport trunk encapsulation dot1q SW2(config-if)# switchport mode trunk SW2(config-if)# switchport trunk allowed vlan 10 SW2(config-if)# switchport trunk native vlan 11 SW2(config-if)# int range e0/2-3 SW2(config int-range)# switchport trunk encapsulation dot1q SW2(config int-range)# switchport mode trunk SW2(config int-range)# channel-group 23 mode passive SW2(config int-range)#end SW2# write memory SW3# conf t SW3(config)# int e0/0 SW3(config-if)# switchport trunk encapsulation dot1q SW3(config-if)# switchport mode trunk SW3(config-if)# switchport trunk allowed vlan 10 SW3(config-if)# switchport trunk native vlan 11 SW3(config-if)# int range e0/2-3 SW3(config int-range)# switchport trunk encapsulation dot1q SW3(config int-range)# switchport mode trunk SW3(config int-range)# channel-group 23 mode active SW3(config int-range)#end SW3# write memory
upvoted 1 times
MinSun600
7 months, 3 weeks ago
aren't you missing the int port-channel 23 step after the channel-group ?
upvoted 1 times
...
...
Bran512
10 months ago
How does one map all of this on the exam? Or is this just selection?
upvoted 2 times
c9957e3
8 months, 2 weeks ago
you gotta do it in the CLI
upvoted 1 times
...
...
Stefino77
1 year ago
*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
upvoted 2 times
...
lmmujsi
1 year, 1 month ago
the portchannel itself MUST be defined as a trunk also.
upvoted 1 times
...
KuyaErik101
1 year, 1 month ago
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
upvoted 3 times
...
a67c04a
1 year, 2 months ago
It should be: switchport trunk encapsulation dot1q switchport mode trunk switchport trunk allowed vlan 10,11 switchport trunk native vlan 11
upvoted 3 times
...
picho707
1 year, 3 months ago
The answer appears to be correct.
upvoted 1 times
picho707
1 year, 3 months ago
I take it back. The statement "switchport access vlan 10" is incorrect. Its should be "switchport trunk allowed vlan 10"
upvoted 5 times
AbdullahMohammad251
1 year, 3 months ago
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!!
upvoted 1 times
...
AbdullahMohammad251
1 year, 3 months ago
I think you are wrong, it says only "tag" not only "allow." Can you please explain why you think so?
upvoted 1 times
86a50a6
1 year, 1 month ago
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.
upvoted 1 times
...
...
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...
exam
Someone Bought Contributor Access for:
SY0-701
London, 1 minute ago