CISCO CCNA Exam – Q53

Refer to the exhibit.
CISCO CCNA Exam – Q53

All switch ports are assigned to the correct VLANs, but none of the hosts connected to SwitchA can communicate with hosts in the same VLAN connected to SwitchB. Based on the output shown, what is the most likely problem?

A. The access link needs to be configured in multiple VLANs.
B. The link between the switches is configured in the wrong VLAN.
C. The link between the switches needs to be configured as a trunk.
D. VTP is not configured to carry VLAN information between the switches.
E. Switch IP addresses must be configured in order for traffic to be forwarded between the switches.

Correct Answer: C

Explanation:
In order to pass traffic from VLANs on different switches, the connections between the switches must be configured as trunk ports.

CISCO CCNA Exam – Q52

Refer to the exhibit.
CISCO CCNA Exam – Q52

Which WAN protocol is being used?

A. ATM
B. HDLC
C. Frame Relay
D. PPP

Correct Answer: C

Explanation:
This question is to examine the show int command.
According to the information provided in the exhibit, we can know that the data link protocol used in this network is the Frame Relay protocol.
“LMI enq sent…”

CISCO CCNA Exam – Q51

Refer to the exhibit.
CISCO CCNA Exam – Q51

Given the output shown from this Cisco Catalyst 2950, what is the reason that interface FastEthernet 0/10 is not the root port for VLAN 2?

A. This switch has more than one interface connected to the root network segment in VLAN 2.
B. This switch is running RSTP while the elected designated switch is running 802.1d Spanning Tree.
C. This switch interface has a higher path cost to the root bridge than another in the topology.
D. This switch has a lower bridge ID for VLAN 2 than the elected designated switch.

Correct Answer: C

Explanation:
Since the port is in the blocked status, we must assume that there is a shorter path to the root bridge elsewhere.

CISCO CCNA Exam – Q50

Why will a switch never learn a broadcast address?

A. Broadcasts only use network layer addressing.
B. A broadcast frame is never forwarded by a switch.
C. A broadcast address will never be the source address of a frame.
D. Broadcast addresses use an incorrect format for the switching table.
E. Broadcast frames are never sent to switches.

Correct Answer: C

Explanation:
Switches dynamically learn MAC addresses based on the source MAC addresses that it sees, and since a broadcast is never the source, it will never learn the broadcast address.

CISCO CCNA Exam – Q49

Refer to the exhibit.
CISCO CCNA Exam – Q49

Why has this switch not been elected the root bridge for VLAN1?

A. It has more than one interface that is connected to the root network segment.
B. It is running RSTP while the elected root bridge is running 802.1d spanning tree.
C. It has a higher MAC address than the elected root bridge.
D. It has a higher bridge ID than the elected root bridge.

Correct Answer: D

Explanation:
The root bridge is determined by the lowest bridge ID, and this switch has a bridge ID priority of 32768, which is higher than the roots priority of 20481.

CISCO CCNA Exam – Q48

Which two link protocols are used to carry multiple VLANs over a single link? (Choose two.)

A. VTP
B. 802.1q
C. IGP
D. ISL
E. 802.3u

Correct Answers: B, D

Explanation:
Cisco switches can use two different encapsulation types for trunks, the industry standard 802.1q or the Cisco proprietary ISL. Generally, most network engineers prefer to use 802.1q since it is standards based and will interoperate with other vendors.

CISCO CCNA Exam – Q47

Assuming the default switch configuration, which VLAN range can be added, modified, and removed on a Cisco switch?

A. 1 through 1001
B. 2 through 1001
C. 1 through 1002
D. 2 through 1005

Correct Answer: B

Explanation:
VLAN 1 is the default VLAN on Cisco switch. It always exists and cannot be added, modified or removed.
VLANs 1002-1005 are default VLANs for FDDI & Token Ring and they can’t be deleted or used for Ethernet.
CISCO CCNA Exam – Q47

CISCO CCNA Exam – Q46

Which statement about VLAN operation on Cisco Catalyst switches is true?

A. When a packet is received from an 802.1Q trunk, the VLAN ID can be determined from the source MAC address and the MAC address table.
B. Unknown unicast frames are retransmitted only to the ports that belong to the same VLAN.
C. Broadcast and multicast frames are retransmitted to ports that are configured on different VLAN.
D. Ports between switches should be configured in access mode so that VLANs can span across the ports.

Correct Answer: B

Explanation:
Each VLAN resides in its own broadcast domain, so incoming frames with unknown destinations are only transmitted to ports that reside in the same VLAN as the incoming frame.

CISCO CCNA Exam – Q45

Refer to the topology shown in the exhibit.
CISCO CCNA Exam – Q45

Which three ports will be STP designated ports if all the links are operating at the same bandwidth? (Choose three.)

A. Switch A – Fa0/0
B. Switch A – Fa0/1
C. Switch B – Fa0/0
D. Switch B – Fa0/1
E. Switch C – Fa0/0
F. Switch C – Fa0/1

Correct Answers: B, C, D

Explanation:
This question is to check the spanning tree election problem.
1. First, select the root bridge, which can be accomplished by comparing the bridge ID, the smallest will be selected. Bridge-id= bridge priority + MAC address. The three switches in the figure all have the default priority, so we should compare the MAC address, it is easy to find that SwitchB is the root bridge.
2. Select the root port on the non-root bridge, which can be completed through comparing root path cost. The smallest will be selected as the root port.
3. Next, select the Designated Port. First, compare the path cost, if the costs happen to be the same, then compare the BID, still the smallest will be selected. Each link has a DP. Based on the exhibit above, we can find DP on each link. The DP on the link between SwitchA and SwitchC is SwitchA’Fa0/1, because it has the smallest MAC address.

CISCO CCNA Exam – Q44

Refer to the exhibit.
CISCO CCNA Exam – Q44

How should the FastEthernet0/1 ports on the switches that are shown in the exhibit be configured to allow connectivity between all devices?

A.
The ports only need to be connected by a crossover cable.
B.
SwitchX(config)# interface fastethernet 0/1
SwitchX(config-if)# switchport mode trunk
C.
SwitchX(config)# interface fastethernet 0/1
SwitchX(config-if)# switchport mode access
SwitchX(config-if)# switchport access vlan 1
D.
SwitchX(config)# interface fastethernet 0/1
SwitchX(config-if)# switchport mode trunk
SwitchX(config-if)# switchport trunk vlan 1
SwitchX(config-if)# switchport trunk vlan 10
SwitchX(config-if)# switchport trunk vlan 20

Correct Answer: B

Explanation:
IN order for multiple VLANs to cross switches, the connection between the switches must be a trunk. The “switchport mode trunk” command is all that is needed, the individual VLANs should not be listed over that trunk interface.