Courseiva

CCNA Network Implementation Questions

75 of 94 questions · Page 1/2 · Network Implementation · Answers revealed

1
MCQeasy

A network technician configures an 802.1Q trunk link between two switches. After the configuration, VLAN 20 traffic is not passing across the trunk, although VLAN 10 traffic works fine. The technician verifies that both switches have VLAN 20 created and that the trunk is up. What is the most likely cause?

A.The native VLAN is mismatched between the switches.
B.VLAN 20 is not included in the allowed VLAN list on the trunk.
C.The trunk port is set to dynamic desirable mode.
D.The encapsulation type is ISL instead of 802.1Q.
AnswerB

Trunk links, by default, permit all VLANs to traverse them. However, network administrators often configure an 'allowed VLAN list' to restrict which VLANs are permitted on a specific trunk port for security or traffic management purposes. If VLAN 20 is explicitly excluded or simply not included in this configured list on either end of the trunk, its traffic will be dropped, preventing communication for devices in that VLAN across the link.

Why this answer

The most likely cause is that VLAN 20 is not included in the allowed VLAN list on the trunk. By default, an 802.1Q trunk allows all VLANs, but if the allowed VLAN list has been manually configured or pruned, VLAN 20 may have been excluded. Since VLAN 10 works, the trunk is operational, and both switches have VLAN 20 created, the issue is specifically that the trunk is not permitting VLAN 20 traffic.

Exam trap

CompTIA often tests the misconception that a native VLAN mismatch is the default cause of VLAN-specific traffic failures, but the real issue is usually the allowed VLAN list being misconfigured or pruned.

Why the other options are wrong

A

A native VLAN mismatch would cause traffic on the native VLAN (typically VLAN 1) to fail, not specifically VLAN 20. Since VLAN 10 works, the native VLAN is likely correct.

C

In this scenario, VLAN 10 traffic works fine, indicating the trunk is operational. Dynamic desirable mode would not cause selective VLAN failure; it affects trunk negotiation, not per-VLAN traffic filtering.

D

The question states that the trunk is configured with 802.1Q, so ISL encapsulation is not in use. If ISL were the issue, the trunk would likely not form or would have problems with all VLANs, not just VLAN 20.

2
MCQmedium

A company is deploying a wireless network that must support both 2.4 GHz and 5 GHz frequency bands. Which IEEE 802.11 standard supports both bands and is backward compatible with older devices?

A.A) 802.11b
B.B) 802.11g
C.C) 802.11n
D.D) 802.11ac
AnswerC

802.11n is the correct choice because it was the first widely adopted Wi-Fi standard to natively support operation in both the 2.4 GHz and 5 GHz frequency bands. This dual-band capability, combined with its use of Multiple-Input Multiple-Output (MIMO) technology, allows it to deliver significantly higher throughput and better range than its predecessors, fulfilling the requirement for both frequency bands.

Why this answer

802.11n (Wi-Fi 4) is the correct answer because it was the first standard to natively support both 2.4 GHz and 5 GHz bands simultaneously, using MIMO (Multiple Input Multiple Output) technology. It also maintains backward compatibility with older 802.11a/b/g devices through mandatory support for legacy modulation schemes (DSSS/CCK for 2.4 GHz and OFDM for 5 GHz).

Exam trap

The trap here is that candidates often confuse 802.11g (which is backward compatible with 802.11b but only 2.4 GHz) with a dual-band standard, or incorrectly assume 802.11ac supports 2.4 GHz because it is often marketed as 'dual-band' in consumer devices, but the IEEE 802.11ac-2013 amendment defines operation only in the 5 GHz band.

Why the other options are wrong

A

802.11b only operates in the 2.4 GHz band and does not support 5 GHz, so it cannot meet the requirement for dual-band support.

B

802.11g operates only on the 2.4 GHz band and does not support the 5 GHz band, so it cannot meet the requirement for dual-band support.

D

802.11ac operates only on the 5 GHz band and does not support 2.4 GHz, so it cannot meet the requirement of supporting both bands.

3
MCQmedium

A network administrator connects two switches with a trunk link that is configured to allow all VLANs. Workstations in VLAN 10 can communicate across the switches, but workstations in VLAN 20 cannot. Both VLANs are configured on the first switch. What is the most likely cause of the issue?

A.The native VLAN is mismatched on the two switches.
B.VLAN 20 is not created on the second switch.
C.The trunk uses ISL instead of 802.1Q.
D.The default gateway is missing for VLAN 20.
AnswerB

When a switch receives a frame on a trunk link tagged with a specific VLAN ID, it expects that VLAN to be locally defined in its VLAN database. If VLAN 20 is not created on the second switch, the switch lacks the necessary context to process frames belonging to that VLAN, effectively discarding them. This prevents any devices connected to the second switch from participating in VLAN 20, even if the trunk link is otherwise operational.

Why this answer

VLAN 20 is configured on the first switch but not on the second switch. Even though the trunk link allows all VLANs, the second switch must have VLAN 20 created in its VLAN database for traffic to be forwarded. Without the VLAN existing on the second switch, frames tagged for VLAN 20 are dropped at the receiving switch because there is no corresponding VLAN interface or forwarding table entry.

Exam trap

The N10-009 exam often tests the misconception that a trunk configured to 'allow all VLANs' automatically makes every VLAN functional across the link, when in fact each switch must have the VLAN defined in its local database for traffic to be processed.

Why the other options are wrong

A

A native VLAN mismatch would cause issues for untagged traffic on the trunk, but VLAN 20 is a tagged VLAN. Since VLAN 10 works, the trunk is functioning; the problem is specific to VLAN 20, which is likely not present on the second switch.

C

The trunk uses 802.1Q, not ISL, in modern networks. Even if ISL were used, it would affect all VLANs, not just VLAN 20, so it cannot explain why only VLAN 20 fails.

D

The issue is that VLAN 20 works on the first switch but not across the trunk, indicating the VLAN is missing on the second switch. A missing default gateway would prevent inter-VLAN routing but not affect Layer 2 communication within the same VLAN across switches.

4
MCQhard

A network architect is designing a Software-Defined Networking (SDN) based network. Which of the following components is responsible for making centralized forwarding decisions and communicating those decisions to the physical switches using southbound APIs?

A.Application layer
B.Control layer
C.Data plane
D.East-west interfaces
AnswerB

The control layer, embodied by the SDN controller, centralizes the network's control plane. It acts as the "brain" of the SDN architecture, making all forwarding decisions and maintaining a global view of the network topology. The controller then programs the underlying data plane devices (switches) with these decisions via southbound APIs, such as OpenFlow, dictating exactly how packets should be processed and forwarded. This centralization allows for dynamic and programmable network management.

Why this answer

In SDN architecture, the control layer (also known as the SDN controller) is the centralized entity responsible for making all forwarding decisions. It communicates these decisions to the physical switches via southbound APIs, such as OpenFlow, which program the flow tables in the data plane. This separation of the control plane from the data plane is the fundamental principle of SDN.

Exam trap

The trap here is that candidates confuse the control layer with the data plane, thinking that the physical switches themselves make forwarding decisions, but in SDN the control layer is logically centralized and the switches are simple forwarding devices.

Why the other options are wrong

A

The application layer in SDN contains business logic and network applications, but it does not make centralized forwarding decisions or communicate with switches via southbound APIs; that is the role of the control layer.

C

The data plane is responsible for forwarding packets based on decisions made by the control plane, not for making centralized forwarding decisions itself. In SDN, the control layer makes those decisions and communicates them via southbound APIs.

D

East-west interfaces are used for communication between controllers in a distributed SDN control plane, not for making centralized forwarding decisions or communicating with physical switches via southbound APIs.

5
MCQmedium

A network administrator adds a new server to VLAN 20. The switch port is configured as an access port in VLAN 20, and the server has a correct static IP address in that subnet. However, the server cannot communicate with other devices in the same VLAN. The VLAN exists on the switch and other devices in VLAN 20 are working. What is the most likely cause of this issue?

A.The switch port is configured as a trunk port instead of an access port
B.VLAN 20 is not allowed on the trunk to the router
C.The server does not have a default gateway configured
D.The port is administratively down
AnswerA

A server typically sends standard untagged Ethernet frames, as it is generally unaware of VLAN tagging. If the switch port connected to this server is mistakenly configured as a trunk port, it will expect incoming frames to be 802.1Q tagged with a specific VLAN ID. Since the server's frames arrive untagged, the switch will not correctly associate them with VLAN 20, effectively dropping them or placing them in a default native VLAN, thereby preventing communication within VLAN 20. This misconfiguration is a very common cause of connectivity failure for end devices.

Why this answer

The scenario states the switch port is configured as an access port in VLAN 20, but the server cannot communicate with other devices in the same VLAN. If the port were actually configured as a trunk port, it would expect frames to be tagged with a VLAN ID. An untagged frame from the server would be placed into the native VLAN (typically VLAN 1), not VLAN 20, causing a mismatch.

This explains why the server, despite having a correct static IP in VLAN 20's subnet, cannot reach other devices in VLAN 20.

Exam trap

CompTIA often tests the distinction between access and trunk ports by presenting a scenario where a device has correct IP settings but cannot communicate within its VLAN, tempting candidates to blame routing or gateway issues when the real problem is a layer 2 VLAN mismatch caused by trunk mode on an access port.

Why the other options are wrong

B

The question states the server cannot communicate with other devices in the same VLAN. A trunk to a router is irrelevant for intra-VLAN communication, which occurs at Layer 2 within the switch. The issue is local to the switch port configuration.

C

The server has a correct static IP address in the same subnet, and other devices in VLAN 20 are working, so communication within the VLAN does not require a default gateway. The issue is at Layer 2, not Layer 3.

D

The question states the server cannot communicate with other devices in the same VLAN, but other devices in VLAN 20 are working. If the port were administratively down, no devices on that port would work, and the server would not have link. The issue is specific to this server, not a port status problem.

6
MCQmedium

A network administrator needs to connect two buildings 2 km apart using single-mode fiber. Which transceiver type should be used?

A.1000BASE-T
B.1000BASE-SX
C.1000BASE-LX
D.10GBASE-SR
AnswerC

1000BASE-LX is the correct choice because it is specifically designed for Gigabit Ethernet over single-mode fiber optic cabling. The "LX" in its name signifies "Long Wavelength," indicating its use of longer wavelength lasers (1310 nm) suitable for extended distances. This standard supports reliable data transmission up to 5 kilometers, making it perfectly suitable for the 2 km distance between the two buildings using single-mode fiber.

Why this answer

1000BASE-LX (Long Wavelength) operates at 1310 nm over single-mode fiber and supports distances up to 5 km (and often up to 10 km with proper link budgets), making it the correct choice for a 2 km link. Single-mode fiber is required for distances beyond 550 m, and 1000BASE-LX is the Gigabit Ethernet standard designed for such single-mode runs.

Exam trap

The N10-009 exam often tests the misconception that 1000BASE-SX can be used for long distances because it is a common Gigabit Ethernet standard, but the trap is that SX is strictly for multimode fiber and limited to 550 m, while LX is the correct choice for single-mode runs beyond that distance.

Why the other options are wrong

A

1000BASE-T uses twisted-pair copper cabling with a maximum distance of 100 meters, far short of the 2 km requirement. Single-mode fiber requires a different transceiver type.

B

1000BASE-SX uses multimode fiber and has a maximum reach of about 550 meters, insufficient for a 2 km link.

D

10GBASE-SR is designed for multimode fiber and supports distances up to 300 meters, insufficient for 2 km over single-mode fiber.

7
MCQmedium

A network administrator has just connected a new access switch to the core switch via a trunk port. The administrator configured the trunk port on both switches with the same allowed VLAN list. However, hosts on VLAN 10 connected to the new access switch cannot communicate with hosts on VLAN 10 on the core switch. The trunk is operational and shows up/up. What is the most likely cause?

A.A) VLAN 10 has not been created on the new access switch
B.B) Native VLAN mismatch on the trunk
C.C) Trunk encapsulation mismatch (ISL vs 802.1Q)
D.D) STP is blocking the VLAN 10 traffic on the trunk
AnswerA

If VLAN 10 has not been explicitly created and activated within the new access switch's VLAN database, the switch will not recognize or process frames tagged with VLAN 10. Even if the trunk port is configured to permit VLAN 10, the switch will drop incoming frames for an unknown VLAN ID, effectively preventing traffic flow. A switch must have a local understanding of a VLAN to forward frames associated with it, regardless of trunk allowance.

Why this answer

The most likely cause is that VLAN 10 has not been created on the new access switch. Even though the trunk port is up/up and the allowed VLAN list matches, a switch will not forward traffic for a VLAN that does not exist in its local VLAN database. Without the VLAN being created, the switch drops all frames tagged with VLAN 10, preventing communication between hosts on that VLAN across the trunk.

Exam trap

The N10-009 exam often tests the misconception that a trunk with matching allowed VLAN lists is sufficient for traffic to pass, but candidates forget that the VLAN must exist in the local VLAN database on both switches for traffic to be forwarded.

Why the other options are wrong

B

A native VLAN mismatch would cause issues with untagged traffic, but the problem is that hosts on VLAN 10 cannot communicate. Since both switches have the same allowed VLAN list and the trunk is up/up, a native VLAN mismatch would not prevent tagged VLAN 10 traffic from passing.

C

The trunk is operational and shows up/up, indicating that the encapsulation is correctly negotiated or configured. If there were an encapsulation mismatch, the trunk would not come up, or at least show errors. The problem is specific to VLAN 10, not all VLANs.

D

STP blocking VLAN 10 traffic on the trunk would prevent communication, but the question states the trunk is operational and up/up, and STP typically blocks redundant paths, not a single trunk unless it's a loop. The issue is more likely that VLAN 10 doesn't exist on the new switch.

8
MCQmedium

A network engineer needs to segment a single physical switch into multiple broadcast domains to improve security and reduce traffic. Which technology should be implemented?

A.Spanning Tree Protocol (STP)
B.Virtual LAN (VLAN)
C.VLAN Trunking Protocol (VTP)
D.Access Control List (ACL)
AnswerB

A Virtual LAN (VLAN) is a logical grouping of network devices that allows a single physical switch to be segmented into multiple distinct broadcast domains. By assigning specific switch ports or even hosts to different VLANs, broadcast traffic originating within one VLAN is strictly confined to only the devices belonging to that same VLAN. This effectively isolates network segments, significantly improving security, reducing unnecessary network traffic, and enhancing network performance without requiring additional physical switches.

Why this answer

A VLAN (Virtual LAN) segments a physical switch into multiple isolated broadcast domains at Layer 2. By assigning ports to different VLANs, broadcast traffic is confined to each VLAN, improving security and reducing unnecessary traffic. This directly meets the requirement without requiring additional hardware.

Exam trap

CompTIA often tests the distinction between VLANs (which create broadcast domains) and VTP (which only propagates VLAN information), leading candidates to confuse configuration management with actual segmentation.

Why the other options are wrong

A

STP prevents loops in a network topology but does not segment a switch into multiple broadcast domains; it operates at Layer 2 to manage redundant paths, not to create separate broadcast domains.

D

ACLs filter traffic based on IP addresses or protocols but do not segment a switch into multiple broadcast domains; they operate at Layer 3/4, not Layer 2.

9
MCQmedium

A company is deploying VoIP phones and wants to ensure voice packets receive priority over data packets on the network. Which technology should be implemented on the switches and routers?

A.VLAN
B.Quality of Service (QoS)
C.Spanning Tree Protocol (STP)
D.Power over Ethernet (PoE)
AnswerB

Quality of Service (QoS) is essential for real-time applications like VoIP because it allows network administrators to prioritize specific types of traffic. By classifying voice packets and marking them with values like Differentiated Services Code Point (DSCP) or Class of Service (CoS), network devices can place them into high-priority queues. This ensures that voice traffic receives preferential treatment over less time-sensitive data, minimizing latency, jitter, and packet loss, which are critical for maintaining call quality.

Why this answer

Quality of Service (QoS) is the correct technology because it allows network devices to classify, mark, and prioritize voice traffic (e.g., using DSCP EF or CoS 5) over data traffic, ensuring low latency, jitter, and packet loss for VoIP. Switches and routers use QoS queuing mechanisms like LLQ or CBWFQ to guarantee bandwidth for voice packets, which is essential for real-time communications.

Exam trap

The N10-009 exam often tests the misconception that VLANs alone provide traffic prioritization, but VLANs only separate traffic; QoS is the actual mechanism for priority handling, and candidates frequently confuse logical separation with performance guarantees.

Why the other options are wrong

A

VLANs segment network traffic into separate broadcast domains but do not prioritize voice packets over data; they only isolate traffic, not provide quality of service.

C

STP prevents loops in redundant network topologies but does not prioritize voice traffic over data; it has no mechanism for traffic classification or queuing.

D

PoE provides power to devices like VoIP phones over Ethernet cables but does not prioritize voice packets over data packets. The question specifically asks for packet prioritization, which is handled by QoS, not PoE.

10
MCQmedium

An organization uses OSPF as its interior gateway protocol in a multi-area design. After a core router failure, the network takes several seconds to reconverge. Which technology can be implemented to improve convergence speed?

A.Implement LSA throttling
B.Enable OSPF fast hello timers
C.Configure BFD (Bidirectional Forwarding Detection)
D.Convert all areas to stub areas
AnswerC

Configuring BFD (Bidirectional Forwarding Detection) establishes a lightweight, independent detection mechanism that rapidly monitors the forwarding path between two routers. By sending small, periodic BFD control packets at sub-second intervals, it can detect link or neighbor failures significantly faster than OSPF's default hello/dead timers. This rapid detection allows OSPF to be immediately notified of a topology change, triggering a much quicker recalculation of routes and thus accelerating network convergence after a failure.

Why this answer

BFD provides sub-second failure detection times (as low as 50 ms) independent of the routing protocol, allowing OSPF to reconverge much faster than relying on its default dead timer intervals. By detecting link failures in milliseconds, BFD triggers OSPF to immediately recalculate routes, drastically reducing the convergence delay after a core router failure.

Exam trap

The N10-009 exam often tests the distinction between OSPF fast hello timers (which still rely on seconds-based dead intervals) and BFD (which provides true sub-second detection), leading candidates to mistakenly choose fast hello timers as the faster solution.

Why the other options are wrong

A

LSA throttling controls the rate of LSA generation and flooding, which can reduce CPU load during instability but does not speed up failure detection or convergence; it may actually delay convergence.

B

OSPF fast hello timers reduce the time to detect a neighbor failure, but they do not speed up the overall reconvergence process after a core router failure, which involves LSA flooding, SPF calculation, and routing table updates. BFD provides faster failure detection than fast hello timers and integrates with OSPF to trigger quicker reconvergence.

11
MCQhard

A network administrator is configuring OSPF on a router that has interfaces in only one area and does not perform route redistribution. Which OSPF router type best describes this router?

A.Backbone router
B.Internal router
C.Area Border Router (ABR)
D.Autonomous System Boundary Router (ASBR)
AnswerB

An internal router operates entirely within a single OSPF area and does not have any interfaces connecting to other OSPF areas or external routing domains. Its primary function is to maintain a link-state database for its local area and forward traffic within that area. The description perfectly matches this role, as the router has interfaces in only one OSPF area.

Why this answer

An internal router has all its interfaces in a single OSPF area and does not perform route redistribution. Since the router's interfaces are confined to one area and it does not connect to other routing domains, it fits the definition of an internal router. This type of router maintains a single link-state database for that area and does not generate Type 3 or Type 5 LSAs.

Exam trap

The N10-009 exam often tests the distinction between an internal router and an ABR by making candidates assume that any router not in area 0 is an internal router, but the trap is that an ABR must have interfaces in multiple areas, while an internal router has all interfaces in a single area regardless of which area it is.

Why the other options are wrong

A

A backbone router must have at least one interface in Area 0, but the question states the router has interfaces in only one area, which is not necessarily Area 0.

C

An Area Border Router (ABR) connects multiple OSPF areas, but the question states the router has interfaces in only one area, so it cannot be an ABR.

D

An ASBR is a router that redistributes routes from other routing protocols or autonomous systems into OSPF. The question states the router does not perform route redistribution, so it cannot be an ASBR.

12
MCQmedium

A network administrator is creating a new VLAN that will contain 20 devices. The administrator wants to use the most efficient subnet that provides enough usable IP addresses while minimizing waste. Which of the following subnet masks should be used?

A.255.255.255.240 (/28)
B.255.255.255.224 (/27)
C.255.255.255.248 (/29)
D.255.255.255.192 (/26)
AnswerB

This subnet mask, corresponding to a /27 CIDR prefix, allocates 5 host bits (32-27). This allows for 2^5 = 32 total IP addresses within the subnet. After reserving the network address and the broadcast address, there are 30 usable host addresses available. This is the smallest and most efficient subnet size that can accommodate the required 20 devices without significant waste of IP address space.

Why this answer

A /27 subnet mask (255.255.255.224) provides 32 total addresses, of which 30 are usable (2^5 - 2 = 30). This is the most efficient choice for 20 devices because it offers exactly enough usable IPs with minimal waste (only 10 unused addresses), whereas a /28 would provide only 14 usable addresses (insufficient) and a /29 would provide only 6 usable addresses (also insufficient).

Exam trap

The trap here is that candidates often confuse the total number of addresses in a subnet with the number of usable host addresses, forgetting to subtract 2 for the network and broadcast addresses, and may incorrectly select a /28 thinking it provides 16 addresses (when only 14 are usable).

Why the other options are wrong

A

A /28 subnet provides only 14 usable IP addresses (2^4 - 2 = 14), which is insufficient for 20 devices.

C

A /29 subnet provides only 6 usable IP addresses (2^(32-29)-2 = 6), which is insufficient for 20 devices.

D

A /26 subnet provides 62 usable addresses, which is excessive for 20 devices and wastes IP space. The question asks for the most efficient subnet with minimal waste, so /27 (30 usable addresses) is better.

13
MCQmedium

A company wants to deploy a wireless network in an office with high-density client requirements. Which 802.11 technology allows multiple antennas to transmit multiple spatial streams to increase throughput?

A.MIMO (Multiple-Input Multiple-Output)
B.OFDM (Orthogonal Frequency Division Multiplexing)
C.DSSS (Direct Sequence Spread Spectrum)
D.CSMA/CA (Carrier Sense Multiple Access with Collision Avoidance)
AnswerA

MIMO (Multiple-Input Multiple-Output) is a crucial technology for high-density wireless networks because it utilizes multiple antennas at both the transmitter and receiver to send and receive multiple data streams concurrently. This spatial multiplexing significantly increases the overall network capacity and throughput, allowing an access point to efficiently serve numerous clients or provide higher bandwidth to individual users. By leveraging spatial diversity, MIMO effectively multiplies the available data paths within the same frequency channel, which is essential for environments with many connected devices.

Why this answer

MIMO (Multiple-Input Multiple-Output) is the correct technology because it uses multiple antennas at both the transmitter and receiver to send and receive multiple independent spatial streams simultaneously. This spatial multiplexing directly increases data throughput without requiring additional bandwidth or higher modulation, making it ideal for high-density client environments.

Exam trap

The trap here is that candidates confuse OFDM with MIMO because both are associated with 802.11n/ac/ax, but OFDM is a modulation scheme, not a spatial-stream technology; MIMO is the specific antenna-array technique that multiplies throughput via parallel streams.

Why the other options are wrong

B

OFDM is a modulation scheme that divides a channel into multiple subcarriers, but it does not use multiple antennas to transmit multiple spatial streams. The question specifically asks for technology enabling multiple antennas and spatial streams, which is MIMO.

C

DSSS is a spread spectrum technique used in older 802.11b networks to reduce interference, but it does not use multiple antennas or spatial streams to increase throughput.

D

CSMA/CA is a media access control method used to avoid collisions on shared wireless channels, not a technology that uses multiple antennas to transmit multiple spatial streams for increased throughput.

14
MCQhard

A network engineer is configuring a router to provide IPv6 addressing via SLAAC for hosts on a subnet. The ISP has delegated a prefix 2001:db8:1::/48 and requires the router to advertise a specific prefix 2001:db8:1:1::/64. Which command must be configured on the router's interface to advertise this prefix?

A.ipv6 nd prefix
B.ipv6 address autoconfig
C.ipv6 unicast-routing
D.ipv6 dhcp server
AnswerA

This command is applied on a router interface to specify the IPv6 prefix(es) that the router should include in its Router Advertisement (RA) messages. By advertising a prefix with the "on-link" and "autonomous" flags set (which are default for SLAAC), it instructs IPv6 hosts on that segment to use this prefix to automatically generate their own unique IPv6 addresses, thereby enabling Stateless Address Autoconfiguration (SLAAC). This is the fundamental mechanism for a router to provide IPv6 addressing via SLAAC.

Why this answer

The 'ipv6 nd prefix' command is used on a router interface to advertise a specific IPv6 prefix in Router Advertisement (RA) messages for Stateless Address Autoconfiguration (SLAAC). This command allows the network engineer to override the default prefix derived from the interface address and explicitly advertise the delegated prefix 2001:db8:1:1::/64 as required by the ISP.

Exam trap

The N10-009 exam often tests the distinction between host-side SLAAC commands (like 'ipv6 address autoconfig') and router-side prefix advertisement commands (like 'ipv6 nd prefix'), leading candidates to confuse the device role in the SLAAC process.

Why the other options are wrong

B

The 'ipv6 address autoconfig' command enables stateless address autoconfiguration (SLAAC) on the interface, causing the router to generate its own IPv6 address from the advertised prefix, but it does not configure the router to advertise a prefix to other hosts. The question requires advertising a specific prefix, which is done with 'ipv6 nd prefix'.

C

The command 'ipv6 unicast-routing' enables IPv6 routing globally on the router, but it does not advertise a specific prefix on an interface for SLAAC. The question requires the interface-level command to advertise the prefix 2001:db8:1:1::/64, which is 'ipv6 nd prefix'.

D

The 'ipv6 dhcp server' command configures a DHCPv6 server on the interface, which is used for stateful address assignment or other configuration options, not for advertising prefixes via SLAAC. SLAAC relies on Router Advertisement messages, which are controlled by the 'ipv6 nd prefix' command.

15
MCQmedium

A company is implementing a DMZ to host public-facing web and email servers. The DMZ network uses private IP addresses, and the internal network also uses private IP addresses. The company has only one public IP address assigned to the border router's external interface. Which of the following should be configured to allow internet users to access the DMZ servers?

A.Port forwarding to the private IP addresses of the servers.
B.NAT with overload to translate multiple internal addresses to the single public IP.
C.Static NAT mapping each DMZ server to a unique public IP.
D.A VPN tunnel between the DMZ and the internal network.
AnswerA

Port forwarding, also known as Destination Network Address Translation (DNAT), is the correct method for allowing external internet users to access public-facing servers located in a DMZ that utilize private IP addresses. It configures the firewall or router to listen for incoming connections on a specific public IP address and port, then transparently redirects that traffic to the corresponding private IP address and port of the internal server. This enables multiple services, like web and email, to be hosted on different servers behind a single public IP.

Why this answer

Port forwarding (often configured as static NAT with a single public IP) allows the border router to forward incoming traffic on specific TCP/UDP ports (e.g., 80 for web, 25 for SMTP) to the private IP addresses of the DMZ servers. Since the company has only one public IP, this is the only way to direct external requests to the correct internal server without requiring multiple public IPs.

Exam trap

The trap here is that candidates confuse PAT (overload NAT) with port forwarding, assuming that PAT alone can handle inbound connections, when in fact PAT only supports outbound-initiated sessions unless explicit port forwarding rules are configured.

Why the other options are wrong

B

NAT with overload (PAT) allows multiple internal hosts to share a single public IP for outbound traffic, but it does not enable inbound access from the internet to specific private IPs in the DMZ. The question requires inbound access to servers, which is achieved by port forwarding, not overload.

C

Static NAT requires a unique public IP for each DMZ server, but the company has only one public IP address, making this option impossible.

D

A VPN tunnel between the DMZ and internal network does not provide internet users access to DMZ servers; it only secures communication between the DMZ and internal network. The question requires external access from the internet, not internal connectivity.

16
MCQmedium

A network administrator is implementing a new wireless network that will use WPA2-Enterprise. Which of the following must be configured on the network to support this security method?

A.A RADIUS server
B.A pre-shared key
C.A certificate authority
D.A VPN concentrator
AnswerA

When implementing a new wireless network using WPA2, a RADIUS (Remote Authentication Dial-In User Service) server is essential for WPA2-Enterprise mode. This mode leverages 802.1X for port-based network access control, providing robust, centralized authentication for individual users or devices. The RADIUS server verifies user credentials against a directory service, offering superior security and scalability compared to pre-shared keys by assigning unique encryption keys per session.

Why this answer

WPA2-Enterprise uses 802.1X authentication, which requires a RADIUS server to centralize authentication, authorization, and accounting (AAA). The RADIUS server validates user credentials (e.g., against Active Directory or LDAP) and distributes the Pairwise Master Key (PMK) to the access point, enabling per-user, per-session encryption keys. Without a RADIUS server, the enterprise authentication framework cannot function.

Exam trap

The trap here is that candidates confuse WPA2-Enterprise with WPA2-Personal and assume a pre-shared key is required, or they overgeneralize the role of a certificate authority, thinking it is mandatory for all enterprise Wi-Fi deployments when it is only required for specific EAP methods like EAP-TLS.

Why the other options are wrong

B

WPA2-Enterprise uses 802.1X authentication, which requires a RADIUS server for centralized authentication, not a pre-shared key. A pre-shared key is used in WPA2-Personal, not Enterprise.

C

WPA2-Enterprise uses 802.1X authentication, which requires a RADIUS server, not a certificate authority. While certificates may be used in the authentication process, the CA is not a mandatory component for WPA2-Enterprise; the RADIUS server handles authentication.

17
MCQmedium

A network engineer is installing a WLAN in a warehouse with many metal shelves and racks. During a site survey, the engineer notices significant signal degradation in certain areas. Which wireless propagation phenomenon is most likely causing the issue?

A.Refraction
B.Diffraction
C.Reflection
D.Absorption
AnswerC

In a warehouse filled with metal shelves, Wi-Fi signals frequently encounter these highly conductive surfaces. This causes the electromagnetic waves to bounce off, similar to light off a mirror, leading to multiple signal paths arriving at the receiver. This phenomenon, known as multipath interference, can result in significant signal degradation, dead zones, and reduced data throughput due to constructive and destructive interference.

Why this answer

In a warehouse with many metal shelves and racks, the primary cause of signal degradation is reflection. Metal surfaces act as RF reflectors, causing the wireless signal to bounce off them, which leads to multipath interference and dead zones where the signal cancels out or becomes too weak to be usable. This is a common issue in environments with high metal density, as the reflected waves interfere with the direct path signal.

Exam trap

CompTIA often tests the trap where candidates confuse reflection with diffraction, thinking that signal bending around metal edges (diffraction) is the main issue, but in dense metal environments, reflection off flat metal surfaces is the dominant cause of signal degradation and dead zones.

Why the other options are wrong

A

Refraction involves the bending of radio waves as they pass through media of different densities, such as air to glass. In a warehouse with metal shelves and racks, the primary issue is signal bouncing off metal surfaces, not bending through different materials.

B

Diffraction involves waves bending around obstacles, but the primary issue with metal shelves and racks is signal bouncing off these surfaces, causing multipath interference, not bending around them.

D

Absorption occurs when wireless signals are absorbed by materials like water or concrete, converting energy to heat. In this warehouse, metal shelves and racks primarily cause signal reflection, not absorption, as metal reflects rather than absorbs RF energy.

18
MCQmedium

A router receives a packet destined for 10.0.0.15. It has the following routes in the routing table: 10.0.0.0/8 via 192.168.1.1, 10.0.0.0/16 via 192.168.2.1, 0.0.0.0/0 via 192.168.3.1. Which route will be used?

A.Default route (0.0.0.0/0)
B.10.0.0.0/16 via 192.168.2.1
C.10.0.0.0/8 via 192.168.1.1
D.None; the packet is dropped
AnswerB

Routers prioritize routes based on the longest prefix match principle. The destination IP address 10.0.0.15 falls squarely within the 10.0.0.0/16 network because the first 16 bits of the destination IP match the network address. Since this route offers a more specific match (16 bits) compared to other available routes, it will be selected by the router to forward the packet towards the next hop, 192.168.2.1.

Why this answer

The router will use the route 10.0.0.0/16 via 192.168.2.1 because it has the longest prefix match (16 bits) for the destination 10.0.0.15. The /16 route is more specific than the /8 route and the default route, so it is preferred regardless of administrative distance or metric.

Exam trap

The trap here is that candidates often assume administrative distance or metric determines the route selection, but the longest prefix match always takes precedence over these metrics when multiple routes match the destination.

Why the other options are wrong

A

The destination 10.0.0.15 matches the 10.0.0.0/16 route with a longer prefix length (16) than the default route (0), so the router will use the more specific route, not the default.

C

The route 10.0.0.0/8 has a longer prefix length than the default route but a shorter prefix length than 10.0.0.0/16. Since the destination 10.0.0.15 falls within both 10.0.0.0/8 and 10.0.0.0/16, the router selects the most specific match, which is 10.0.0.0/16.

D

The router has a default route (0.0.0.0/0) and two specific routes that match the destination 10.0.0.15. Since the longest prefix match rule applies, the route with the most specific prefix (10.0.0.0/16) is used, so the packet is not dropped.

19
MCQmedium

A network administrator is connecting two switches and wants to increase the bandwidth between them while also providing redundancy in case one link fails. Which technology should be configured on the switch ports?

A.Spanning Tree Protocol (STP)
B.Link Aggregation Control Protocol (LACP)
C.VLAN trunking (802.1Q)
D.Power over Ethernet (PoE)
AnswerB

Link Aggregation Control Protocol (LACP), defined by IEEE 802.3ad, is a standard protocol that dynamically negotiates and manages the bundling of multiple physical Ethernet links into a single logical channel, often called a port channel or EtherChannel. This aggregation significantly increases the total available bandwidth between the two switches by distributing traffic across all active links. Furthermore, LACP provides automatic failover; if one physical link within the bundle fails, traffic is seamlessly redistributed among the remaining operational links, ensuring continuous connectivity and enhanced redundancy.

Why this answer

Link Aggregation Control Protocol (LACP) allows multiple physical links between two switches to be combined into a single logical link, increasing aggregate bandwidth and providing redundancy: if one physical link fails, traffic continues over the remaining links. This directly meets the requirement for both higher bandwidth and link-level fault tolerance.

Exam trap

The trap here is that candidates confuse STP's loop prevention with redundancy, but STP actively blocks redundant links to avoid loops, whereas LACP allows all links to forward traffic simultaneously while still providing failover.

Why the other options are wrong

A

STP prevents loops but does not increase bandwidth or provide active link redundancy; it blocks redundant links rather than using them for load balancing.

C

VLAN trunking (802.1Q) is used to carry multiple VLANs over a single link, not to increase bandwidth or provide link redundancy between switches.

D

PoE provides power over Ethernet cables to devices like IP cameras or phones, but does not increase bandwidth or provide link redundancy between switches.

20
MCQmedium

A network administrator is configuring a trunk link between two switches. The link is up, but devices on VLAN 30 cannot communicate across the trunk. Devices on VLAN 10 and 20 can communicate. What should the administrator verify?

A.Ensure the native VLAN is the same on both switches
B.Verify that VLAN 30 is included in the allowed VLAN list on both switches
C.Check the trunk encapsulation type on both switches
D.Confirm that port security is not enabled on the trunk interfaces
AnswerB

This is the most direct and common reason for a single VLAN's traffic failing to traverse an otherwise operational trunk link. Trunk ports are often explicitly configured with a list of allowed VLANs that are permitted to send and receive traffic across the link. If VLAN 30 is inadvertently excluded from this allowed list on either switch, its tagged frames will be dropped, preventing communication for that specific VLAN while others may function correctly.

Why this answer

The trunk link is operational for VLANs 10 and 20 but not for VLAN 30, which indicates that VLAN 30 is likely not permitted on the trunk. By default, a trunk allows all VLANs, but if an administrator has manually configured an allowed VLAN list, VLAN 30 may have been omitted. Verifying that VLAN 30 is included in the allowed VLAN list on both switches will resolve the issue.

Exam trap

The trap here is that candidates often confuse native VLAN mismatch (which causes spanning-tree or BPDU issues) with a missing allowed VLAN, or they assume encapsulation must be checked even though the trunk is already operational for other VLANs.

Why the other options are wrong

A

The native VLAN mismatch would cause issues with untagged traffic, but the problem is specific to VLAN 30, which is a tagged VLAN. Since VLANs 10 and 20 work, the trunk is operational; the issue is that VLAN 30 is not allowed on the trunk.

C

The trunk encapsulation type (e.g., 802.1Q vs ISL) must match on both ends for trunking to work at all. Since VLANs 10 and 20 already communicate, the trunk is operational, so encapsulation mismatch is not the issue.

D

Port security restricts traffic based on MAC addresses, but the issue is VLAN-specific communication across a trunk. Since VLANs 10 and 20 work, port security is not blocking the trunk; the problem is VLAN 30 not being allowed on the trunk.

21
MCQmedium

A network administrator is configuring a router-on-a-stick to route between two VLANs (VLAN 10 and VLAN 20). The router has two subinterfaces: GigabitEthernet0/1.10 with encapsulation dot1Q 10 and IP 10.10.10.1/24, and GigabitEthernet0/1.20 with encapsulation dot1Q 20 and IP 10.10.20.1/24. The switch port connected to the router is configured as an access port in VLAN 10. Hosts in VLAN 10 can ping the router's VLAN 10 interface, but hosts in VLAN 20 cannot ping the router's VLAN 20 interface. What is the most likely cause?

A.The router subinterface for VLAN 20 is not enabled.
B.The switch port connecting to the router should be configured as a trunk.
C.The hosts in VLAN 20 do not have a default gateway configured.
D.The router's VLAN 20 subinterface has an incorrect IP address.
AnswerB

For a "router on a stick" configuration to function, the single physical link between the switch and the router must carry traffic for multiple VLANs. This requires the switch port connected to the router to be configured as an 802.1Q trunk port. A trunk port allows frames from different VLANs, identified by their respective VLAN tags, to traverse the same physical link, enabling the router's subinterfaces to receive and send tagged traffic for each configured VLAN. Without this, the switch would treat the port as an access port for a single VLAN, blocking traffic from other VLANs.

Why this answer

The router-on-a-stick design requires the switch port connecting to the router to be configured as a trunk port, not an access port. An access port only carries traffic for a single VLAN (VLAN 10 in this case), so frames from VLAN 20 are dropped at the switch port before reaching the router. Configuring the port as a trunk with allowed VLANs 10 and 20 would enable the router's subinterfaces to receive and forward traffic for both VLANs.

Exam trap

CompTIA often tests the distinction between access and trunk ports in router-on-a-stick scenarios, trapping candidates who assume that configuring subinterfaces alone is sufficient without ensuring the switch port is set to trunk mode.

Why the other options are wrong

C

The hosts in VLAN 20 cannot ping the router's VLAN 20 interface because the switch port is an access port in VLAN 10, so frames from VLAN 20 are not received by the router. Even if hosts lacked a default gateway, they could still ping the router's directly connected interface IP if Layer 2 connectivity existed.

D

The router's VLAN 20 subinterface IP address (10.10.20.1/24) is correct for the VLAN 20 network. The issue is that the switch port is an access port in VLAN 10, so VLAN 20 traffic never reaches the router, making the IP configuration irrelevant.

22
MCQmedium

A network administrator wants to allow wireless clients to seamlessly roam between access points without re-authenticating to the RADIUS server for each transition. Which IEEE standard should be implemented?

A.802.11r
B.802.11k
C.802.11w
D.802.1X
AnswerA

IEEE 802.11r, also known as Fast BSS Transition (FT), is specifically designed to enable seamless and rapid roaming for wireless clients between access points within the same Extended Service Set (ESS). It achieves this by allowing clients to pre-authenticate with target APs or by using a faster key exchange mechanism, significantly reducing the authentication latency that would otherwise disrupt real-time applications like VoIP. This standard minimizes the time a client is disconnected during a handoff, ensuring a smooth user experience.

Why this answer

802.11r, also known as Fast BSS Transition (FT), enables wireless clients to roam between access points without re-authenticating to the RADIUS server by using a cached Pairwise Master Key (PMK) and performing a faster, over-the-air or over-the-DS key exchange. This reduces the time required for roaming handoffs, which is critical for real-time applications like VoIP.

Exam trap

CompTIA often tests the distinction between 802.11k (which helps clients decide where to roam) and 802.11r (which speeds up the actual authentication process), leading candidates to confuse 'neighbor reports' with 'fast roaming authentication'.

Why the other options are wrong

B

802.11k provides neighbor reports and radio resource management to assist roaming decisions, but it does not eliminate the need for re-authentication to the RADIUS server during transitions.

C

802.11w is designed for management frame protection, not for seamless roaming or reducing re-authentication overhead. It does not address the requirement of avoiding RADIUS re-authentication during roaming.

D

802.1X is an authentication framework used for port-based network access control, not a standard for seamless roaming. It requires re-authentication when transitioning between access points, which contradicts the goal of avoiding re-authentication.

23
MCQeasy

A network engineer needs to connect two buildings that are 200 meters apart with a 1 Gbps link. The path is outdoors and susceptible to lightning strikes. Which cable type is the most appropriate for this scenario?

A.Cat6a UTP
B.Multimode fiber optic
C.Cat5e UTP
D.Single-mode fiber optic
AnswerB

Multimode fiber, specifically using standards like 1000BASE-SX, is the optimal choice for a 1 Gbps connection over 200 meters. It reliably supports this speed over distances up to 550 meters, easily exceeding the requirement. Crucially, fiber optic cabling is completely immune to electromagnetic interference and lightning strikes, making it ideal for connecting separate buildings and ensuring robust, high-speed data transmission without electrical hazards.

Why this answer

Multimode fiber optic cable is the most appropriate choice because it supports 1 Gbps over distances up to 550 meters (using OM2/OM3 fiber) and is completely immune to electromagnetic interference (EMI) from lightning strikes. Unlike copper cabling, fiber uses light pulses for transmission, so it does not conduct electricity, making it ideal for outdoor runs between buildings where lightning is a risk.

Exam trap

The trap here is that candidates often choose Cat6a UTP because they focus on bandwidth and distance but forget the outdoor lightning risk, assuming that higher-category copper can handle longer distances, when in fact all UTP copper is limited to 100 meters for Ethernet and is conductive.

Why the other options are wrong

A

Cat6a UTP is limited to 100 meters for 1 Gbps and is not suitable for outdoor use due to susceptibility to lightning strikes and lack of protection against environmental interference.

C

Cat5e UTP supports only up to 100 meters for 1 Gbps, but the distance is 200 meters, exceeding its maximum segment length. Additionally, UTP is not suitable for outdoor use in lightning-prone areas as it can conduct electrical surges.

D

Single-mode fiber optic is designed for long-distance links (typically kilometers) and is overkill for a 200-meter run; multimode fiber is more cost-effective for this distance and still provides 1 Gbps.

24
MCQmedium

A technician installs a new wireless access point that requires 25 watts of power using Power over Ethernet (PoE). The existing switch only supports 802.3af (15.4W per port). What is the most likely result?

A.The access point will power on but may not transmit at full power.
B.The access point will not power on.
C.The switch port will be damaged.
D.The access point will power on and function normally.
AnswerB

The access point requires 25W, but the switch port, adhering to 802.3af (PoE) standards, can only supply a maximum of 15.4W. This significant power deficit means the access point will not receive sufficient electrical current to complete its boot sequence and initialize its internal components. Consequently, the device will remain unpowered and completely unresponsive.

Why this answer

The existing switch supports only 802.3af (PoE), which provides a maximum of 15.4 watts per port. The access point requires 25 watts, which exceeds the 802.3af power budget. Since the switch cannot deliver the required power, the access point will not power on.

This is a strict power negotiation failure under IEEE 802.3 standards.

Exam trap

The trap here is that candidates often assume a device will 'work at reduced power' or 'negotiate down' when the power requirement exceeds the standard, but PoE standards enforce a strict power classification and will not power a device that cannot be fully supported.

Why the other options are wrong

A

802.3af (PoE) provides a maximum of 15.4W per port, but the access point requires 25W. The switch cannot supply enough power, so the AP will not power on at all; it will not operate at reduced power.

C

The switch port is designed to handle standard PoE power levels; drawing more than 15.4W from an 802.3af port will not damage the port because the switch detects the power class and will not supply power if the device requests more than the port can provide.

D

The access point requires 25W, but 802.3af provides only 15.4W per port. Insufficient power means the AP will not power on at all, not function normally.

25
MCQmedium

A company is deploying a wireless network in an office where employees move between floors. They want clients to authenticate once and maintain connectivity without re-authenticating when roaming between access points (APs). Which IEEE wireless standard provides this fast roaming capability?

A.802.11r
B.802.11i
C.802.11e
D.802.11n
AnswerA

IEEE 802.11r, also known as Fast BSS Transition (FT), significantly improves roaming performance for wireless clients moving between access points within the same network. It achieves this by allowing the client and the new access point to pre-authenticate and pre-establish security keys, thereby minimizing the re-authentication delay during a handoff. This rapid key exchange process ensures a near-seamless transition, crucial for latency-sensitive applications like Voice over IP.

Why this answer

802.11r, also known as Fast BSS Transition (FT), enables clients to roam between access points without re-authenticating at each new AP. It achieves this by using a cached Pairwise Master Key (PMK) and a four-way handshake that is optimized to reduce the time required for reassociation, typically completing in under 50 milliseconds. This ensures seamless connectivity for mobile users moving between floors.

Exam trap

The N10-009 exam often tests the distinction between 802.11i (security) and 802.11r (fast roaming), so the trap here is confusing the authentication protocol with the roaming optimization standard, leading candidates to pick 802.11i because it deals with keys and handshakes.

Why the other options are wrong

B

802.11i defines security standards (WPA2) for wireless networks, not fast roaming. The question specifically asks for fast roaming capability, which is provided by 802.11r.

C

802.11e defines Quality of Service (QoS) enhancements for wireless networks, not fast roaming or authentication. It does not address the requirement of maintaining connectivity without re-authenticating when roaming between APs.

D

802.11n is a high-throughput standard that increases data rates using MIMO and channel bonding, but it does not provide fast roaming or authentication caching. The question specifically asks for fast roaming capability, which is provided by 802.11r.

26
MCQmedium

A company is implementing a wireless network and needs to support high-density client environments with minimal interference. Which IEEE 802.11 standard operates in the 5 GHz band and provides the highest throughput among the options?

A.802.11ac
B.802.11n
C.802.11g
D.802.11b
AnswerA

802.11ac is the optimal choice for high-throughput wireless networks because it operates exclusively in the less congested 5 GHz band, supporting wider channels up to 160 MHz. This standard leverages advanced technologies like multi-user MIMO (MU-MIMO) and beamforming to achieve theoretical multi-gigabit speeds, making it ideal for demanding applications requiring significant bandwidth.

Why this answer

802.11ac (Wi-Fi 5) operates exclusively in the 5 GHz band and supports up to 8 spatial streams, 256-QAM modulation, and channel bonding up to 160 MHz, yielding theoretical throughput exceeding 6.9 Gbps. This makes it the highest-throughput option among the listed standards for high-density environments with minimal interference, as the 5 GHz band offers more non-overlapping channels and less co-channel contention than 2.4 GHz.

Exam trap

The trap here is that candidates often confuse 802.11n as the highest-throughput option because it supports both bands and is widely deployed, but they overlook that 802.11ac is strictly 5 GHz and offers significantly higher throughput through wider channels and higher-order modulation.

Why the other options are wrong

B

802.11n operates in both 2.4 GHz and 5 GHz bands but provides lower maximum throughput (up to 600 Mbps) compared to 802.11ac, which can exceed 1 Gbps in the 5 GHz band, making it unsuitable for the highest throughput requirement.

C

802.11g operates in the 2.4 GHz band, not the 5 GHz band, and its maximum throughput is 54 Mbps, which is far lower than 802.11ac's multi-Gbps speeds.

D

802.11b operates in the 2.4 GHz band with a maximum throughput of 11 Mbps, far below the 5 GHz band and high throughput required for high-density environments.

27
MCQhard

An organization uses OSPF as its interior gateway protocol in a multi-area design. After a core router failure, the network takes a long time to reconverge. Which technology can be implemented to improve convergence speed?

A.Use static routes instead of OSPF
B.Increase OSPF hello and dead timers
C.Implement Bidirectional Forwarding Detection (BFD)
D.Configure all routers in a single OSPF area
AnswerC

Bidirectional Forwarding Detection (BFD) is a lightweight, protocol-independent mechanism designed to provide rapid fault detection for forwarding paths between network devices. By establishing a BFD session between OSPF neighbors and sending very frequent, small hello packets (often in milliseconds), BFD can detect link or neighbor failures significantly faster than OSPF's native hello and dead timers. When BFD detects a failure, it immediately notifies OSPF, allowing the routing protocol to quickly re-converge and re-calculate routes in sub-second times, minimizing service disruption.

Why this answer

BFD provides sub-second failure detection by sending rapid, lightweight hello packets independently of OSPF's own hello mechanism. When a core router fails, BFD detects the link down in milliseconds and immediately signals OSPF to trigger reconvergence, drastically reducing the time OSPF would otherwise spend waiting for its own dead timer to expire.

Exam trap

CompTIA often tests the misconception that increasing OSPF timers or using a single area speeds up convergence, when in fact BFD is the correct technology for sub-second failure detection without altering OSPF's own protocol timers.

Why the other options are wrong

A

Static routes lack dynamic adaptation; they cannot improve OSPF convergence speed after a failure because they require manual intervention to update, whereas OSPF reconverges automatically.

B

Increasing OSPF hello and dead timers would slow down failure detection, making convergence even slower, not faster.

28
MCQmedium

A network administrator needs to connect two switches located in separate buildings 150 meters apart. The connection must support 10 Gbps speeds. Which cabling type is most appropriate?

A.Cat6a twisted pair
B.Cat7 twisted pair
C.Multi-mode fiber optic
D.Single-mode fiber optic
AnswerC

Multi-mode fiber optic cable, specifically when utilizing the 10GBASE-SR standard, is an excellent choice for this 150-meter link between buildings. This standard supports 10 Gigabit Ethernet speeds over multi-mode fiber up to 300 meters, comfortably accommodating the required distance. Its larger core allows for the use of less expensive LED or VCSEL transceivers, making it a highly cost-effective and performance-appropriate solution for intermediate distances like 150 meters.

Why this answer

Multi-mode fiber optic (MMF) is the most appropriate choice because it supports 10 Gbps speeds over distances up to 300 meters (using OM3 or OM4 fiber) with cost-effective transceivers (e.g., 10GBASE-SR). The 150-meter distance exceeds the 100-meter maximum for twisted-pair copper cabling (Cat6a or Cat7) at 10 Gbps, making fiber the only viable option among the choices.

Exam trap

The trap here is that candidates often assume Cat7 is superior to Cat6a for longer distances, but both are limited to 100 meters for 10GBASE-T, and the question's 150-meter requirement forces the choice to fiber; CompTIA often tests this distance limitation to distinguish copper from fiber solutions.

Why the other options are wrong

A

Cat6a twisted pair has a maximum distance of 100 meters for 10 Gbps, but the buildings are 150 meters apart, exceeding this limit.

B

Cat7 twisted pair has a maximum distance of 100 meters for 10 Gbps, but the buildings are 150 meters apart, exceeding this limit.

D

Single-mode fiber optic is designed for long-distance transmission (typically kilometers), not for a short 150-meter link. Multi-mode fiber is more cost-effective and sufficient for this distance at 10 Gbps.

29
MCQmedium

A network administrator is connecting two switches to increase bandwidth and provide redundancy. Which technology should be used to combine multiple physical links into a single logical link?

A.Spanning Tree Protocol
B.Link Aggregation Control Protocol
C.VLAN Trunking Protocol
D.Rapid Spanning Tree Protocol
AnswerB

Link Aggregation Control Protocol (LACP) is a standardized protocol that dynamically bundles multiple physical Ethernet links between two network devices, typically switches, into a single logical channel. This process, known as link aggregation or EtherChannel, significantly increases the available bandwidth and provides crucial fault tolerance. If one of the physical links within the aggregated group fails, traffic automatically redistributes across the remaining active links, ensuring high availability and improved throughput.

Why this answer

Link Aggregation Control Protocol (LACP) is the correct technology because it allows multiple physical Ethernet links to be combined into a single logical link, increasing aggregate bandwidth and providing redundancy. LACP (IEEE 802.3ad) automatically negotiates and manages the bundling of ports between switches, ensuring that traffic is load-balanced across the member links and that the bundle remains operational even if one physical link fails.

Exam trap

The N10-009 exam often tests the misconception that STP or RSTP can be used to increase bandwidth, but the trap here is that STP and RSTP only provide redundancy by blocking ports to prevent loops, not by actively combining links for higher throughput.

Why the other options are wrong

A

Spanning Tree Protocol (STP) prevents loops in redundant networks but does not combine multiple physical links into a single logical link; it blocks redundant paths rather than aggregating bandwidth.

C

VLAN Trunking Protocol (VTP) is used to manage VLAN configurations across switches, not to combine physical links into a single logical link for bandwidth and redundancy.

D

Rapid Spanning Tree Protocol (RSTP) is used to prevent loops in a network topology, not to combine multiple physical links into a single logical link. The question specifically asks for a technology to aggregate links, which is not RSTP's function.

30
MCQmedium

A network administrator needs to upgrade the backbone link between two switches to fiber optic to eliminate electromagnetic interference. The distance between the switches is 350 meters. Which transceiver type should be used?

A.1000BASE-SX
B.1000BASE-LX
C.1000BASE-CX
D.1000BASE-T
AnswerA

1000BASE-SX is the optimal choice for upgrading a backbone link to fiber optic over a 350-meter distance. This standard utilizes multi-mode fiber, which is cost-effective for medium-range applications and perfectly supports distances up to 550 meters. Its use of shorter wavelength lasers (850 nm) makes it suitable for the specified requirement, providing reliable gigabit connectivity while effectively avoiding electromagnetic interference.

Why this answer

1000BASE-SX (option A) is correct because it supports distances up to 550 meters over multimode fiber (MMF) at 850 nm wavelength, making it suitable for the 350-meter backbone link. It is designed to eliminate electromagnetic interference (EMI) by using fiber optic cabling, and the distance falls within its maximum reach for common multimode fiber types like OM2 or OM3.

Exam trap

The N10-009 exam often tests the distance limitations of fiber transceivers, and the trap here is that candidates might choose 1000BASE-LX because they assume 'longer distance is always better,' overlooking that 1000BASE-SX is the correct, cost-effective choice for the given 350-meter range over multimode fiber.

Why the other options are wrong

B

1000BASE-LX is designed for single-mode fiber with distances up to 5 km, but the question specifies a distance of 350 meters over multimode fiber, where 1000BASE-SX is the appropriate choice for cost-effective short-range links.

C

1000BASE-CX uses copper twinaxial cable, not fiber optic, and is limited to distances up to 25 meters, far short of the required 350 meters.

D

1000BASE-T uses twisted-pair copper cabling (Cat5e or higher) and is susceptible to electromagnetic interference, which the question explicitly requires eliminating. It also has a maximum distance of 100 meters, far less than the 350 meters needed.

31
MCQeasy

A network engineer needs to connect two devices that are 150 meters apart with a 10 Gbps link. Which cabling type is most suitable?

A.Cat6a UTP
B.Cat7 STP
C.Single-mode fiber
D.Multimode fiber
AnswerC

Single-mode fiber is the correct choice because it is specifically engineered for transmitting light over very long distances with minimal signal loss and dispersion. Its extremely small core diameter (typically 9 microns) allows only a single path for light to travel, effectively eliminating modal dispersion which limits multimode fiber. This capability enables 10 Gbps speeds to extend for many kilometers, making it exceptionally well-suited and highly reliable for a 150-meter link while providing significant headroom for future speed upgrades.

Why this answer

Single-mode fiber (SMF) is the correct choice because it supports 10 Gbps transmission over distances well beyond 150 meters, typically up to 10 km or more using 10GBASE-LR optics. In contrast, copper cabling like Cat6a or Cat7 is limited to 100 meters for 10GBASE-T, and multimode fiber (MMF) with 10GBASE-SR is limited to about 300-400 meters depending on the fiber grade (e.g., OM3/OM4), but SMF provides the most reliable and future-proof solution for this distance.

Exam trap

The trap here is that candidates often assume multimode fiber is sufficient for any distance under 300 meters, but the exam emphasizes 'most suitable' based on scalability and performance, making single-mode fiber the better choice even for shorter runs when future-proofing is considered.

Why the other options are wrong

A

Cat6a UTP is limited to distances of up to 100 meters for 10 Gbps, so it cannot support a 150-meter link.

B

Cat7 STP is a copper cabling standard that supports up to 10 Gbps but only over distances up to 100 meters. The required 150 meters exceeds this limit, making it unsuitable.

D

Multimode fiber (MMF) typically supports 10 Gbps up to 300-400 meters with OM3/OM4, but 150 meters is well within its range. However, the question asks for the 'most suitable' cabling. Single-mode fiber (SMF) is more suitable for future-proofing and longer distances, and MMF is often used for shorter runs within data centers.

But the key here is that MMF can actually work at 150m for 10 Gbps, so it's not strictly wrong. However, the exam likely expects SMF for any distance over 100m for 10 Gbps, as MMF's reach at 10 Gbps is limited to 300m with OM3, but SMF is more reliable and scalable. Actually, MMF can work, but SMF is better.

The question's correct answer is SMF, so MMF is wrong because it's less suitable for this distance due to higher attenuation and modal dispersion compared to SMF, though it could technically work.

32
MCQhard

A network engineer is configuring a new wireless LAN for a high-density environment such as a conference hall. The engineer needs to minimize co-channel interference. Which of the following should be configured on the access points?

A.Increase transmit power
B.Decrease transmit power
C.Decrease beacon interval
D.Implement channel bonding
AnswerB

In a high-density wireless environment, decreasing transmit power effectively shrinks the coverage area of each Access Point (AP). This allows for a greater number of APs to be deployed in closer proximity, utilizing non-overlapping channels more efficiently. By reducing the cell size, co-channel interference between adjacent APs operating on the same frequency is minimized, thereby improving overall network capacity and client performance. This strategy is crucial for maximizing spectral efficiency.

Why this answer

In a high-density environment like a conference hall, decreasing transmit power on access points reduces the cell size, which allows for more APs to be placed closer together without their coverage areas overlapping excessively. This minimizes co-channel interference by ensuring that APs on the same channel are physically separated, improving overall throughput and client performance.

Exam trap

The trap here is that candidates mistakenly think increasing transmit power improves performance in dense environments, when in fact it exacerbates co-channel interference by creating larger, overlapping cells.

Why the other options are wrong

A

Increasing transmit power in a high-density environment like a conference hall actually increases co-channel interference because overlapping cells will have stronger signals, worsening contention and reducing overall capacity.

C

Decreasing the beacon interval increases the frequency of beacon transmissions, which adds overhead and can increase co-channel interference, not minimize it.

D

Channel bonding combines adjacent channels to increase throughput, but in a high-density environment like a conference hall, it actually increases co-channel interference by consuming more spectrum and reducing the number of non-overlapping channels available.

33
MCQmedium

A company wants to increase the bandwidth between two switches without upgrading the existing 1 Gbps copper links. Both switches support 802.3ad. Which technology should be implemented?

A.Link aggregation (LACP)
B.VLAN trunking
C.Port mirroring
D.StackWise
AnswerA

Link Aggregation Control Protocol (LACP) is an IEEE 802.3ad standard that dynamically bundles multiple physical Ethernet links into a single logical channel. This process effectively increases the aggregate bandwidth between two network devices by distributing traffic across the bundled links, providing both higher throughput and redundancy. By utilizing existing switch ports, LACP achieves a significant bandwidth increase without requiring an upgrade to higher-speed interfaces.

Why this answer

Link aggregation using LACP (802.3ad) allows multiple 1 Gbps copper links to be combined into a single logical link, increasing bandwidth between the two switches without upgrading the physical interfaces. Since both switches support 802.3ad, they can negotiate and manage the aggregated link dynamically, providing both increased throughput and link redundancy.

Exam trap

The trap here is that candidates often confuse link aggregation with stacking (StackWise) or VLAN trunking, thinking any multi-link technology increases bandwidth, but only LACP/802.3ad properly combines physical links for higher throughput between two switches.

Why the other options are wrong

B

VLAN trunking (802.1Q) is used to carry multiple VLANs over a single link, not to increase bandwidth between switches. It does not combine multiple physical links into one logical link for higher throughput.

C

Port mirroring is used to copy traffic from one port to another for monitoring or analysis, not to increase bandwidth between switches. It does not aggregate links to provide higher throughput.

D

StackWise is a Cisco proprietary technology for stacking multiple switches into a single logical unit, not for increasing bandwidth between two separate switches using existing copper links. It requires specific stacking cables and does not use 802.3ad.

34
MCQmedium

A network administrator is designing a Layer 2 network with redundant links between switches. Which protocol should be implemented to prevent loops in the network?

A.STP (Spanning Tree Protocol)
B.OSPF (Open Shortest Path First)
C.VRRP (Virtual Router Redundancy Protocol)
D.LACP (Link Aggregation Control Protocol)
AnswerA

Spanning Tree Protocol (STP) is fundamental for Layer 2 network stability, actively preventing switching loops that arise from redundant physical paths. It achieves this by dynamically placing specific ports into a blocking state, ensuring only one active logical path exists between any two network segments. This process, managed through Bridge Protocol Data Units (BPDUs), creates a loop-free tree topology, eliminating broadcast storms and MAC address table instability while still providing path redundancy in case of a link failure.

Why this answer

STP (Spanning Tree Protocol) is the correct choice because it is specifically designed to prevent Layer 2 loops in networks with redundant links. It achieves this by placing redundant switch ports into a blocking state, creating a loop-free logical topology while maintaining physical redundancy for failover.

Exam trap

The trap here is that candidates often confuse STP with VRRP or OSPF because both involve 'redundancy' and 'loop prevention,' but STP is the only protocol that operates at Layer 2 to prevent switching loops.

Why the other options are wrong

B

OSPF is a Layer 3 routing protocol used to exchange routes between routers, not a Layer 2 loop prevention mechanism. It does not operate at the data link layer and cannot prevent loops in a switched network.

C

VRRP is a First Hop Redundancy Protocol (FHRP) that provides gateway redundancy at Layer 3, not loop prevention at Layer 2. It does not prevent loops in a switched network.

D

LACP is used for link aggregation to combine multiple physical links into a single logical link for increased bandwidth and redundancy, but it does not prevent loops; it actually requires a loop-free topology to function correctly.

35
MCQmedium

A network administrator is configuring a trunk link between a switch and a router to support multiple VLANs. The switch's trunk port is set to dot1q encapsulation. Which configuration must match on the router to ensure proper communication?

A.The IP address of the router interface must be in the same subnet as the management VLAN
B.The subinterface encapsulation must match the switch's native VLAN default
C.The native VLAN on the router subinterface must be consistent with the switch's native VLAN
D.The router must be configured with inter-VLAN routing static routes
AnswerC

When configuring an 802.1Q trunk link between a switch and a router, the native VLAN configuration must be identical on both devices. The native VLAN carries untagged frames across the trunk, meaning these frames are not encapsulated with an 802.1Q tag. If the native VLANs differ, frames sent untagged by one device will be interpreted as belonging to a different VLAN by the other, leading to communication failures and potential security vulnerabilities where traffic might be misdirected or dropped.

Why this answer

The native VLAN on the router subinterface must match the switch's native VLAN to ensure untagged frames are handled consistently. On a dot1q trunk, the native VLAN is the only VLAN whose frames are sent untagged; if the router expects a different native VLAN, it will drop or misclassify those frames, breaking communication for that VLAN.

Exam trap

The trap here is that candidates often confuse 'native VLAN' with 'default VLAN' or think the encapsulation type (dot1q) alone is sufficient, overlooking the critical requirement that the native VLAN must be explicitly matched on both sides of the trunk.

Why the other options are wrong

A

The router interface's IP address does not need to match the management VLAN subnet; trunk links carry multiple VLANs, and the router subinterface IPs correspond to their respective VLANs, not the management VLAN.

B

The subinterface encapsulation must match the switch's trunk encapsulation (dot1q), not the native VLAN default. The native VLAN is a separate concept from encapsulation type.

D

Inter-VLAN routing static routes are not required for trunk link communication; the router uses subinterfaces with 802.1Q encapsulation to route between VLANs directly.

36
MCQmedium

A network administrator is configuring a new WAN link between two offices using MPLS. Which of the following is a characteristic of MPLS?

A.It uses label switching to forward packets
B.It requires a dedicated point-to-point circuit
C.It operates at Layer 7 of the OSI model
D.It encrypts all data in transit
AnswerA

MPLS fundamentally enhances packet forwarding efficiency by utilizing short, fixed-length labels instead of relying solely on complex IP header lookups. Label Switch Routers (LSRs) within an MPLS domain assign these labels to incoming packets, then swap them at each hop, directing traffic along pre-established Label Switched Paths (LSPs). This label-based forwarding significantly reduces lookup overhead compared to traditional longest-prefix-match IP routing, leading to faster and more predictable data delivery across the WAN.

Why this answer

MPLS (Multiprotocol Label Switching) operates by attaching short, fixed-length labels to packets at the ingress router. These labels are used by intermediate routers (LSRs) to make forwarding decisions based on the label rather than the IP header, which enables faster switching and traffic engineering. This label-swapping mechanism is the defining characteristic of MPLS, distinguishing it from traditional IP routing.

Exam trap

The trap here is that candidates confuse MPLS with a dedicated leased line or assume it provides security features like encryption, when in fact MPLS is a label-switching technology that operates below Layer 3 and above Layer 2.

Why the other options are wrong

B

MPLS does not require a dedicated point-to-point circuit; it can operate over various underlying transport technologies like Ethernet, Frame Relay, or IP networks, using label switching to create virtual paths.

C

MPLS operates at Layer 2.5 (between Layer 2 and Layer 3), not at Layer 7. It uses labels for forwarding, not application-layer processing.

D

MPLS does not inherently encrypt data; it is a label-switching mechanism that operates at Layer 2.5, and encryption (e.g., IPsec) is an optional add-on, not a characteristic of MPLS itself.

37
MCQeasy

A company is extending its network to a new building located 200 meters away. The link must support 1 Gbps speeds. Which cabling type should be used?

A.Cat5e
B.Cat6
C.Single-mode fiber
D.Coaxial cable
AnswerC

Single-mode fiber is the optimal choice for extending a 1 Gbps network 200 meters. It utilizes a very small core (typically 9 microns) that allows only a single path for light to travel, significantly minimizing modal dispersion. This characteristic enables single-mode fiber to support high bandwidths, such as 1 Gbps, over distances ranging from several kilometers to tens of kilometers, far exceeding the 200-meter requirement with superior reliability.

Why this answer

Single-mode fiber (SMF) is the correct choice because it supports 1 Gbps speeds over distances far exceeding 200 meters, typically up to 5 km or more using 1000BASE-LX optics. Copper cabling like Cat5e and Cat6 is limited to a maximum segment length of 100 meters for 1 Gbps (1000BASE-T), making them unsuitable for this 200-meter link.

Exam trap

The trap here is that candidates often assume Cat6 can exceed 100 meters because it supports higher frequencies (250 MHz vs. 100 MHz for Cat5e), but the 100-meter distance limit for 1000BASE-T is a physical layer standard constraint, not a cable grade limitation.

Why the other options are wrong

A

Cat5e supports 1 Gbps only up to 100 meters; the required distance is 200 meters, exceeding its maximum segment length.

B

Cat6 cabling has a maximum recommended distance of 100 meters for 1 Gbps, but the link requires 200 meters, exceeding this limit.

D

Coaxial cable cannot support 1 Gbps speeds over 200 meters; it is typically limited to lower speeds and shorter distances, and is not suitable for modern high-speed Ethernet.

38
MCQmedium

A network engineer configures an 802.1Q trunk between two switches. The trunk is up, but VLAN 10 traffic is not passing. The engineer checks and confirms that VLAN 10 exists on both switches. The show interfaces trunk command displays 'allowed VLANs: none'. What is the most likely cause?

A.The trunk encapsulation is not set to dot1q
B.The native VLAN mismatch
C.The allowed VLAN list is empty
D.VLAN 10 is not created on one of the switches
AnswerC

The explicit output "allowed VLANs: none" directly indicates that the trunk port is currently configured to permit no VLANs to traverse it. Even if VLAN 10 exists on both switches, it cannot pass traffic across this trunk until it is explicitly added to the allowed VLAN list for that interface. This configuration prevents any tagged or untagged traffic from being forwarded over the trunk, effectively isolating the connected network segments.

Why this answer

The 'show interfaces trunk' output showing 'allowed VLANs: none' explicitly indicates that the allowed VLAN list on the trunk has been manually cleared or set to none, which blocks all VLAN traffic including VLAN 10. Even though VLAN 10 exists on both switches, the trunk port's VLAN filter prevents any frames from being forwarded. This is the most direct cause of the issue.

Exam trap

CompTIA often tests the distinction between 'VLAN not created' and 'VLAN not allowed on trunk' — the trap here is that candidates assume VLAN 10 not passing must mean it doesn't exist on one switch, ignoring that the trunk's allowed VLAN list can independently block traffic even when the VLAN is present on both sides.

Why the other options are wrong

A

The trunk is up and the 'show interfaces trunk' output shows 'allowed VLANs: none', which directly indicates an empty allowed VLAN list, not an encapsulation issue. If the encapsulation were wrong, the trunk would not form or would show encapsulation mismatch errors.

D

The question states that VLAN 10 exists on both switches, so this option is factually incorrect based on the given information.

39
MCQeasy

A company is deploying a new wireless network in a warehouse. The network administrator needs to ensure that clients can seamlessly roam between access points without losing connectivity. Which of the following should be configured?

A.A) Same SSID and security settings on all APs
B.B) Different channels per AP to reduce interference
C.C) WPA2-Enterprise with RADIUS authentication
D.D) Mesh topology for AP interconnection
AnswerA

To enable seamless client roaming across a multi-AP environment like a warehouse, all Access Points (APs) must broadcast the identical Service Set Identifier (SSID). Furthermore, consistent security settings, whether WPA2-Personal with a shared passphrase or WPA2-Enterprise with 802.1X, are crucial. This uniformity allows client devices to perceive the network as a single entity, facilitating rapid re-association with the strongest available AP without requiring manual intervention or re-authentication from the user.

Why this answer

Configuring the same SSID and security settings on all access points (APs) is essential for seamless roaming because clients use the SSID to identify the network and the security credentials to authenticate. When a client moves between APs, it can re-associate without needing to re-authenticate or discover a new network, provided the SSID and security parameters (e.g., PSK or 802.1X configuration) are identical. This ensures a smooth handoff and maintains connectivity during roaming.

Exam trap

The trap here is that candidates often confuse the need for different channels (to avoid interference) with the requirement for seamless roaming, or they assume that enterprise authentication (WPA2-Enterprise) is mandatory for roaming, when in fact the core requirement is simply consistent SSID and security settings across all APs.

Why the other options are wrong

C

WPA2-Enterprise with RADIUS authentication provides strong security but does not directly affect seamless roaming; roaming is primarily enabled by consistent SSID and security settings across APs.

D

While mesh topology can extend coverage, it does not inherently ensure seamless roaming; clients may still experience connectivity loss during handoff if APs are not configured with the same SSID and security settings.

40
MCQmedium

A network engineer is planning a wireless LAN for an open office with 50 users. To maximize performance by using multiple non-overlapping channels, which frequency band should be primarily used?

A.2.4 GHz
B.5 GHz
C.6 GHz
D.900 MHz
AnswerB

For an open office with 50 users, high density and performance are key. The 5 GHz band offers significantly more non-overlapping channels (e.g., 23 in the U.S. for 20 MHz channels) compared to 2.4 GHz. This abundance of channels facilitates robust channel planning, minimizes co-channel interference between access points, and supports higher data rates for numerous concurrent users, making it ideal for high-density WLANs in office environments.

Why this answer

The 5 GHz band is the best choice for maximizing performance in an open office with 50 users because it offers up to 23 non-overlapping channels (using 20 MHz channels) compared to only 3 in the 2.4 GHz band. This allows for better channel reuse, reduced co-channel interference, and higher aggregate throughput in a dense user environment.

Exam trap

The N10-009 exam often tests the misconception that more channels always mean better performance, but the trap here is that candidates may overlook client device compatibility and regulatory availability when considering the 6 GHz band, or they may incorrectly assume the 2.4 GHz band's longer range is beneficial for high-density performance.

Why the other options are wrong

A

The 2.4 GHz band has only three non-overlapping channels (1, 6, 11), limiting performance in high-density environments like an open office with 50 users. The 5 GHz band offers many more non-overlapping channels, reducing co-channel interference.

C

The 6 GHz band (Wi-Fi 6E) offers many non-overlapping channels, but the question asks for the band to be 'primarily used' in an open office with 50 users. While 6 GHz provides high capacity, its shorter range and poorer penetration through obstacles make it less suitable as the primary band for general coverage in an open office compared to 5 GHz, which balances range and channel availability.

D

The 900 MHz band offers very limited non-overlapping channels (typically 1-2) and low data rates, making it unsuitable for maximizing performance in a dense 50-user open office environment.

41
MCQmedium

A network engineer needs to implement a wireless network in a large open-plan office with high client density. The network must provide the fastest possible speeds and efficient handling of many simultaneous connections. Which IEEE 802.11 standard should be used?

A.802.11ac
B.802.11n
C.802.11ax
D.802.11r
AnswerC

802.11ax, also known as Wi-Fi 6, is the most suitable standard for a large open-plan office due to its optimization for high-density client environments. It significantly improves efficiency and throughput by utilizing Orthogonal Frequency-Division Multiple Access (OFDMA) for simultaneous communication with multiple clients and enhanced Multi-User Multiple-Input Multiple-Output (MU-MIMO) for both uplink and downlink. These features ensure better performance and capacity, even with numerous devices competing for bandwidth and diverse traffic types.

Why this answer

802.11ax (Wi-Fi 6) is the correct choice because it introduces Orthogonal Frequency Division Multiple Access (OFDMA) and MU-MIMO (both uplink and downlink), which significantly improve spectral efficiency and capacity in high-density environments. It also supports 1024-QAM modulation for higher data rates, making it ideal for an open-plan office with many simultaneous connections.

Exam trap

The trap here is that candidates often confuse 802.11ac (Wi-Fi 5) as the fastest standard because of its high single-user throughput, but they overlook that 802.11ax (Wi-Fi 6) is specifically designed for high-density, multi-user scenarios with OFDMA and improved MU-MIMO.

Why the other options are wrong

A

802.11ac operates only on the 5 GHz band and lacks OFDMA and MU-MIMO enhancements for uplink, making it less efficient than 802.11ax for high-density environments with many simultaneous connections.

B

802.11n operates on 2.4 GHz and 5 GHz bands with maximum data rates up to 600 Mbps, but it lacks OFDMA and MU-MIMO, making it inefficient for high-density environments compared to 802.11ax.

D

802.11r focuses on fast roaming (reducing authentication latency during handoffs) and does not improve overall speed or capacity for high-density environments.

42
MCQhard

A network administrator is configuring OSPF on routers in a multi-area network. The administrator wants to ensure that a router in area 1 does not learn external routes (Type 5 LSAs) injected by an ASBR in area 0, but it must still learn inter-area routes (Type 3 LSAs). The administrator wants to reduce the routing table size. Which OSPF area type should be configured for area 1?

A.Stub area
B.Totally stubby area
C.Not-so-stubby-area (NSSA)
D.Normal area
AnswerA

A stub area is designed to reduce the routing table size within an OSPF area by preventing the flooding of Type 5 External LSAs, which represent routes learned from outside the OSPF domain. Instead of individual external routes, the Area Border Router (ABR) connected to a stub area injects a default route (0.0.0.0/0) as a Type 3 LSA. This allows routers within the stub area to reach external destinations while still learning inter-area routes (Type 3 LSAs) from other OSPF areas, thus optimizing resource usage without isolating them from the rest of the OSPF domain.

Why this answer

A stub area blocks Type 5 LSAs (external routes) from entering the area while still allowing Type 3 LSAs (inter-area routes). This meets the requirement of preventing external routes from the ASBR in area 0 from being learned by routers in area 1, while still permitting inter-area routing and reducing the routing table size.

Exam trap

The N10-009 exam often tests the distinction between stub and totally stubby areas, where candidates mistakenly choose totally stubby when they only need to block external routes but still require inter-area routes.

Why the other options are wrong

B

A totally stubby area blocks both Type 5 LSAs (external routes) and Type 3 LSAs (inter-area routes), but the question requires that inter-area routes (Type 3 LSAs) still be learned.

C

An NSSA allows Type 7 LSAs (which are converted to Type 5) and does not block external routes from an ASBR in area 0; it only prevents Type 5 LSAs from other areas while allowing redistribution. The question requires blocking all external routes (Type 5 LSAs) from area 0, which a stub area does by default, but an NSSA does not.

D

A normal area allows all LSA types, including Type 5 external LSAs, so the router in area 1 would still learn external routes, failing the requirement to block them.

43
MCQmedium

A network administrator is configuring a new switch to carry traffic for multiple VLANs on a single link to a router. Which IEEE standard is used for VLAN tagging on Ethernet trunks?

A.802.3af
B.802.1D
C.802.1Q
D.802.11ac
AnswerC

IEEE 802.1Q is the industry standard for Virtual Local Area Network (VLAN) tagging on Ethernet networks. It inserts a 4-byte tag into the Ethernet frame header, specifically between the Source Address and Type/Length fields, to carry VLAN identification (VID) information. This tagging allows a single physical link, known as a trunk port, to transport traffic for multiple VLANs, enabling switches to correctly forward frames to their intended VLAN segments. Without 802.1Q, a switch port can typically only belong to a single VLAN.

Why this answer

802.1Q is the IEEE standard that defines VLAN tagging on Ethernet trunks, inserting a 4-byte tag into the Ethernet frame to identify VLAN membership. This allows multiple VLANs to traverse a single link between a switch and a router, enabling inter-VLAN routing without separate physical interfaces.

Exam trap

The N10-009 exam often tests the distinction between 802.1Q (tagging) and 802.1D (STP), leading candidates to confuse VLAN trunking with loop prevention protocols.

Why the other options are wrong

A

802.3af is the IEEE standard for Power over Ethernet (PoE), not for VLAN tagging on Ethernet trunks.

B

802.1D is the IEEE standard for Spanning Tree Protocol (STP), not for VLAN tagging on Ethernet trunks. VLAN tagging is defined by 802.1Q.

D

802.11ac is a wireless networking standard for Wi-Fi, not used for VLAN tagging on Ethernet trunks.

44
MCQmedium

A network administrator is deploying a wireless network in a warehouse environment with many metal racks. Clients using 802.11ac report strong signal strength but very low throughput. What is the most likely cause?

A.Co-channel interference from neighboring access points
B.Multipath interference caused by signal reflections off metal surfaces
C.The encryption method is set to WEP, which limits throughput
D.Too many clients are connected to the same access point
AnswerB

In a warehouse environment, metal racks, shelving, and machinery act as excellent reflectors for wireless signals. This causes radio waves to travel multiple paths to the receiver, arriving at slightly different times and phases. This phenomenon, known as multipath interference, leads to signal distortion, constructive and destructive interference, and increased retransmissions, significantly reducing effective throughput even when the overall signal strength appears strong. While technologies like MIMO (Multiple-Input Multiple-Output) are designed to mitigate multipath, severe reflections in such environments can still overwhelm the system and degrade performance.

Why this answer

In a warehouse with many metal racks, 802.11ac signals reflect off the metal surfaces, creating multiple signal paths that arrive at the receiver at slightly different times. This multipath interference causes phase cancellation and intersymbol interference, which degrades the signal-to-noise ratio and forces the use of lower modulation and coding schemes (MCS), drastically reducing throughput despite strong RSSI.

Exam trap

The trap here is that candidates see 'strong signal strength' and assume the issue is at Layer 2 or higher (co-channel interference, encryption, or client count), but the metal racks create a classic multipath scenario where RSSI is high but SNR is low due to phase cancellation.

Why the other options are wrong

A

Co-channel interference typically causes signal degradation and reduced throughput, but the question states strong signal strength, which is inconsistent with co-channel interference. The low throughput here is due to multipath from metal racks, not neighboring AP interference.

C

WEP encryption is outdated and insecure, but it does not inherently limit throughput; modern 802.11ac clients can still achieve high data rates with WEP. The low throughput in this scenario is due to multipath interference from metal racks, not encryption.

45
MCQhard

A company is connecting two buildings that are 300 meters apart. The link must support 10 Gbps. Which combination of cable and transceiver should be used?

A.Cat6a UTP with 10GBASE-T
B.Cat5e UTP with 1000BASE-T
C.Single-mode fiber with 10GBASE-LR
D.Multimode fiber with 10GBASE-SR
AnswerC

10GBASE-LR is specifically designed for long-reach 10 Gigabit Ethernet over single-mode fiber, supporting distances up to 10 kilometers. This makes it an ideal and robust solution for connecting two buildings 300 meters apart, providing ample bandwidth and significant distance headroom. Single-mode fiber minimizes modal dispersion, ensuring signal integrity over extended runs and offering excellent future-proofing.

Why this answer

Single-mode fiber (SMF) with 10GBASE-LR supports 10 Gbps over distances up to 10 km, easily covering the 300-meter requirement. 10GBASE-LR uses 1310 nm laser optics over single-mode fiber, providing low signal loss and high bandwidth for long-reach links.

Exam trap

The trap here is that candidates often assume Cat6a can handle 10 Gbps at any distance, forgetting the 100-meter limitation for twisted-pair copper, or they confuse 10GBASE-LR with 10GBASE-SR, which has a shorter reach on multimode fiber.

Why the other options are wrong

A

Cat6a UTP with 10GBASE-T is limited to 100 meters for 10 Gbps, but the distance is 300 meters, exceeding the maximum reach.

B

Cat5e UTP with 1000BASE-T supports only 1 Gbps, not the required 10 Gbps, and has a maximum distance of 100 meters, insufficient for 300 meters.

D

Multimode fiber with 10GBASE-SR is limited to distances up to 300-400 meters depending on the fiber type (OM3/OM4), but the question specifies a 300-meter link requiring 10 Gbps. While technically possible with OM4, single-mode fiber (10GBASE-LR) is more reliable and standard for this distance, and the correct answer is explicitly single-mode fiber with 10GBASE-LR.

46
MCQeasy

A network engineer needs to install 15 wireless access points that each require 25W of power. The available switch provides PoE+ (802.3at) with a total power budget of 740W. The engineer also needs to connect 10 IP cameras that each require 12W. Which of the following should the engineer verify before proceeding with the installation?

A.The total power consumption of all devices does not exceed the switch's power budget.
B.The switch supports LLDP-MED for power negotiation.
C.All PoE devices are from the same manufacturer.
D.The cable length does not exceed 150 meters.
AnswerA

This is a critical consideration for any Power over Ethernet (PoE) deployment. Each PoE switch has a finite power budget, representing the maximum total wattage it can supply across all its PoE-enabled ports. If the combined power requirements of all connected Powered Devices (PDs), such as 15 wireless access points each needing 25W (totaling 375W), exceed this budget, the switch will be unable to provide sufficient power to all devices, leading to some devices failing to power on or operate reliably. Therefore, calculating the total power draw and ensuring it is less than or equal to the switch's advertised power budget is a fundamental design requirement.

Why this answer

The total power required is 15 APs × 25W + 10 cameras × 12W = 375W + 120W = 495W, which is well below the switch's 740W PoE+ budget. However, the engineer must verify that the cumulative power draw does not exceed the budget, as exceeding it would cause some ports to be denied power or shut down. This is the fundamental prerequisite for any PoE deployment.

Exam trap

The trap here is that candidates may overlook the simple power budget calculation and instead focus on irrelevant details like manufacturer compatibility or cable length limits, but the core requirement is ensuring the total wattage does not exceed the switch's PoE budget.

Why the other options are wrong

B

The primary concern is whether the total power draw (15 APs × 25W + 10 cameras × 12W = 495W) exceeds the switch's 740W budget. LLDP-MED is used for power negotiation but is not a prerequisite for PoE+ operation; devices can draw power without it.

C

The question is about verifying power budget compliance; manufacturer homogeneity is irrelevant to power delivery and does not affect whether the switch can supply the required wattage.

D

The question asks about verifying power consumption against the switch's power budget, not cable length. The total power required is 15×25W + 10×12W = 495W, which is under the 740W budget, so power is sufficient. Cable length limits (100m for Ethernet) are unrelated to this verification.

47
MCQmedium

A company is deploying a new wireless network for employee devices and wants to use the most secure encryption method currently available for WPA2/3. Which encryption standard should be used?

A.WEP
B.TKIP
C.AES
D.DES
AnswerC

AES (Advanced Encryption Standard) is the current industry standard for strong symmetric-key encryption, adopted by the U.S. government and widely used globally. It provides robust confidentiality and integrity for wireless networks, forming the cryptographic backbone of modern Wi-Fi security protocols like WPA2 and WPA3. Its strength against known attacks makes it the recommended choice for securing sensitive employee data in new deployments.

Why this answer

AES (Advanced Encryption Standard) is the most secure encryption method available for WPA2 and WPA3. WPA2 mandates AES-CCMP, and WPA3 uses AES-GCMP, both of which are based on the AES block cipher, providing strong confidentiality and integrity. This makes AES the correct choice for the highest security in modern Wi-Fi deployments.

Exam trap

The N10-009 exam often tests the misconception that TKIP is acceptable for WPA2 security, but the trap is that WPA2 mandates AES-CCMP for certification, and TKIP is only a backward-compatible option that should never be used in a secure deployment.

Why the other options are wrong

A

WEP is an outdated encryption standard with known vulnerabilities, easily cracked, and is not considered secure for modern WPA2/3 networks.

B

TKIP is an older encryption protocol used with WPA, but it is not considered secure for WPA2/3. WPA2 and WPA3 require AES (CCMP) for strong encryption; TKIP is deprecated due to vulnerabilities.

D

DES is an outdated symmetric encryption algorithm used primarily for data at rest, not for wireless network encryption. WPA2/3 uses AES (Advanced Encryption Standard) as the most secure encryption method, not DES.

48
MCQmedium

A network engineer is designing a new switched network and needs to ensure that broadcast traffic from one department does not reach another department's workstations. The engineer plans to use VLANs. Which of the following must be configured on the switches to isolate broadcast domains as intended?

A.Configure all switch ports as trunk ports and use VLAN 1 for all departments.
B.Assign each department's workstations to a unique VLAN and configure their switch ports as access ports in that VLAN.
C.Place all workstations in the same VLAN and use a firewall to filter broadcast traffic between departments.
D.Configure each switch port as a trunk and use a different native VLAN for each department.
AnswerB

Assigning each department to a unique VLAN logically segments the network, creating separate broadcast domains for each department. Configuring switch ports as access ports ensures that each workstation's traffic is confined to its assigned VLAN, preventing direct Layer 2 communication and broadcast propagation between departments. This method effectively isolates departmental traffic, enhancing security, improving network performance, and reducing the potential for broadcast storms.

Why this answer

VLANs segment a switched network into separate broadcast domains at Layer 2. By assigning each department's workstations to a unique VLAN and configuring their switch ports as access ports in that VLAN, broadcast traffic from one VLAN is confined to that VLAN and cannot reach workstations in another VLAN. This achieves the isolation required without additional filtering devices.

Exam trap

The trap here is that candidates may think a firewall can filter Layer 2 broadcast traffic within the same VLAN, but firewalls operate at Layer 3 and above, so they cannot prevent broadcasts from flooding all ports in a single VLAN.

Why the other options are wrong

A

Configuring all switch ports as trunk ports and using VLAN 1 for all departments does not isolate broadcast domains; VLAN 1 is the default VLAN and all ports would still be in the same broadcast domain.

C

VLANs operate at Layer 2, and broadcast traffic is confined to the VLAN. A firewall filters at Layer 3 or above, so it cannot prevent Layer 2 broadcasts from reaching other departments if they are in the same VLAN.

D

Configuring each switch port as a trunk with a different native VLAN for each department does not isolate broadcast domains; trunk ports carry multiple VLANs and native VLANs are used for untagged traffic, not for separating broadcast domains. Broadcast isolation requires access ports assigned to unique VLANs.

49
MCQeasy

A small office uses a wireless router that provides both wired and wireless connectivity. The router's LAN IP is 192.168.1.1. A new printer with a static IP of 192.168.1.50 cannot be reached from a laptop obtaining an IP via DHCP. The laptop's IP is 192.168.1.100. Which of the following is the most likely cause?

A.The printer is on a different VLAN
B.The subnet mask is incorrect
C.The default gateway is misconfigured
D.The DHCP scope is exhausted
AnswerB

If the printer is configured with a static subnet mask that is not /24 (e.g., /28 or /25), it will calculate that the laptop's IP is outside its local subnet. It will then try to send traffic to the default gateway instead of directly to the laptop, and if the gateway does not forward it (or the printer's gateway is wrong), communication fails.

Why this answer

The laptop obtains an IP address via DHCP, which typically assigns a subnet mask of 255.255.255.0 for a /24 network. If the printer has a static IP of 192.168.1.50 but is configured with an incorrect subnet mask (e.g., 255.255.255.252), the printer may believe it is on a different subnet than the laptop (192.168.1.100). This prevents the laptop from reaching the printer because the printer will not respond to ARP requests or will send traffic to its default gateway instead of directly to the laptop.

Exam trap

The N10-009 exam often tests the misconception that a misconfigured default gateway is the cause of local subnet communication failures, but the trap here is that the default gateway is irrelevant for same-subnet traffic; the real issue is the subnet mask, which determines whether the destination is considered local or remote.

Why the other options are wrong

A

The question states the router's LAN IP is 192.168.1.1 and the laptop and printer are on the same subnet (192.168.1.0/24). There is no mention of VLANs or a managed switch that would separate them into different VLANs, so VLAN misconfiguration is unlikely.

C

The default gateway is used for traffic destined outside the local subnet. Since both the laptop (192.168.1.100) and printer (192.168.1.50) are on the same subnet (assuming a /24 mask), the laptop does not need a gateway to reach the printer. A misconfigured gateway would not prevent local communication.

D

The DHCP scope is exhausted would prevent the laptop from obtaining an IP address, but the laptop already has IP 192.168.1.100, indicating DHCP is working. The issue is connectivity to a static IP printer, not IP address availability.

50
Matchingmedium

Match each OSI layer to its description.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Data Link layer; handles MAC addressing and framing

Network layer; handles routing and logical addressing

Transport layer; handles reliable delivery and flow control

Application layer; provides network services to applications

Why these pairings

The correct matches are: Physical layer transmits raw bits, Network layer routes with logical addressing, and Application layer supports user applications. Common confusions involve swapping the roles of Data Link and Transport layers.

51
MCQmedium

Two switches are connected via a trunk link configured with allowed VLANs 10, 20, and 30. Hosts on VLAN 20 can communicate across the trunk, but hosts on VLAN 30 cannot. Which of the following is the most likely cause?

A.A
B.B
C.C
D.D
AnswerD

If VLAN 30 is only created on one switch, the other switch will not have the VLAN in its database and will drop frames from that VLAN.

Why this answer

The most likely cause is that VLAN 30 is only created on one switch. For a trunk to forward frames for a VLAN, that VLAN must exist (be created) on both switches. If VLAN 30 is only configured on one switch, the other switch will drop frames from VLAN 30, preventing communication.

This explains why VLAN 20 works (exists on both) and VLAN 30 does not.

Exam trap

The trap here is that candidates often confuse trunk allowed VLAN configuration with native VLAN settings or assume a spanning-tree issue is VLAN-specific, when in fact spanning-tree blocks the entire trunk, not individual VLANs.

Why the other options are wrong

A

Option A is not defined, so it cannot be evaluated. The question describes a trunk issue where only VLAN 30 fails, suggesting a misconfiguration specific to that VLAN, not a generic problem like a bad cable or port error.

B

Option B is incorrect because the question states that hosts on VLAN 20 can communicate across the trunk, indicating the trunk is operational. The issue is specific to VLAN 30, so a general trunk misconfiguration (like encapsulation mismatch or trunk mode) would affect all VLANs, not just one.

C

Option C is not provided in the question, so it cannot be evaluated. The correct answer is D, which is undefined, indicating a missing or incorrect option.

52
MCQmedium

A company is deploying a new wireless network for a small office. The network will consist of three access points. The IT manager wants the APs to automatically coordinate radio frequency settings and client roaming without a dedicated controller. Which technology should be implemented?

A.Mesh network
B.Controller-based wireless
C.Standalone APs
D.Cloud-managed access points
AnswerD

Cloud-managed access points are an ideal solution for small offices seeking advanced wireless features without the overhead of an on-premises controller. These systems leverage a cloud-based platform to centralize management, automatically optimize RF channels, adjust power levels, and facilitate seamless client roaming across multiple APs. This approach significantly simplifies deployment and ongoing administration, providing enterprise-grade capabilities with reduced infrastructure costs and complexity.

Why this answer

Cloud-managed access points (APs) are the correct choice because they can automatically coordinate radio frequency (RF) settings and client roaming without a dedicated on-premises controller. The cloud-based management platform handles channel selection, power adjustment, and fast roaming (e.g., 802.11r/k/v) by communicating with each AP over the internet, making it ideal for a small office with only three APs.

Exam trap

The trap here is that candidates often confuse 'cloud-managed' with 'standalone' APs, assuming that any AP without a local controller must be standalone, but cloud-managed APs use an external controller in the cloud to provide coordinated features.

Why the other options are wrong

A

A mesh network coordinates radio settings and client roaming without a dedicated controller, but it is typically used for extending coverage in larger areas or outdoor environments, not for a small office with three APs where cloud management is more appropriate for automatic RF coordination.

B

Controller-based wireless requires a dedicated hardware controller to manage APs, which contradicts the requirement for automatic coordination without a dedicated controller.

C

Standalone APs require manual configuration of radio frequency settings and do not automatically coordinate client roaming; they lack the centralized management needed for automatic RF optimization and seamless roaming without a controller.

53
MCQmedium

An OSPF network uses a multi-access segment with four routers. All router interfaces have the default OSPF priority of 1. Which router becomes the Designated Router (DR)?

A.The router with the highest router ID
B.The router with the lowest IP address on the segment
C.The router with the highest bandwidth on the connecting interface
D.The router with the oldest uptime
AnswerA

In OSPF, the Designated Router (DR) election process first considers the OSPF priority configured on the interface. If multiple routers have the highest priority (default is 1), the tie-breaker is the router with the highest OSPF Router ID. This ensures a deterministic election on multi-access segments, facilitating efficient LSA flooding and reducing the number of adjacencies needed among all routers.

Why this answer

In an OSPF multi-access network, the Designated Router (DR) is elected based on the highest OSPF priority value, with a tie-breaking mechanism using the highest Router ID. Since all routers have the default priority of 1, the router with the highest Router ID wins the DR election. This ensures a stable topology for reducing LSA flooding and adjacency overhead.

Exam trap

The trap here is that candidates often confuse the DR election tie-breaker with the OSPF route selection metric (cost/bandwidth) or assume the lowest IP address is used, but the actual tie-breaker is the highest Router ID after priority.

Why the other options are wrong

B

In OSPF, the Designated Router (DR) is elected based on the highest OSPF priority, and if priorities are equal (default 1), the highest router ID is used. The lowest IP address on the segment is not a factor in DR election.

C

In OSPF, the Designated Router (DR) is elected based on the highest OSPF priority, and if priorities are equal, the highest router ID is used. Bandwidth of the interface is not a factor in DR election.

D

OSPF DR election uses the highest router ID, not uptime. Uptime is irrelevant in OSPF DR/BDR election.

54
MCQmedium

A network administrator needs to connect two switches that are 80 meters apart using UTP cabling and achieve 1 Gbps speed. The administrator has Cat5e and Cat6 cables available. Which standard should be used?

A.1000BASE-T
B.1000BASE-LX
C.10GBASE-T
D.100BASE-TX
AnswerA

1000BASE-T is the appropriate standard for this scenario because it delivers a Gigabit Ethernet (1 Gbps) connection over unshielded twisted-pair (UTP) cabling. It reliably supports distances up to 100 meters, making it perfectly suitable for the 80-meter requirement. This standard typically utilizes all four twisted pairs within Cat5e or Cat6 cables for full-duplex operation.

Why this answer

1000BASE-T (IEEE 802.3ab) is the correct standard because it supports 1 Gbps over Cat5e or Cat6 UTP cabling at distances up to 100 meters. With 80 meters between switches, both cable types are well within the 100-meter reach, and 1000BASE-T is designed specifically for twisted-pair copper at this speed.

Exam trap

The trap here is that candidates may choose 10GBASE-T because they see Cat6 available, forgetting that Cat6 only supports 10GBASE-T up to 55 meters and Cat5e not at all, while 1000BASE-T is the correct match for 1 Gbps over UTP at 80 meters.

Why the other options are wrong

B

1000BASE-LX uses single-mode or multimode fiber optic cabling, not UTP. The question specifies UTP cabling, so this standard is incompatible.

C

10GBASE-T requires Cat6a or higher cabling for distances up to 100 meters at 10 Gbps; Cat5e and Cat6 cables are insufficient for 10GBASE-T at 80 meters, and the question specifies 1 Gbps speed, not 10 Gbps.

D

100BASE-TX only supports 100 Mbps, not the required 1 Gbps speed, and is insufficient for the 80-meter distance at 1 Gbps.

55
MCQmedium

A company has deployed a WPA2-Enterprise wireless network. Users report that they cannot authenticate. The RADIUS server logs show that authentication attempts are received but no responses are sent back to the wireless controller. The wireless controller and RADIUS server are on different subnets, separated by a firewall. Which of the following is the MOST likely cause?

A.The wireless clients do not support the correct EAP method.
B.The firewall is blocking RADIUS traffic on UDP ports 1812 and 1813.
C.The RADIUS server is not in the same broadcast domain as the wireless controller.
D.The SSID is not being broadcast.
AnswerB

WPA2-Enterprise networks rely on RADIUS (Remote Authentication Dial-In User Service) for centralized authentication, with the wireless controller acting as a RADIUS client. RADIUS primarily uses UDP ports 1812 for authentication and 1813 for accounting. If a firewall positioned between the wireless controller and the RADIUS server is configured to block traffic on these specific UDP ports, authentication requests or responses will be dropped. This prevents the RADIUS server from validating user credentials or returning an Access-Accept/Reject message, resulting in authentication timeouts and users being unable to connect to the network.

Why this answer

The RADIUS server logs show authentication attempts are received but no responses are sent back, indicating the request reached the server but the reply is being dropped. Since the wireless controller and RADIUS server are on different subnets separated by a firewall, the most likely cause is that the firewall is blocking the return RADIUS traffic. RADIUS uses UDP ports 1812 for authentication and 1813 for accounting, and these must be open in both directions for successful communication.

Exam trap

The trap here is that candidates often assume the issue is with client configuration (EAP method) or layer 2 connectivity (broadcast domain), when the symptom of 'requests received but no responses sent' points directly to a firewall blocking the return path, a classic network-layer troubleshooting scenario.

Why the other options are wrong

A

The RADIUS server logs show authentication attempts are received, indicating the wireless clients' EAP methods are successfully reaching the server. The issue is that no responses are sent back, which points to a network connectivity problem, not client-side EAP support.

C

The RADIUS server logs show authentication attempts are received, indicating the wireless controller can reach the RADIUS server. Being in the same broadcast domain is not required for RADIUS, which operates at Layer 3 and can traverse routers.

D

The SSID not being broadcast prevents clients from seeing the network in their scan lists, but the RADIUS server logs show authentication attempts are received, indicating clients are already attempting to connect. The issue is that no responses are sent back, pointing to a network path problem, not SSID visibility.

56
MCQmedium

A switch port is configured as a trunk with native VLAN 99. When a frame tagged with VLAN 99 is received on the trunk, the switch displays an error. What is the most likely issue?

A.The trunk is using 802.1Q encapsulation and the remote switch expects ISL
B.The remote switch is sending frames on VLAN 99 as untagged
C.The remote switch is tagging frames on the native VLAN
D.The allowed VLAN list does not include VLAN 99
AnswerC

When a trunk is configured with native VLAN 99, frames for that VLAN should be sent untagged. If the remote switch sends them tagged, the receiving switch may log errors or drop the frames because it expects untagged frames for the native VLAN.

Why this answer

The native VLAN is the VLAN that carries untagged traffic on an 802.1Q trunk. By design, frames belonging to the native VLAN should be sent untagged. When a switch receives a frame tagged with the native VLAN ID (VLAN 99), it indicates a mismatch in native VLAN configuration between the two ends of the trunk.

The switch logs an error because it expects native VLAN frames to be untagged, but the remote switch is incorrectly tagging them.

Exam trap

The N10-009 exam often tests the misconception that native VLAN frames are always tagged, when in fact they must remain untagged on an 802.1Q trunk, and the error occurs because the remote switch is tagging them.

Why the other options are wrong

A

The error is caused by receiving a tagged frame on the native VLAN, not by encapsulation mismatch. 802.1Q and ISL are incompatible, but the question states the trunk is configured as a trunk with native VLAN 99, implying 802.1Q is used; ISL does not support native VLANs.

B

The error occurs because the switch expects untagged frames on the native VLAN, but the remote switch is sending tagged frames on VLAN 99. If the remote switch were sending untagged frames, they would be accepted on the native VLAN without error.

D

The question states that a frame tagged with VLAN 99 is received on the trunk, but the native VLAN is 99. The error occurs because the remote switch is tagging frames on the native VLAN, which should be sent untagged. The allowed VLAN list is not the issue because the frame is being received, indicating VLAN 99 is allowed.

57
MCQmedium

A network engineer needs to add a new switch to an existing network. The switch must be configured to support VLANs and trunking. The engineer connects the switch to the existing network via a trunk port. After configuration, the VLANs on the new switch are not receiving traffic from the core network. The core switch shows the trunk is up but no VLANs are allowed. What is the most likely cause?

A.The native VLAN mismatch
B.The trunk encapsulation is not set to 802.1Q
C.The allowed VLAN list on the trunk does not include the desired VLANs
D.The switch port mode is set to access
AnswerC

The allowed VLAN list on a trunk port explicitly defines which VLAN IDs are permitted to traverse that link. Even if the trunk itself is operational and established, any VLAN traffic not included in this configured list will be filtered and dropped by the switch. This mechanism ensures strict control over VLAN propagation, making it a primary reason why specific desired VLANs might fail to communicate across an otherwise functional trunk.

Why this answer

The core switch shows the trunk is up but no VLANs are allowed, which directly indicates that the allowed VLAN list on the trunk port does not include the desired VLANs. By default, a trunk port permits all VLANs, but if an administrator explicitly restricts the allowed VLAN list (e.g., with the 'switchport trunk allowed vlan' command), only those VLANs are forwarded. Since the new switch is not receiving traffic, the core switch's trunk likely has an empty or incorrect allowed VLAN list, preventing the desired VLAN traffic from crossing the trunk.

Exam trap

The N10-009 exam often tests the misconception that a trunk being 'up/up' means all VLANs are automatically allowed, when in fact the allowed VLAN list can be explicitly restricted or cleared, causing traffic loss without any physical or encapsulation issues.

Why the other options are wrong

A

The question states the trunk is up but no VLANs are allowed, indicating the issue is with the allowed VLAN list, not a mismatch. A native VLAN mismatch would cause traffic issues for untagged frames, but the trunk is operational and the problem is that no VLANs are permitted.

B

The question states the trunk is up, meaning the encapsulation is already set correctly (likely 802.1Q by default on modern switches). If encapsulation were mismatched, the trunk would not come up at all.

58
MCQmedium

A small office has multiple devices that need internet access but the ISP provides only a single public IPv4 address. Which network address translation (NAT) technique is most appropriate to allow all internal hosts to share that one public address?

A.Static NAT
B.Dynamic NAT
C.PAT (Port Address Translation)
D.IP masquerading
AnswerC

PAT, also known as NAT Overload, is the most common form of NAT used in small offices and homes. It allows multiple internal devices to share a single public IP address by translating both the source IP address and the source port number of outbound connections. The router maintains a translation table, mapping unique internal IP:port combinations to the single public IP with a unique public port, enabling simultaneous internet access for many hosts.

Why this answer

PAT (Port Address Translation), also known as NAT overload, is the correct choice because it allows multiple internal hosts to share a single public IPv4 address by mapping each unique internal IP:port combination to a different source port on the public address. This is the only NAT technique that provides many-to-one address translation, which is exactly what a small office with more devices than public IPs requires.

Exam trap

The N10-009 exam often tests the distinction between Dynamic NAT and PAT by presenting a scenario with a single public IP, where candidates mistakenly choose Dynamic NAT because they confuse 'dynamic' with 'shared,' not realizing Dynamic NAT still requires a pool of public IPs.

Why the other options are wrong

A

Static NAT maps a single public IP to a single private IP one-to-one, so it cannot allow multiple internal hosts to share one public address.

D

IP masquerading is a term often used interchangeably with PAT in Linux, but in the context of this CompTIA question, PAT is the standard term. The question asks for the 'most appropriate' technique, and PAT is the correct answer; IP masquerading is not a distinct technique recognized in the CompTIA objectives.

59
MCQmedium

A network administrator is setting up a new branch office that will connect to the main headquarters over the Internet. The connection must be encrypted and allow the branch to access internal resources as if they were directly connected. Which of the following VPN types is BEST suited for this site-to-site connection?

A.IPsec
B.SSL VPN
C.PPTP
D.L2TP
AnswerA

IPsec (Internet Protocol Security) is the industry standard for establishing secure site-to-site VPNs, making it the optimal choice for connecting a new branch office to a main office. It operates at the network layer (Layer 3) and provides robust security through cryptographic protocols for data authentication, integrity, and confidentiality. Key components like Authentication Header (AH) and Encapsulating Security Payload (ESP) ensure secure data transmission, while Internet Key Exchange (IKE) manages secure key negotiation, establishing a trusted tunnel between VPN gateways.

Why this answer

IPsec is the correct choice because it is specifically designed for site-to-site VPNs, providing encryption and authentication at the IP layer to create a secure tunnel between two networks. This allows the branch office to access internal resources at headquarters as if they were directly connected, using a gateway-to-gateway model that encrypts all traffic between the sites.

Exam trap

The N10-009 exam often tests the distinction between remote-access VPNs (SSL VPN) and site-to-site VPNs (IPsec), where candidates mistakenly choose SSL VPN because it is commonly used for client-based access, but it lacks the full network-layer bridging required for a branch office to appear directly connected.

Why the other options are wrong

B

SSL VPN is designed for remote user access to specific applications via a web browser, not for persistent site-to-site connectivity that requires full network-layer integration as if directly connected.

C

PPTP is outdated and has known security vulnerabilities, making it unsuitable for a secure site-to-site VPN over the Internet that requires strong encryption.

D

L2TP alone does not provide encryption; it typically relies on IPsec for that. For a site-to-site VPN requiring encryption and direct network access, IPsec is the standard, not L2TP.

60
MCQmedium

A network engineer needs to deploy a new wireless network in a large office with many cubicles. The goal is to provide high throughput and support multiple simultaneous users. Which IEEE standard should be implemented?

A.802.11ac
B.802.11n
C.802.11b
D.802.11g
AnswerA

802.11ac is the optimal choice for a large office due to its operation exclusively in the less congested 5 GHz band, offering significantly higher throughput, often reaching gigabit speeds. Its key feature, Multi-User Multiple-Input Multiple-Output (MU-MIMO), allows an access point to communicate with multiple client devices simultaneously, drastically improving efficiency and overall network capacity in high-density user environments. This standard is specifically designed to handle the demands of numerous users and bandwidth-intensive applications concurrently.

Why this answer

802.11ac (Wi-Fi 5) operates exclusively in the 5 GHz band, uses wider 80 MHz or 160 MHz channels, and supports MU-MIMO (Multi-User Multiple Input Multiple Output) to deliver high throughput and efficient handling of multiple simultaneous users in a dense office environment. This makes it the best choice among the options for a modern, high-capacity wireless deployment.

Exam trap

The trap here is that candidates often choose 802.11n because it supports MIMO and dual-band operation, overlooking that 802.11ac's MU-MIMO and wider channels provide significantly better performance for multiple simultaneous users in a dense environment.

Why the other options are wrong

B

802.11n is an older standard with lower maximum throughput (up to 600 Mbps) compared to 802.11ac (up to 6.9 Gbps) and does not support the higher density and performance requirements of a large office with many simultaneous users.

D

802.11g supports a maximum data rate of 54 Mbps and operates only in the 2.4 GHz band, which cannot provide the high throughput required for multiple simultaneous users in a large office.

61
MCQmedium

A network technician installs a new 802.3at (PoE+) access point in a warehouse. The AP is connected via a 200-foot Cat5e cable to a switch that only supports 802.3af (PoE). The AP powers on but experiences intermittent connectivity drops. What is the most likely cause?

A.The cable length exceeds the maximum allowed for PoE
B.The AP is not receiving enough power from the switch
C.Duplex mismatch between the AP and the switch
D.Radio frequency interference from warehouse equipment
AnswerB

An 802.3at PoE+ access point requires up to 30 watts of power at the port for full functionality. If connected to a switch that only supports 802.3af PoE, it will receive a maximum of 15.4 watts. This significant power deficit means the AP cannot operate reliably, leading to intermittent reboots, erratic behavior, or failure to fully initialize, directly causing intermittent connectivity issues.

Why this answer

The switch only supports 802.3af (PoE), which provides a maximum of 15.4 watts per port, while the 802.3at (PoE+) access point requires up to 25.5 watts to operate reliably. The AP powers on because it can negotiate 802.3af power, but under load (e.g., transmitting at higher power or using multiple radios), it draws more current than the switch can supply, causing voltage droop and intermittent resets or link drops. This is a classic power budget mismatch scenario.

Exam trap

The trap here is that candidates see the AP powers on and assume power is sufficient, overlooking that 802.3at devices can operate at reduced functionality on 802.3af but will fail under higher load, leading them to incorrectly blame cable length or RF interference instead of the power budget mismatch.

Why the other options are wrong

A

The maximum cable length for Ethernet (including PoE) is 100 meters (328 feet), so a 200-foot cable is within the limit and not the cause of the issue.

C

Duplex mismatch typically causes symptoms like high error rates, collisions, or complete link failure, not intermittent connectivity drops specifically tied to power delivery. The AP powers on, indicating the link is established, and the issue is power-related due to PoE+ device on PoE switch.

D

The AP powers on, indicating it receives some power, but intermittent drops are due to insufficient power (802.3af provides 15.4W vs. 802.3at's 30W). RF interference would cause consistent connectivity issues or packet loss, not intermittent drops tied to power negotiation.

62
Matchingmedium

Match each network service to its description.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Automatically assigns IP addresses to devices

Resolves domain names to IP addresses

Translates private IP addresses to a public IP

Monitors and manages network devices

Why these pairings

Common network services have specific functions: DHCP assigns IP addresses, DNS resolves names, HTTP serves web content, SMTP handles email, FTP transfers files, and SNMP manages networks. The distractors confuse these roles.

63
MCQmedium

A company is implementing a new wireless network for employees. The network must support seamless roaming between access points. Which protocol should be configured on the wireless controller?

A.802.1X
B.802.11r
C.802.11n
D.802.3af
AnswerB

802.11r, also known as Fast BSS Transition, is a crucial amendment to the 802.11 standard specifically designed to facilitate seamless and rapid roaming for wireless clients. It achieves this by enabling access points to cache master key information (PMKID) and pre-authenticate clients with neighboring APs. This mechanism significantly reduces the time and overhead associated with re-authentication when a client moves between APs, ensuring uninterrupted connectivity for real-time applications like VoIP and video.

Why this answer

802.11r, also known as Fast BSS Transition (FT), enables seamless roaming by allowing a client to authenticate and derive encryption keys with a new access point before or during the reassociation process, reducing the time-sensitive handshake overhead. This is essential for real-time applications like VoIP or video calls where roaming delays must be under 50 ms to avoid perceptible drops.

Exam trap

The trap here is that candidates often confuse 802.1X (authentication) with 802.11r (fast roaming), assuming that any security-related protocol must handle roaming, when in fact 802.1X adds latency rather than reducing it.

Why the other options are wrong

A

802.1X is an authentication protocol, not a roaming protocol. It controls network access but does not optimize handoffs between access points.

C

802.11n is a wireless standard that improves throughput and range but does not include fast roaming mechanisms. Seamless roaming requires protocols like 802.11r (Fast BSS Transition) to reduce authentication latency during handoffs.

D

802.3af is a Power over Ethernet (PoE) standard, not a wireless roaming protocol. It does not facilitate seamless roaming between access points.

64
MCQmedium

A network technician is installing a new wireless access point in a warehouse. The AP requires PoE+ (802.3at) for full operation. The technician connects the AP using a Cat5e cable run of 200 feet to a switch that only supports 802.3af (PoE). The AP powers on but has intermittent connectivity issues. What is the most likely cause?

A.The cable length exceeds the maximum for PoE
B.The switch does not support the required PoE standard
C.The AP is experiencing interference from metal racks
D.The AP is configured with the wrong SSID
AnswerB

The problem describes intermittent connectivity after cabling, strongly suggesting a power delivery issue. The 802.3af PoE standard provides up to 15.4W to a powered device, while 802.3at (PoE+) delivers up to 30W. If the wireless access point requires 802.3at for full functionality but is connected to an 802.3af-only switch, it will receive insufficient power. This power deficit can cause the AP to operate erratically, reboot intermittently, or experience connectivity drops, especially under load, rather than failing completely.

Why this answer

The switch only supports 802.3af (PoE), which provides up to 15.4W per port, while the AP requires 802.3at (PoE+) for full operation, which supplies up to 30W. Although the AP powers on, it may not receive sufficient power to operate all radios or features, leading to intermittent connectivity issues. The cable length of 200 feet is within the 100-meter (328-foot) limit for Cat5e, so length is not the problem.

Exam trap

The trap here is that candidates assume the AP powers on means it is fully operational, but The N10-009 exam often tests the nuance that PoE+ devices may partially power up with PoE, only to exhibit intermittent issues due to insufficient power budget.

Why the other options are wrong

A

The maximum cable length for PoE (both 802.3af and 802.3at) over Cat5e is 100 meters (328 feet), so 200 feet is well within limits and not the cause of the issue.

C

The question states the AP powers on but has intermittent connectivity, and the switch only supports 802.3af. The issue is insufficient power delivery, not interference. Metal racks could cause RF interference, but that would typically result in poor signal or disconnections, not intermittent connectivity tied to power constraints.

D

The SSID configuration affects client connectivity and network identification, not power delivery or intermittent connectivity caused by insufficient PoE power.

65
MCQmedium

A network engineer is designing a data center network and needs to ensure high availability for the core switches. Which technology allows multiple physical switches to be combined into a single logical switch to simplify management and improve redundancy?

A.Spanning Tree Protocol (STP)
B.Switch stacking
C.EtherChannel
D.Virtual Router Redundancy Protocol (VRRP)
AnswerB

Switch stacking is a technology that physically connects multiple individual switches using dedicated high-speed stacking cables and ports, allowing them to operate as a single logical unit. This configuration provides a unified management plane, simplifying administration and increasing port density while offering enhanced redundancy and a shared backplane for high-speed inter-switch communication. It effectively creates a single, more resilient, and scalable switch from several smaller devices, which is crucial for high-availability data center designs.

Why this answer

Switch stacking combines multiple physical switches into a single logical unit, sharing a common control plane and management interface. This simplifies configuration and provides redundancy because if one switch in the stack fails, the remaining switches continue forwarding traffic without requiring STP convergence.

Exam trap

The N10-009 exam often tests the distinction between EtherChannel (link aggregation) and stacking (switch aggregation), so the trap here is confusing a technology that bundles links with one that bundles entire switches.

Why the other options are wrong

A

STP prevents loops in redundant topologies but does not combine multiple physical switches into a single logical switch; it operates at Layer 2 to block redundant paths, not to aggregate switches.

C

EtherChannel combines multiple physical links into a single logical link for increased bandwidth and redundancy, but it does not combine multiple switches into a single logical switch. The question asks for technology that merges switches, not links.

D

VRRP provides router redundancy at Layer 3, not switch stacking. The question asks about combining multiple physical switches into a single logical switch for management and redundancy, which is a Layer 2 function.

66
MCQmedium

A network engineer is designing an OSPF network for a large enterprise. To reduce the size of routing tables and limit the propagation of external routes, the engineer wants to use a special area that blocks Type 5 LSAs but still allows inter-area routes via a default route. Which type of OSPF area should be configured?

A.Backbone area 0
B.Standard area
C.Stub area
D.Totally stubby area
AnswerC

A stub area is specifically designed to reduce the size of routing tables within an OSPF area by preventing the propagation of Type 5 Link-State Advertisements (LSAs), which carry information about external AS routes. Instead of learning every external route, a stub area's Area Border Router (ABR) injects a default route (0.0.0.0/0) into the area. This significantly simplifies routing decisions for internal routers, as all traffic destined for external networks is simply forwarded to the ABR, while still allowing inter-area routes (Type 3 LSAs) to be learned.

Why this answer

A stub area blocks Type 5 LSAs (external routes) from entering the area, forcing the area border router (ABR) to inject a default route (0.0.0.0/0) for reaching external destinations. This reduces the routing table size while still allowing inter-area routes (Type 3 LSAs) to propagate, exactly matching the requirement.

Exam trap

CompTIA often tests the distinction between stub and totally stubby areas, where candidates mistakenly choose 'totally stubby' because they think it blocks more routes, but the question explicitly requires inter-area routes to still be allowed, which only a stub area provides.

Why the other options are wrong

A

The backbone area (area 0) does not block Type 5 LSAs; it is the transit area for all OSPF areas and propagates external routes. The question requires an area that blocks Type 5 LSAs and provides a default route, which is a stub area, not the backbone.

B

A standard area does not block Type 5 LSAs; it allows external routes from other areas, which contradicts the requirement to limit propagation of external routes.

D

A totally stubby area blocks Type 3, 4, and 5 LSAs, but the question requires that inter-area routes (Type 3) be allowed via a default route. A totally stubby area only injects a default route for external routes, not for inter-area routes, so it does not meet the requirement.

67
MCQhard

A company wants to deploy a wireless network for employee devices using the highest security standard. The network will use a RADIUS server for authentication. Which authentication method should be configured?

A.WPA3-SAE
B.802.1X/EAP
C.WPA2-PSK
D.WEP with RADIUS
AnswerB

802.1X/EAP is the industry standard for enterprise wireless security, leveraging a RADIUS server for centralized authentication and authorization. This architecture enables robust per-user access control and dynamic key management, supporting various EAP methods like PEAP or EAP-TLS. It provides strong, individualized encryption keys and accountability, which is crucial for securing employee devices in a corporate environment demanding the highest security.

Why this answer

B is correct because 802.1X/EAP is the only option that provides enterprise-grade authentication using a RADIUS server. It requires each user to present unique credentials (e.g., username/password or certificate), which are verified by the RADIUS server before granting network access. This meets the requirement for the highest security standard in a corporate environment.

Exam trap

The trap here is that candidates confuse WPA3-SAE (which is indeed more secure than WPA2-PSK) with enterprise authentication, but SAE still uses a shared passphrase and cannot integrate with a RADIUS server for per-user authentication.

Why the other options are wrong

A

WPA3-SAE is a personal authentication mode that uses a shared password, not a RADIUS server. The question specifies using a RADIUS server for authentication, which requires an enterprise mode like 802.1X/EAP.

C

WPA2-PSK uses a pre-shared key for authentication, not a RADIUS server, so it does not meet the requirement for enterprise-grade authentication with a RADIUS server.

D

WEP with RADIUS is not a valid authentication method; WEP uses static keys or RADIUS for key distribution but is inherently insecure and does not meet 'highest security standard'.

68
MCQmedium

A network administrator needs to allow multiple VLANs to traverse a single link between two switches. Which configuration must be applied on the switch ports?

A.Access port
B.Trunk port
C.Hybrid port
D.Routed port
AnswerB

A trunk port is specifically configured on a network switch to carry traffic for multiple Virtual Local Area Networks (VLANs) over a single physical link. It achieves this by utilizing the industry-standard IEEE 802.1Q tagging protocol, which inserts a 4-byte tag into the Ethernet frame header, identifying the VLAN to which the frame belongs. This mechanism allows switches to differentiate and properly forward frames for various VLANs across inter-switch links, enabling efficient network segmentation and communication between different VLANs hosted on separate switches.

Why this answer

A trunk port is configured to carry traffic for multiple VLANs over a single link by tagging frames with IEEE 802.1Q VLAN identifiers. This allows the switch to distinguish which VLAN each frame belongs to, enabling inter-switch VLAN connectivity without requiring separate physical links per VLAN.

Exam trap

The trap here is that candidates often confuse a trunk port with an access port, thinking that multiple VLANs can be carried by simply assigning multiple VLANs to an access port, but access ports can only be assigned a single untagged VLAN.

Why the other options are wrong

A

An access port carries traffic for only a single VLAN, so it cannot allow multiple VLANs to traverse a single link between switches.

C

Hybrid ports are a Cisco-proprietary concept that can carry multiple VLANs but also allow untagged traffic; however, the standard IEEE 802.1Q method for carrying multiple VLANs over a single link is a trunk port, which is the expected answer for this N10-009 exam question.

D

A routed port is a Layer 3 interface on a switch that does not support VLAN tagging or trunking; it is used for routing between networks, not for carrying multiple VLANs over a single link.

69
MCQhard

A network engineer has successfully established an IPsec site-to-site VPN tunnel between a branch office (10.0.1.0/24) and the main office (192.168.1.0/24). The tunnel status shows as active, and both sides can ping each other's tunnel interface IP addresses. However, users at the branch office cannot ping the main office server at 192.168.1.10, and the main office cannot ping the branch office server at 10.0.1.10. The firewall rules on both sides permit IPsec traffic and all internal traffic. What should the engineer check NEXT?

A.Verify routing entries on both routers to ensure the remote internal subnets are reachable via the tunnel.
B.Check the IPsec security associations for encryption algorithm mismatch.
C.Disable the firewall on the internal interfaces temporarily.
D.Regenerate the pre-shared key on both sides.
AnswerA

Both routers need to have routes pointing to the remote internal subnets (e.g., 192.168.1.0/24 and 10.0.1.0/24) with the tunnel interface as the next hop. Without these routes, traffic from internal hosts will not be directed into the tunnel.

Why this answer

The tunnel is active and both sides can ping each other's tunnel interface IPs, confirming that IPsec phase 1 and phase 2 are established and the tunnel itself is functional. However, users cannot reach the remote internal subnets (10.0.1.0/24 and 192.168.1.0/24), which indicates a routing problem: the routers likely lack routes for those remote subnets pointing to the tunnel interface. Without proper routing entries, traffic destined for the remote LAN is sent out the wrong interface or dropped, even though the tunnel is up.

Exam trap

The N10-009 exam often tests the distinction between tunnel reachability (pinging the tunnel interface IP) and subnet reachability (pinging hosts behind the tunnel), trapping candidates who assume a working tunnel automatically means all traffic flows correctly, when in fact routing for the remote LANs must be explicitly configured.

Why the other options are wrong

B

The tunnel is active and both sides can ping each other's tunnel interface IPs, indicating IPsec SAs are correctly established and encryption algorithms match. The issue is that internal subnets are not reachable, pointing to a routing problem, not an SA mismatch.

C

The firewall rules already permit all internal traffic and IPsec traffic, so disabling the firewall is unnecessary and would not resolve a routing issue. The problem is that the remote subnets are not reachable via the tunnel, which is a routing problem, not a firewall problem.

D

The tunnel is active and both sides can ping each other's tunnel interface IPs, indicating IPsec SAs are correctly established. Regenerating the pre-shared key would disrupt the established tunnel without addressing the routing issue that prevents internal subnet reachability.

70
MCQmedium

A network administrator is creating a new VLAN 50 on a switch. After creating the VLAN, the administrator notices that the switch does not send VLAN information to other switches in the network. Which of the following is the most likely reason?

A.VTP mode is set to transparent.
B.The trunk link is not configured.
C.The VLAN is not allowed on the trunk.
D.STP is blocking the VLAN.
AnswerA

A switch configured in VTP transparent mode will not synchronize its VLAN database with other switches in the VTP domain, nor will it advertise its own local VLAN changes. While it forwards VTP advertisements from other switches, it does not participate in the VTP propagation process by originating or learning VLANs. Therefore, creating VLAN 50 on a transparent mode switch means this VLAN will remain local to that switch and will not be learned by other VTP-participating switches.

Why this answer

When VTP mode is set to transparent, the switch does not originate or forward VTP advertisements, so VLAN changes made on it are not propagated to other switches. This explains why VLAN 50 was created locally but not shared with the rest of the network.

Exam trap

The N10-009 exam often tests the misconception that a trunk misconfiguration (like not allowing the VLAN on the trunk) is the cause of VTP propagation failure, when in fact VTP transparent mode completely disables advertisement generation regardless of trunk settings.

Why the other options are wrong

B

The trunk link not being configured would prevent any VLAN traffic from passing between switches, but the question states that VLAN 50 was created and only VLAN information is not being sent. VTP (VLAN Trunking Protocol) is responsible for sharing VLAN information, and its mode (transparent) is the direct cause here.

D

STP blocking a VLAN would prevent data traffic from passing, but it does not affect the switch's ability to send VLAN information via VTP. The issue here is that VLAN information is not being propagated, which points to VTP configuration, not STP.

71
MCQhard

A network architect is implementing a Software-Defined Networking (SDN) solution. The SDN controller needs to communicate with the physical switches to install flow rules. Which type of API is used for this communication?

A.Southbound API
B.Northbound API
C.Eastbound API
D.Westbound API
AnswerA

The Southbound API serves as the critical interface through which the SDN controller directly communicates with and programs the underlying network infrastructure devices, such as switches and routers. Protocols like OpenFlow, NETCONF, and OVSDB are common examples, enabling the controller to dynamically install flow rules, modify forwarding tables, and retrieve operational state from the data plane elements. This direct interaction allows for centralized control and configuration of the network's forwarding behavior, making it the correct choice for a network architect implementing device configuration.

Why this answer

The Southbound API is the correct interface because it enables the SDN controller to communicate with the underlying physical or virtual network devices (switches, routers) to install flow rules, modify forwarding tables, and gather telemetry. This API typically uses protocols such as OpenFlow, NETCONF, or OVSDB to translate controller decisions into device-level actions, making it the essential southbound channel in an SDN architecture.

Exam trap

The trap here is that candidates confuse the Southbound API with the Northbound API, mistakenly thinking the controller communicates upward to applications rather than downward to switches, or they invent 'Eastbound' or 'Westbound' as plausible-sounding but incorrect terms for controller-to-switch communication.

Why the other options are wrong

B

The Northbound API communicates between the SDN controller and applications, not between the controller and physical switches. For controller-to-switch communication, the Southbound API (e.g., OpenFlow) is used.

C

The Eastbound API is not a standard term in SDN architecture; it is sometimes used to describe communication between SDN controllers in different domains, not between the controller and physical switches.

D

Westbound APIs are not a standard category in SDN architecture; they are sometimes used to describe communication between SDN controllers and other networks or legacy systems, but not for controller-to-switch flow rule installation.

72
MCQmedium

A company is setting up a new branch office and needs to connect it to the main office over the internet using a secure VPN. The branch office has a dynamic public IP address. Which type of VPN should be configured?

A.Site-to-site IPsec VPN with static IPs
B.Remote access VPN using SSL
C.Dynamic Multipoint VPN (DMVPN)
D.Policy-based VPN
AnswerC

Dynamic Multipoint VPN (DMVPN) is an ideal solution for connecting multiple branch offices, especially when they have dynamic IP addresses, to a central hub. It leverages Multipoint Generic Routing Encapsulation (mGRE) tunnels and Next Hop Resolution Protocol (NHRP) to establish dynamic, on-demand spoke-to-spoke or spoke-to-hub tunnels. This architecture significantly simplifies VPN management and scaling, as spokes only need to know the hub's IP, and NHRP dynamically resolves the actual IP addresses of other spokes.

Why this answer

C is correct because Dynamic Multipoint VPN (DMVPN) is designed to handle sites with dynamic public IP addresses, such as a branch office with a dynamically assigned IP. DMVPN uses mGRE (multipoint Generic Routing Encapsulation) and NHRP (Next Hop Resolution Protocol) to dynamically establish tunnels between spoke routers without requiring static IP configurations on each spoke, making it ideal for this scenario.

Exam trap

The trap here is that candidates often choose site-to-site IPsec VPN (Option A) because it is the most familiar VPN type, failing to recognize that dynamic IPs at the branch require a technology like DMVPN that can handle address changes without manual reconfiguration.

Why the other options are wrong

A

The branch office has a dynamic public IP, but site-to-site IPsec with static IPs requires static IP addresses on both ends, making it unsuitable for this scenario.

B

Remote access VPN using SSL is designed for individual users connecting to a network, not for connecting entire branch offices to a main office over the internet. The question specifies a branch office connection, which requires a site-to-site VPN solution.

D

Policy-based VPNs require static IP addresses on both ends and do not support dynamic public IPs, making them unsuitable for a branch with a dynamic IP.

73
MCQmedium

A new switch is installed in a remote wiring closet. It has been configured with a management IP address of 10.1.2.50/24. The switch is connected via a trunk to the distribution switch, and the management station (10.1.1.0/24) is on a different subnet. The switch cannot be pinged from the management station. The distribution switch has routing to the 10.1.2.0/24 subnet. What is the most likely cause?

A.The management VLAN is not allowed on the trunk.
B.The default gateway is not configured on the new switch.
C.The switch port to the distribution switch is in access mode.
D.The management IP is configured on the wrong VLAN.
AnswerB

A switch's management interface, often a Switched Virtual Interface (SVI), requires a default gateway to route IP packets destined for networks outside its directly connected subnet. Without a configured default gateway, the switch can only communicate with devices within its own management VLAN and subnet. This specific issue explains why the switch is reachable locally but not from other subnets, as it lacks the necessary routing information to forward responses back to remote management stations.

Why this answer

The management station is on subnet 10.1.1.0/24, while the switch's management IP is 10.1.2.50/24. For the switch to reply to pings from a different subnet, it must have a default gateway configured so it knows where to send return traffic. Without a default gateway, the switch will only respond to traffic on its local subnet, making it unreachable from the management station.

Exam trap

The N10-009 exam often tests the misconception that a management IP alone is sufficient for remote access, but candidates forget that a default gateway is mandatory for inter-subnet communication, especially when the management station and switch are on different subnets.

Why the other options are wrong

A

The management station is on a different subnet (10.1.1.0/24) than the switch (10.1.2.0/24), and the distribution switch has routing to the 10.1.2.0/24 subnet. Even if the management VLAN were not allowed on the trunk, the switch would still be reachable via its management IP if the default gateway were configured, because the distribution switch could route traffic to the switch's subnet. The issue is that the switch lacks a default gateway to return traffic to the management station's subnet.

C

The switch port to the distribution switch is a trunk, not an access port. Access mode would prevent VLAN trunking, but the question states a trunk is used, so this is not the issue.

D

The management IP is configured on the correct VLAN (likely VLAN 1 by default), and the trunk allows that VLAN; the issue is that the switch has no default gateway to reach the management station on a different subnet.

74
MCQmedium

An organization needs to connect two buildings that are 2 km apart with a point-to-point wireless link. Which antenna type is BEST suited for this long-distance directional connection?

A.Omni-directional antenna
B.Yagi antenna
C.Patch antenna
D.Parabolic dish antenna
AnswerD

Parabolic dish antennas are the optimal choice for establishing a 2 km point-to-point wireless bridge due to their exceptionally high gain and extremely narrow beamwidth. This design effectively concentrates the radio frequency energy into a tightly focused beam, ensuring maximum signal strength over long distances while minimizing signal dispersion. The narrow beam also significantly reduces interference from other wireless sources, which is critical for maintaining a stable and reliable link across such a span.

Why this answer

A parabolic dish antenna is the best choice for a 2 km point-to-point wireless link because it provides a very narrow beamwidth and high gain, focusing the signal in a specific direction to maximize distance and minimize interference. This makes it ideal for long-distance, high-throughput links where precise alignment is possible.

Exam trap

The trap here is that candidates often confuse 'directional' with 'high gain,' assuming a Yagi or patch antenna is sufficient for long distances, but the parabolic dish's superior focus and gain are critical for maintaining signal integrity over 2 km.

Why the other options are wrong

A

Omni-directional antennas radiate signal in all directions, which disperses power and reduces range. For a 2 km point-to-point link, they lack the necessary gain and focus, leading to weak signal and potential interference.

B

A Yagi antenna has moderate gain and directionality but is not designed for long-distance links of 2 km; its beamwidth is wider, leading to signal dispersion and lower focus compared to a parabolic dish.

C

A patch antenna has a relatively wide beamwidth (typically 30-180 degrees) and lower gain, making it unsuitable for a 2 km point-to-point link where focused, high-gain directionality is required to overcome path loss.

75
MCQhard

A network engineer is designing a wireless network for a large warehouse with many metal racks and heavy machinery that cause significant RF interference. The network must support a high density of IoT sensors and provide reliable connectivity. Which IEEE wireless standard should the engineer implement to best meet these requirements?

A.802.11ac (Wi-Fi 5)
B.802.11ax (Wi-Fi 6)
C.802.11n (Wi-Fi 4)
D.802.11g (Wi-Fi 3)
AnswerB

802.11ax (Wi-Fi 6) is the optimal choice for a large warehouse due to its advanced features like Orthogonal Frequency-Division Multiple Access (OFDMA) and enhanced Multi-User Multiple-Input Multiple-Output (MU-MIMO). OFDMA allows the access point to divide a channel into smaller sub-channels, efficiently serving multiple clients simultaneously with varying bandwidth needs, which is crucial for high-density environments with many IoT devices. Furthermore, its support for both 2.4 GHz and 5 GHz bands provides a balance of range, penetration, and high throughput, effectively mitigating interference and ensuring robust coverage across a vast area.

Why this answer

802.11ax (Wi-Fi 6) is the correct choice because it introduces Orthogonal Frequency Division Multiple Access (OFDMA), which subdivides channels into smaller resource units (RUs) to serve multiple IoT sensors simultaneously, improving efficiency in dense, interference-heavy environments. Additionally, Wi-Fi 6 includes BSS Coloring, which reduces co-channel interference by allowing devices to ignore transmissions from overlapping basic service sets, and Target Wake Time (TWT), which schedules IoT sensor transmissions to conserve battery and reduce contention.

Exam trap

The trap here is that candidates often choose 802.11ac (Wi-Fi 5) because it is widely known for high throughput, but they overlook that 802.11ax's OFDMA and TWT are specifically designed for high-density IoT and interference-heavy environments, not just raw speed.

Why the other options are wrong

A

802.11ac operates only in the 5 GHz band and lacks OFDMA and BSS Coloring, making it less effective in dense, interference-heavy environments like a warehouse with metal racks and machinery.

C

802.11n operates in the 2.4 GHz and 5 GHz bands but lacks OFDMA and BSS Coloring, which are critical for handling high-density IoT sensors and mitigating interference in challenging RF environments like a warehouse with metal racks and heavy machinery.

Page 1 of 2 · 94 questions totalNext →

Ready to test yourself?

Try a timed practice session using only Network Implementation questions.