exam questions

Exam 350-401 All Questions

View all questions & answers for the 350-401 exam

Exam 350-401 topic 1 question 179 discussion

Actual exam question from Cisco's 350-401
Question #: 179
Topic #: 1
[All 350-401 Questions]


Refer to the exhibit. Communication between London and New York is down. Which command set must be applied to resolve this issue?

  • A. NewYork(config)#int f0/1 NewYork(config)#switchport nonegotiate NewYork(config)#end NewYork#
  • B. NewYork(config)#int f0/1 NewYork(config)#switchport mode trunk NewYork(config)#end NewYork#
  • C. NewYork(config)#int f0/1 NewYork(config)#switchport trunk encap dot1q NewYork(config)#end NewYork#
  • D. NewYork(config)#int f0/1 NewYork(config)#switchport mode dynamic desirable NewYork(config)#end NewYork#
Show Suggested Answer Hide Answer
Suggested Answer: C 🗳️

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
Babushka
Highly Voted 3 years, 7 months ago
Has to be C. TOS = Trunk Operational Status TAS = Trunk Administrative Status TNS = Trunk Negotiated Status TOT = Trunk Operational Trunk-Encapsulation TAT = Trunk Administrative Trunk-Encapsulation TNT = Trunk Negotiated Trunk-Encapsulation Operational = What we are doing at this moment Administrative = How we configured it Negotiated = What we asked for during the negotiation TAS is configured as Auto, so if other side is trunk and this side is auto then it will form trunk. There is no need for B. If we look for trunk-encapsulation TAT, it's set for ISL. It will not work for .1q. I think you need to change encapsulation to .1q, so answer should be C.
upvoted 82 times
raizer
3 years, 7 months ago
agree. perfectly explained
upvoted 2 times
...
baid
3 years, 2 months ago
Thanks for your explanation
upvoted 1 times
...
alawi2
2 years, 11 months ago
when i come upon comments like yours, it renews my faith in humanity XOXO
upvoted 12 times
...
...
Hamzaaa
Highly Voted 4 years ago
C is the correct the answer because: 1. the port is auto, so it tends to be access but if it detects the other side to be trunk, it will change automatically to mode trunk, 2. The problem is the protocol is Cisco ISL, it must be changed to .1q and that's what C config does
upvoted 21 times
[Removed]
3 years, 11 months ago
Agreed C, more info to back this up: https://learningnetwork.cisco.com/s/question/0D53i00000Ksyty/tostastns-tottattnt
upvoted 5 times
...
bendarkel
2 years, 9 months ago
Depends on how old the platform is. Newer platforms no longer use ISL, and defaults to dot1q.
upvoted 2 times
...
...
BT22
Most Recent 7 months, 2 weeks ago
Selected Answer: C
c is correct
upvoted 1 times
...
aatechler
9 months, 2 weeks ago
Selected Answer: C
c is correct
upvoted 1 times
...
dablais
9 months, 3 weeks ago
Selected Answer: C
ISL vs 802.1q
upvoted 1 times
...
[Removed]
11 months, 1 week ago
Selected Answer: C
it´s C
upvoted 1 times
...
Shri_Fcb10
11 months, 4 weeks ago
how can it be C as the command switchport mode trunk after encapsulation dot1q is missing
upvoted 2 times
...
donAdriano
1 year ago
########################## NewYork(config)#int f0/1 NewYork(config)#switchport trunk encap dot1q NewYork(config)#end NewYork#
upvoted 1 times
...
bier132
1 year, 9 months ago
Selected Answer: C
If Cisco switches are using Dynamic Trunking Protocol (DTP) between two ports, and one port is configured with the Inter-Switch Link (ISL) encapsulation, while the other port is configured with the IEEE 802.1Q (dot1q) encapsulation, the two ports will not negotiate a trunk. DTP will not be able to establish a trunk link between these two ports because ISL and dot1q are incompatible trunking encapsulation protocols. ISL is a Cisco-proprietary protocol for trunking, while dot1q is an industry-standard protocol widely used for trunking. Since they are different protocols, they cannot negotiate a trunk link using DTP. In this scenario, if you want to create a trunk between the two switches, you should configure both ports with the same trunking encapsulation protocol. If one switch is using ISL, the other switch should also use ISL. If one switch is using dot1q, the other switch should use dot1q as well. This way, they can successfully negotiate a trunk link and pass VLAN traffic between them.
upvoted 6 times
...
mp777
1 year, 9 months ago
Selected Answer: D
I would select D, because: A: other side has DTP enabled, so cannot disable DTP B: mode trunk, but missing encapsulation, which will be ISL vs dot1q C: encapsulation dot1q, but missing mode trunk, it will not make the switch port trunk D: CORRECT, because both, mode trunk and encapsulation will be negotiated by DTP
upvoted 1 times
mp777
1 year, 9 months ago
CORRECTION: although London has DTP enabled but has mode trunk configured, mode trunk negotiates trunking with NewYork which is set to auto. Last thing to configure then is the encapsulation, so C is correct.
upvoted 1 times
...
...
rami_mma
2 years, 1 month ago
C is the correct answer. The remote side configured with (switchport trunk enc isl) you only need to change it to dotq.
upvoted 1 times
...
Clauster
2 years, 1 month ago
Selected Answer: D
A is incorrect because you are setting the trunk to nonegotiate and that's not what we want B is incorrect because it's missing Switchport mode trunk encapsulation dot1Q. C is incorrect because it's missing switchport mode trunk D is the correct answer, setting a trunk port to Dynamic Desirable will send negotiations to the other end and it will Trunk 100% of the time. Set up the Packet tracer and test it yourself, It's gonna work.
upvoted 4 times
...
Ayman_B
2 years, 3 months ago
Selected Answer: C
for NewYork switch the DTP interface fa0/1 : TOS/TAS/TNS: ACCESS/AUTO/ACCESS TOT/TAT/TNT: NATIVE/ISL/NATIVE it shows that it is currently operating as an Access Port, in Dynamic Auto mode, and its negotiated to be an Access Port. The second line NATIVE/ISL/NATIVE. shows it is not forming or negotiating a Trunk with SW1. So to make it truly dynamic, it should put Fa1/0/1 on SW2 encapsulation type back into negotiate : NewYork(config)#int f0/1 NewYork(config)#switchport trunk encap dot1q NewYork(config)#end It can take 10 or 15 seconds for DTP to bring interfaces back up due to that 30 second time, but the interface did eventually bounce, and when it came back it is now showing : TOS/TAS/TNS: TRUNK/AUTO/TRUNK TOT/TAT/TNT: 802.1Q/NEGOTIATE/802.1Q for more details : https://loopedback.com/2017/08/26/dtp-dynamic-trunking-protocol-the-exam-information-and-a-lot-of-live-cli-output-to-demonstrate-behaviors-of-dtp/
upvoted 2 times
...
Parot
2 years, 6 months ago
NY site configured with ISL(cisco), but London use dot1.q. For me answer is C.
upvoted 1 times
...
cloud29
2 years, 6 months ago
Selected Answer: C
Its C, admin please change the answer.
upvoted 2 times
...
dougj
2 years, 6 months ago
Selected Answer: C
You need the correct encapsulaton. Answer must be C
upvoted 3 times
...
bendarkel
2 years, 9 months ago
On newer platforms and codes, ISL is no longer a trunk negotiation protocol. Dot1q is now the default. On such platforms, you only need to configure the interface as switchport mode trunk.
upvoted 2 times
danman32
1 year, 10 months ago
That may be true but in this exhibit, clearly NY isn't one of those newer platforms as it has ISL configured.
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