Courseiva

CCNA 200-301 v2 (200-301) — Questions 175

1389 questions total · 19pages · All types, answers revealed

Page 1 of 19

Page 2
1
Multi-Selectmedium

Which TWO statements correctly describe interface errors and duplex mismatches on Cisco switches?

Select 2 answers
A.Runts are typically caused by CRC errors on the transmitting device.
B.Late collisions on a half-duplex interface can indicate a duplex mismatch with the connected device.
C.The 'show interfaces' command displays the number of CRC errors and runts on an interface.
D.Full-duplex interfaces use CSMA/CD to detect collisions before transmitting.
E.Auto-MDIX can resolve a duplex mismatch by renegotiating the speed and duplex settings.
AnswersB, C

In half-duplex Ethernet, a late collision occurs after the first 512 bits have been transmitted, meaning the sending station has already finished its collision window. When one device is full-duplex and the other half-duplex, the full-duplex side never defers to traffic, transmitting while the half-duplex side is sending, causing a collision that the half-duplex side detects too late. This timing signature is a classic indicator of a duplex mismatch.

Why this answer

Late collisions occur when a frame is transmitted onto the wire and collides after the first 512 bit-times of the frame. In a half-duplex Ethernet segment, a duplex mismatch causes the full-duplex side to never defer and transmit at any time, while the half-duplex side expects to detect collisions only during the collision window. When the full-duplex device sends a frame while the half-duplex device is already transmitting, the half-duplex device detects a collision after the 512-bit window, resulting in a late collision.

Exam trap

Cisco often tests the distinction between late collisions (which occur after the 64-byte window and indicate a duplex mismatch) and early collisions (which occur within the window and are normal in half-duplex), and candidates mistakenly think that all collisions are normal or that CRC errors are the primary cause of runts.

Why the other options are wrong

A

Runts result from collisions on half-duplex links or faulty network interface cards, not from CRC errors.

D

CSMA/CD is only used in half-duplex environments; full-duplex disables collision detection entirely.

E

Auto-MDIX does not participate in speed or duplex negotiation; that function is handled by auto-negotiation (IEEE 802.3u).

2
Multi-Selecteasy

A network engineer is reviewing REST API behavior. Which two statements are true?

Select 2 answers
A.GET is commonly used to retrieve information from an API
B.POST is commonly used to create a new resource
C.DELETE is used to encrypt a payload before transport
D.PUT always retrieves a list of resources
E.GET requires a token in every API design
AnswersA, B

GET is the standard read method in REST APIs, designed to retrieve a representation of a resource without modifying server state. Because it is safe and idempotent, repeated identical GET requests produce the same result, making it the natural choice for queries. A successful GET commonly returns a 200 OK response with the requested payload.

Why this answer

GET is used to retrieve data without changing server state, while POST commonly creates a new resource or submits data for processing. PUT is usually for full replacement, and DELETE removes a resource.

Exam trap

A common exam trap is misinterpreting the function of HTTP methods in REST APIs, such as believing DELETE encrypts data or PUT retrieves resource lists. DELETE actually removes resources, and PUT replaces or updates existing resources. Confusing POST and PUT is also frequent, where POST creates new resources while PUT replaces them.

These misunderstandings can lead to incorrect answers or automation scripts that cause unintended network changes. The exam expects precise knowledge of REST API method purposes, especially in Cisco automation contexts.

Why the other options are wrong

C

Incorrect because DELETE does not encrypt payloads; it removes resources from the server. Encryption is handled separately and not by HTTP methods themselves.

D

Incorrect because PUT does not retrieve lists of resources; it replaces or updates an existing resource. Retrieval is typically done by GET.

E

Incorrect because while many APIs require tokens for authentication, GET itself does not inherently require a token; authentication depends on API security design, not the HTTP method.

When would these options actually be correct?

C

If the question asked 'Which HTTP method is used to remove a resource from a server?' then DELETE would be correct.

D

In a question asking about REST API methods for batch operations, if the API uses PUT to replace a collection of resources (e.g., PUT /items to replace the entire list), then PUT could be described as retrieving a list after replacement, but this is non-standard.

E

In an exam scenario where the question states 'For a REST API that enforces token-based authentication for all endpoints, which statement about GET requests is true?', then 'GET requires a token' would be correct if the API design mandates tokens for all methods.

Why candidates pick the wrong answer

C

Candidates may confuse DELETE with security functions, assuming it 'deletes' or 'hides' data through encryption, due to the word 'delete' being associated with removal or obscuring.

D

Candidates may confuse PUT with GET due to similar sounding names or mistakenly think PUT can be used for retrieval in some designs.

E

Candidates may assume that all REST APIs require authentication tokens because many real-world APIs (e.g., OAuth2) do, but it's not a universal requirement.

3
MCQmedium

An API client sends a valid GET request and receives an HTTP 200 response. What does that indicate?

A.The resource was deleted successfully
B.The request was successful
C.Authentication permanently failed
D.The server requires a reboot
AnswerB

HTTP 200 OK is the standard success status code for a GET request, confirming that the server found and returned the requested resource. For a valid GET, a 200 response includes the resource representation in the message body, satisfying the client's read operation. This is the definitive meaning of HTTP 200.

Why this answer

HTTP 200 indicates a successful request. For a GET operation, it generally means the server successfully returned the requested resource representation.

Exam trap

A frequent exam trap is mistaking the HTTP 200 status code for indicating actions other than a successful GET request, such as resource deletion or authentication failure. Candidates might incorrectly associate 200 with deletion success, which is more accurately represented by 204 No Content. Others may confuse 200 with authentication errors, which are actually indicated by 401 Unauthorized or 403 Forbidden codes.

This confusion arises because candidates sometimes focus on the number 200 as a generic success without linking it specifically to the GET method’s successful retrieval. Understanding the precise meaning of HTTP codes in the context of REST API methods is essential to avoid this trap.

Why the other options are wrong

A

Option A is incorrect because HTTP 200 does not indicate resource deletion. Deletion success is usually represented by 204 No Content or 202 Accepted, not 200.

C

Option C is incorrect since authentication failures return 401 Unauthorized or 403 Forbidden, not 200. A 200 response confirms successful authentication and request processing.

D

Option D is incorrect because HTTP 200 does not signal any server reboot requirement. Server maintenance or reboot notifications are not conveyed via standard HTTP success codes.

When would these options actually be correct?

A

In a different question context, if the question asked about the response code for a successful deletion of a resource, and the answer options included 'The resource was deleted successfully' as a valid response code interpretation, then this option would be correct.

C

In a different exam scenario, if the question asked about the response codes for a failed authentication attempt, and the context specified that the API client received a 401 Unauthorized response, then option C would be correct as it would indicate that authentication permanently failed.

D

In a different question context, if the question asked about server health checks or maintenance procedures, an option indicating that the server requires a reboot could be correct if the server was unresponsive or had performance issues that needed resolution.

Why candidates pick the wrong answer

A

Students may confuse HTTP 200 with a general success code, assuming it applies to any operation. However, the context of the request method (GET) is crucial; a 200 on a GET means retrieval, not deletion.

C

Students might think that any failure could still return a 200 if the server processes the request, but HTTP status codes are specific. 200 never indicates failure; it always means success.

D

Students may misinterpret 200 as a generic 'OK' that could imply the server is operational, but it specifically refers to the success of the request, not the server's overall health.

4
MCQhard

An interface is configured with 10.24.7.158/27. What is the broadcast address of that subnet?

A.10.24.7.159
B.10.24.7.191
C.10.24.7.127
D.10.24.7.160
AnswerA

The /27 CIDR notation indicates a subnet mask of 255.255.255.224, leaving 5 host bits. This defines subnet blocks of 32 addresses each. For the fourth octet, the given IP address 158 falls within the subnet range starting at 128 (10.24.7.128) and ending at 159 (10.24.7.159). The broadcast address is always the last address in a subnet, where all host bits are set to one. Therefore, 10.24.7.159 correctly identifies the broadcast address for the 10.24.7.158/27 interface.

Why this answer

A /27 uses blocks of 32 addresses. The block containing .158 is 10.24.7.128 through 10.24.7.159, so .159 is the broadcast address.

Exam trap

A frequent exam trap is mistaking the broadcast address for the network address of the next subnet or the last address of a different subnet block. For example, 10.24.7.160 is the network address of the next /27 subnet, not the broadcast address of the current subnet. Candidates often confuse the last usable host address with the broadcast address or select an address from an adjacent subnet block.

This mistake leads to incorrect subnetting answers and can cause interface misconfigurations in real networks, resulting in communication failures.

Why the other options are wrong

B

Incorrect. 10.24.7.191 is the last address of a larger /26 subnet block, not the /27 block containing 10.24.7.158, so it cannot be the broadcast address here.

C

Incorrect. 10.24.7.127 is the broadcast address of the previous /27 subnet block (10.24.7.96/27), not the one containing 10.24.7.158.

D

Incorrect. 10.24.7.160 is the network address of the next /27 subnet block after 10.24.7.128/27, not the broadcast address of the current subnet.

When would these options actually be correct?

B

If the question were to ask for the broadcast address of a different subnet, such as 10.24.7.128/26, then option B (10.24.7.191) would be correct, as it would be the last address in that subnet range from 10.24.7.128 to 10.24.7.191.

C

If the question asked for the broadcast address of the subnet 10.24.7.96/25, then option C (10.24.7.127) would be correct. In this case, the subnet mask would allow for a broadcast address of 10.24.7.127.

D

If the question were to ask for the first usable IP address in the subnet 10.24.7.160/27, then option D would be correct. In this case, 10.24.7.160 would be the first usable address after the network address of 10.24.7.159.

Why candidates pick the wrong answer

B

Students may mistakenly calculate the broadcast by adding the subnet size (32) to the network address (128) and subtracting 1, but incorrectly use 64 (the /26 block size) instead of 32.

C

A common error is to assume the broadcast is the last address of the previous subnet, especially when the IP is near a boundary. However, the broadcast must be within the same subnet as the IP.

D

Students often confuse network and broadcast addresses. Since .160 is the next network, they might think it is the broadcast, but the broadcast is actually .159.

5
Multi-Selectmedium

Which three statements about the Spanning Tree Protocol (STP) are true? (Choose three.)

Select 3 answers
.STP uses Bridge Protocol Data Units (BPDUs) to exchange topology information.
.STP elects a root bridge based on the lowest bridge ID.
.STP places redundant ports in blocking state to prevent loops.
.STP always uses the highest port cost to select the root port.
.STP converges instantly after a topology change.
.STP is used to increase the number of broadcast domains.

Why this answer

All three statements are correct because STP relies on Bridge Protocol Data Units (BPDUs) to share topology information between switches, elects a root bridge by comparing bridge IDs (a combination of priority and MAC address, with the lowest value winning), and prevents loops by placing redundant ports into a blocking state (discarding state in Rapid PVST+). These are fundamental behaviors of the 802.1D Spanning Tree Protocol.

Exam trap

Cisco often tests the fact that STP does not use timers to elect the root bridge (it uses bridge ID comparison) and that blocking state is the mechanism for loop prevention, not disabling the port entirely or relying on TCN BPDUs alone.

6
PBQhard

You are connected to R1 via the console. An extended ACL named BLOCK_SMTP has been applied inbound on interface GigabitEthernet0/1, but users on the 192.168.10.0/24 network cannot send email to the SMTP server at 203.0.113.10. Additionally, the ACL is blocking all other traffic that should be permitted. Examine the running configuration and fix the ACL so that SMTP traffic (TCP port 25) from the 192.168.10.0/24 network to the SMTP server is permitted, and all other IP traffic is allowed.

Hints

  • The ACL is applied inbound on G0/1, so the source is the internal network.
  • The current ACL denies all SMTP traffic; you need to permit SMTP from the specific source network to the SMTP server before the deny.
  • Remember to remove the old ACL and create a new one with the correct order of entries.
A.permit tcp 192.168.10.0 0.0.0.255 host 203.0.113.10 eq 25 deny tcp any any eq 25 permit ip any any
B.permit tcp any any eq 25 deny tcp 192.168.10.0 0.0.0.255 host 203.0.113.10 eq 25 permit ip any any
C.deny tcp any any eq 25 permit tcp 192.168.10.0 0.0.0.255 host 203.0.113.10 eq 25 permit ip any any
D.permit tcp 192.168.10.0 0.0.0.255 host 203.0.113.10 eq 25 permit ip any any deny tcp any any eq 25
AnswerA
solution
! R1
configure terminal
no ip access-list extended BLOCK_SMTP
ip access-list extended BLOCK_SMTP
permit tcp 192.168.10.0 0.0.0.255 host 203.0.113.10 eq 25
deny tcp any any eq 25
permit ip any any
end

Why this answer

It permits SMTP from 192.168.10.0/24 to the SMTP server, then denies all other SMTP traffic, and finally permits all other IP traffic. Option B is wrong because it places a general permit for any SMTP before the specific deny, meaning all SMTP is permitted regardless of source/destination. Option C is wrong because it denies all SMTP first, so the subsequent specific permit for the user network is never reached.

Option D is wrong because the order permits the specific SMTP, then permits all IP traffic (including other SMTP), then denies SMTP—the permit ip any any before the deny makes the deny unreachable for all traffic, allowing all SMTP.

Exam trap

Remember that ACLs are processed sequentially; the first match wins. A common mistake is to place a general permit or deny before a specific statement, causing the specific statement to never be evaluated. Always order ACL entries from most specific to most general.

Why the other options are wrong

B

The order of ACL entries is crucial; the first match is applied. Here, the permit any any matches all SMTP before the deny can block the specific traffic.

C

The deny any any matches all SMTP, so the subsequent permit for the specific source/destination is never reached.

D

The permit ip any any matches all traffic, so the subsequent deny for SMTP is never applied.

Why candidates pick the wrong answer

B

Candidates may think that placing the deny after the permit will override it, but ACLs are processed top-down and the first match wins.

C

Candidates might think that a more specific permit can override a general deny, but ACLs are processed sequentially; the first match (deny) blocks the traffic.

D

Candidates might think that placing the deny at the end will block SMTP, but the permit ip any any already permits everything, including SMTP.

7
Multi-Selectmedium

A router is configured as a DHCP server for VLAN 20. Clients on the VLAN can reach the default gateway, but they do not receive leases. Which two configuration issues on the router would directly prevent successful address assignment?

Select 2 answers
A.The excluded-address range removes the entire usable subnet
B.The DHCP pool is missing a dns-server statement
C.The subinterface lacks an ip helper-address
D.There are no available addresses left in the defined pool
AnswersA, D

The network for VLAN 20 is 10.20.20.0/24, which has a usable host range of 10.20.20.1 through 10.20.20.254. An excluded-address command that covers this entire range removes all assignable addresses, leaving the DHCP pool scope effectively empty. This is why no clients can receive an IP address from the server.

Why this answer

The router can serve DHCP locally without an ip helper-address. The real problem is that the excluded-address range consumes every usable host address, leaving the pool with no assignable leases.

Exam trap

A common exam trap is to incorrectly assume that missing optional DHCP parameters, such as the dns-server statement, or the absence of an ip helper-address on the subinterface, will prevent clients from receiving leases. Candidates may also overlook the impact of the excluded-address command consuming the entire subnet range, mistakenly thinking the router’s DHCP service is functioning correctly because clients can ping the gateway. The real issue is that no IP addresses remain available to assign, which is a subtle but critical configuration error that directly causes DHCP lease failures.

Why the other options are wrong

B

Incorrect because the dns-server statement is optional; its absence does not prevent the DHCP server from assigning IP addresses to clients.

C

Incorrect because the ip helper-address command is only necessary when forwarding DHCP requests across subnets, not when the router itself is the DHCP server on the VLAN.

When would these options actually be correct?

B

In a question asking which configuration issue would prevent clients from successfully using their assigned IP addresses (e.g., cannot browse the internet), a missing dns-server statement would be a correct answer because clients would lack DNS resolution.

C

In a scenario where the DHCP server is located on a different subnet than the clients, and the router's subinterface is configured as the default gateway for the client VLAN, the missing ip helper-address would prevent DHCP broadcasts from being forwarded to the remote server, making this the correct answer.

Why candidates pick the wrong answer

B

Candidates often assume that DNS is essential for DHCP to function, confusing the purpose of DHCP (address assignment) with post-assignment network services.

C

Candidates often confuse the role of ip helper-address, assuming it is always required for DHCP, even when the router is the DHCP server itself.

8
MCQhard

A switchport is configured with sticky MAC learning and a maximum secure MAC value of 2. What is the main benefit of sticky learning in this situation?

A.It allows secure MAC addresses to be learned dynamically and used by port security.
B.It removes the maximum secure MAC limit automatically.
C.It converts the port into a trunk after two MAC addresses are learned.
D.It disables port security after the first reboot.
AnswerA

Sticky MAC learning lets the switch dynamically record MAC addresses seen on the port and save them as secure MAC addresses in the running configuration, so port security enforces these exactly like statically configured addresses. If the running configuration is saved, these sticky entries persist across reboots, keeping the port locked to the learned hosts.

Why this answer

Sticky MAC learning allows the switch to learn secure MAC addresses dynamically and treat them as port-security entries without the administrator typing them manually. In plain language, it combines some of the convenience of automatic learning with the control of port security. If the configuration is later saved, those learned entries can become persistent.

This is a common CCNA port-security concept because it shows how sticky learning works with, not instead of, port security. The correct answer is the one focused on dynamic secure learning and convenience, not on disabling the maximum limit or turning the port into a trunk.

Exam trap

A frequent exam trap is to assume that sticky MAC learning disables the maximum secure MAC address limit or automatically converts the port into a trunk. Some candidates mistakenly believe sticky learning removes the configured maximum or disables port security after reboot. However, sticky learning only dynamically learns and locks MAC addresses up to the configured maximum and requires saving the configuration to persist.

Misunderstanding this can lead to selecting incorrect answers that imply sticky learning changes port behavior beyond dynamic secure MAC address learning.

Why the other options are wrong

B

This option is incorrect because sticky learning does not remove or disable the configured maximum secure MAC address limit; the limit remains enforced regardless of sticky learning.

C

This option is incorrect because sticky learning does not change the port type or convert it into a trunk; port mode remains unchanged and unrelated to sticky MAC learning.

D

This option is incorrect because sticky MAC addresses can persist if the configuration is saved, so port security is not disabled after a reboot; sticky learning supports persistence, not disabling.

When would these options actually be correct?

B

In a different scenario where a question asks about a feature that automatically adjusts security settings based on learned MAC addresses, option B could be correct if it described a hypothetical switch configuration that dynamically increases the maximum secure MAC limit based on certain conditions, such as network load or device types.

C

In a different scenario where a question asks about a switchport that is configured to automatically convert to trunking mode after a certain number of MAC addresses are learned, option C could be correct if the switch supports such functionality. For example, if the question specifies a switch model that has a feature allowing dynamic trunking based on MAC address thresholds.

D

In a different exam scenario where the question states that sticky MAC learning is configured to automatically disable port security after a reboot, option D would be correct. This could be a question focused on understanding specific behaviors of port security features under certain configurations.

Why candidates pick the wrong answer

B

Students might think that 'sticky' implies flexibility or that it can override limits, confusing it with other features that dynamically adjust parameters.

C

Students may confuse the concept of learning multiple MAC addresses with trunking, which allows multiple VLANs, but sticky learning does not change the port type.

D

The term 'sticky' might be misinterpreted as temporary or non-persistent, leading to the incorrect assumption that it disables security after reboot.

9
MCQhard

A switchport is configured for 802.1X authentication. What is the usual role of the RADIUS server in that design?

A.It provides Layer 2 trunk negotiation for the supplicant.
B.It validates authentication credentials for the supplicant.
C.It replaces the need for DHCP on the access layer.
D.It generates ARP replies on behalf of the default gateway.
AnswerB

In an 802.1X deployment, the switch acts as the authenticator and forwards EAP frames from the supplicant to the RADIUS server. The server performs the actual authentication decision by checking the presented credentials (EAP-TLS, PEAP-MSCHAPv2, etc.) against an identity store, then returns Access-Accept, Access-Reject, or Access-Challenge. This centralized AAA role is what makes RADIUS the logical validation point for the supplicant's credentials.

Why this answer

The switch acts as the authenticator and forwards authentication requests to the RADIUS server, which validates the user or device credentials.

Exam trap

A common exam trap is assuming the RADIUS server handles functions beyond authentication, such as DHCP IP address assignment or ARP gateway replies. Candidates might mistakenly believe that RADIUS negotiates switchport trunking or manages Layer 2 connectivity, which it does not. This confusion often arises because RADIUS is involved in network access control but does not replace other network services.

Misunderstanding these roles can lead to selecting incorrect options that describe unrelated network functions, causing errors in the exam.

Why the other options are wrong

A

Option A is incorrect because the RADIUS server does not handle Layer 2 trunk negotiation. Trunking is managed by protocols such as DTP or manual switchport configuration, not by the authentication server.

C

Option C is incorrect because DHCP is responsible for IP address assignment, not the RADIUS server. RADIUS focuses solely on authentication, authorization, and accounting functions.

D

Option D is incorrect because the RADIUS server does not generate ARP replies or perform any gateway functions. These tasks are handled by routers or Layer 3 devices in the network.

When would these options actually be correct?

A

If the question were about a switchport configured for VLAN trunking and the role of a protocol like DTP (Dynamic Trunking Protocol) in negotiating trunk links, then this option could be correct. In that context, the switchport would indeed negotiate trunk settings with the connected device.

C

In a different context, a question might ask about the role of a server in a network where DHCP is integrated with RADIUS for IP address assignment. If the question specified a DHCP server that also performs RADIUS functions, this option could be correct.

D

In a different context, if the question were about a network device that acts as a proxy for ARP requests in an environment where the default gateway is not directly reachable, then this option could be correct. For example, a question about a device that performs ARP proxying in a segmented network could validate this statement.

Why candidates pick the wrong answer

A

Students may confuse RADIUS with protocols that manage switchport behavior, or think that because RADIUS is involved in network access, it also controls trunking.

C

Both RADIUS and DHCP are network services that can be integrated (e.g., RADIUS can return attributes used by DHCP), leading some to mistakenly think RADIUS can replace DHCP.

D

In some network designs, RADIUS can be used in conjunction with other features like ARP inspection, but it does not directly generate ARP replies. This confusion may arise from the broad role of RADIUS in network access control.

10
MCQhard

Refer to the exhibit. A network administrator is troubleshooting a trunk link between SW1 and SW2. The trunk on interface GigabitEthernet0/0 on SW1 is not passing traffic, and all VLANs are isolated. The administrator issues the command 'show interfaces GigabitEthernet0/0 trunk' on SW1. What is the most likely cause of the issue?

A.The native VLAN is mismatched between SW1 and SW2.
B.The interface is configured as an access port instead of a trunk.
C.The interface is administratively shut down.
D.The trunk encapsulation is set to ISL on SW1, but the peer switch only supports 802.1Q.
AnswerD

The Encapsulation column shows "isl" while the Status is "not-trunking", which is the classic signature of an encapsulation mismatch. SW1 is sending ISL-framed traffic or negotiating with ISL, but the peer switch supports only 802.1Q, making trunk negotiation impossible. ISL and 802.1Q are fundamentally incompatible: ISL adds a 26-byte header and 4-byte trailer, whereas 802.1Q inserts a 4-byte tag into the Ethernet frame. For a trunk to form, both switches must agree on the exact same encapsulation, and since the peer cannot speak ISL, the link remains operationally "not-trunking".

Why this answer

The 'show interfaces trunk' output on SW1 would show the trunk as up but not passing traffic if the encapsulation is set to ISL while SW2 only supports 802.1Q. Cisco switches default to Dynamic Trunking Protocol (DTP) and may negotiate ISL on older hardware, but if the peer does not support ISL, the trunk fails to form correctly, isolating all VLANs. The mismatch in encapsulation prevents proper frame tagging, causing all VLAN traffic to be dropped.

Exam trap

Cisco often tests the misconception that any trunk encapsulation mismatch will cause the interface to go down or show errors, but in reality the link can remain up while silently dropping all tagged traffic, leading to complete VLAN isolation.

Why the other options are wrong

A

Native VLAN mismatches can cause traffic to leak between VLANs, but they do not prevent a trunk from becoming operational. The output clearly shows the encapsulation type as ISL, not a native VLAN problem.

B

Candidates might assume a misconfigured mode causes the issue, but the exhibit confirms the port is in trunk mode ('on' mode).

C

New learners might equate 'not-trunking' with a shutdown state, but 'admin down' is a distinct status. The port is operationally unable to trunk, not manually disabled.

11
Multi-Selectmedium

Which TWO statements correctly compare 802.11ac and 802.11ax features?

Select 2 answers
A.802.11ax uses OFDMA, while 802.11ac uses OFDM.
B.Both 802.11ac and 802.11ax support 1024-QAM modulation.
C.WPA3 is mandatory for 802.11ax and optional for 802.11ac.
D.Both standards use only the 5 GHz band.
E.802.11ac uses 80 MHz channels, while 802.11ax uses 160 MHz channels exclusively.
AnswersA, C

Orthogonal Frequency-Division Multiple Access (OFDMA) is a key 802.11ax feature that subdivides the channel into smaller resource units, allowing multiple clients to transmit concurrently in the same frame. In contrast, 802.11ac relies on Orthogonal Frequency-Division Multiplexing (OFDM), where a single client can use the entire set of subcarriers during its transmission slot. OFDMA reduces contention and overhead in dense networks, and this is the central PHY-layer difference between the two standards.

Why this answer

802.11ax (Wi‑Fi 6) introduces Orthogonal Frequency Division Multiple Access (OFDMA), which allows multiple users to share subcarriers simultaneously, improving efficiency in dense environments. In contrast, 802.11ac (Wi‑Fi 5) uses Orthogonal Frequency Division Multiplexing (OFDM), where each transmission occupies the entire channel for a single user, leading to less efficient channel utilization. Option C is correct: WPA3 is mandatory for Wi‑Fi 6 (802.11ax) certification, while for 802.11ac it is optional—devices can still obtain Wi‑Fi 5 certification with WPA2 only.

Option B is incorrect because 802.11ac supports a maximum of 256‑QAM; 1024‑QAM is first introduced with 802.11ax. Option D is wrong: 802.11ac operates exclusively in the 5 GHz band, but 802.11ax operates in both 2.4 GHz and 5 GHz. Option E is false: both standards support 20, 40, 80, and 160 MHz channel widths; 802.11ac does not exclusively use 80 MHz, and 802.11ax does not use 160 MHz exclusively.

Exam trap

Cisco often tests the misconception that higher QAM values (like 1024-QAM) are backward-compatible across Wi-Fi generations, but 802.11ac is limited to 256-QAM, and 802.11ax is the first to support 1024-QAM.

Why the other options are wrong

B

802.11ac supports only up to 256‑QAM; 1024‑QAM is introduced with 802.11ax.

D

802.11ac operates only in the 5 GHz band, but 802.11ax operates in both 2.4 GHz and 5 GHz.

E

Both 802.11ac and 802.11ax support a range of channel widths, including 20, 40, 80, and 160 MHz; neither standard restricts to a single channel width.

Why candidates pick the wrong answer

B

Students may confuse the modulation advancements in Wi-Fi generations, assuming that 1024-QAM is available in both since 802.11ac Wave 2 introduced some enhancements. However, 1024-QAM is exclusive to 802.11ax.

D

Since 802.11ac is known for 5 GHz operation, students might assume 802.11ax also only uses 5 GHz, especially because early marketing focused on 5 GHz improvements. However, 802.11ax includes 2.4 GHz for better range and compatibility.

E

Students may recall that 802.11ac commonly uses 80 MHz channels and that 160 MHz is a newer feature, leading them to think 802.11ac is limited to 80 MHz. However, both standards support a range of channel widths.

12
PBQhard

You are connected to R1. The network has two routers (R1, R2) and a switch (SW1) in between. R1's G0/0 connects to SW1 (192.168.1.1/24), SW1 connects to R2's G0/0 (192.168.1.2/24). R2 has a loopback (Lo0: 203.0.113.1/32) used as a management address. Configure an extended ACL on R1 so that only SSH (TCP/22) traffic from the 10.0.0.0/24 network is permitted to reach R2's loopback; all other traffic to that loopback must be denied. Then apply the ACL in the correct direction on the correct interface.

Hints

  • The source network is 10.0.0.0/24; use the correct wildcard mask.
  • The destination is a single host IP; use the 'host' keyword.
  • The ACL must be applied to the interface where traffic from 10.0.0.0/24 enters R1.
A.access-list 100 permit tcp 10.0.0.0 0.0.0.255 host 203.0.113.1 eq 22 access-list 100 deny ip any host 203.0.113.1 interface GigabitEthernet0/1 ip access-group 100 in
B.access-list 100 permit tcp 10.0.0.0 0.0.0.255 host 203.0.113.1 eq 22 access-list 100 deny ip any host 203.0.113.1 interface GigabitEthernet0/0 ip access-group 100 out
C.access-list 100 permit tcp 10.0.0.0 0.0.0.255 host 203.0.113.1 eq 22 interface GigabitEthernet0/1 ip access-group 100 in
D.access-list 100 permit tcp 10.0.0.0 0.0.0.255 host 203.0.113.1 eq 22 access-list 100 deny ip any any interface GigabitEthernet0/1 ip access-group 100 in
AnswerA
solution
! R1
access-list 100 permit tcp 10.0.0.0 0.0.0.255 host 203.0.113.1 eq 22
access-list 100 deny ip any host 203.0.113.1
 permit ip any any
interface gigabitEthernet 0/1
ip access-group 100 in

Why this answer

The current configuration has no ACL restricting traffic to R2's loopback. The candidate must create an extended ACL that permits TCP from 10.0.0.0/24 to host 203.0.113.1 eq 22, then deny all other IP traffic to that host. The ACL must be applied inbound on R1's G0/1 (facing the 10.0.0.0/24 network) to filter traffic before it enters R1.

Applying outbound on G0/0 would also work, but inbound on G0/1 is more efficient and typical. The implicit deny at the end of the ACL blocks all other traffic to the loopback.

Exam trap

Be careful with ACL placement: inbound on the source-facing interface is more efficient and standard. Also, remember that extended ACLs should be placed as close to the source as possible. Do not rely solely on the implicit deny; explicit denies are often required in exam answers.

Avoid using overly broad deny statements that affect more traffic than intended.

Why the other options are wrong

B

The ACL is applied outbound on G0/0 instead of inbound on G0/1. Although it may achieve the goal, it is not the most efficient placement and may not be the expected answer in a PBQ.

C

Missing the explicit deny statement. The implicit deny at the end of the ACL will block other traffic, but the question expects an explicit deny for clarity and completeness.

D

The deny statement is too broad; it denies all IP traffic, not just traffic to the loopback. The correct deny should be specific to the loopback host.

Why candidates pick the wrong answer

B

Candidates might think that applying the ACL outbound on the interface closest to the destination (R2) is correct, but standard practice is to filter inbound on the source-facing interface.

C

Candidates may rely on the implicit deny and omit the explicit deny, thinking it is unnecessary. However, in exam scenarios, explicit denies are often required to demonstrate understanding.

D

Candidates might think that a broad deny is acceptable because the permit statement allows SSH, but they overlook that other traffic (e.g., to other networks) would be blocked, causing unintended denial of service.

13
Matchingmedium

Match each API or programmability term to its most accurate meaning.

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

Concepts
Matches

Centralized management or policy platform

Application-facing interface to the controller

Structured data format commonly used in API payloads

Credential-like value used to help control API access

Why these pairings

The 'Controller' is a centralized platform that manages network devices and enforces policies. The 'Northbound API' provides an interface for applications and users to interact with the controller. 'JSON' is a lightweight, structured data format commonly used to exchange data in API payloads. A 'Token' is a credential-like value used to authenticate and authorize API requests, ensuring secure access to the controller.

Exam trap

Learners often confuse 'Northbound API' with 'Southbound API' (controller-to-device interface). Focus on direction: Northbound faces applications, Southbound faces network devices.

14
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure an IPv4 default static route with a floating backup route on a Cisco router.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5
6Step 6

Why this order

The correct order is: 1. Enter privileged EXEC mode using the enable command, because you must be in privileged mode to enter global configuration. 2. Enter global configuration mode with configure terminal, as static routes are configured in global configuration. 3.

Configure the primary default route using ip route 0.0.0.0 0.0.0.0 <next-hop> with default administrative distance (1), establishing the primary path. 4. Configure the floating backup route using ip route 0.0.0.0 0.0.0.0 <backup-next-hop> <higher-AD> (e.g., 10), so it is less preferred. 5. Exit global configuration mode using end to return to privileged EXEC. 6.

Save the configuration with copy running-config startup-config to ensure the routes persist after a reboot.

15
Matchingmedium

Drag and drop the 802.11 standards on the left to their correct frequency band and maximum throughput on the right.

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

Concepts
Matches

2.4 GHz, 11 Mbps

5 GHz, 54 Mbps

2.4 GHz, 54 Mbps

2.4/5 GHz, 600 Mbps

5 GHz, 6.9 Gbps

Why these pairings

Each 802.11 standard operates in specific frequency bands and has a maximum theoretical throughput. 802.11a uses 5 GHz at 54 Mbps, 802.11b uses 2.4 GHz at 11 Mbps, 802.11g uses 2.4 GHz at 54 Mbps, 802.11n uses both 2.4 and 5 GHz up to 600 Mbps, 802.11ac uses 5 GHz up to 6.9 Gbps, and 802.11ax uses 2.4, 5, and 6 GHz up to 9.6 Gbps.

Exam trap

A common trap is confusing 802.11a with 802.11g because both have 54 Mbps throughput, but they operate in different frequency bands. Remember that 802.11a uses 5 GHz exclusively, while 802.11g uses 2.4 GHz.

16
Matchingmedium

Drag and drop the AI/ML concepts on the left to the correct descriptions on the right.

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

Concepts
Matches

Identifies deviations from normal network behavior, such as unusual traffic spikes or security threats.

Uses historical data and ML models to forecast future network events, like congestion or device failures.

Translates business intents into network policies and continuously verifies that the network meets those intents.

Trains a model using labeled data to classify or predict outcomes, such as identifying specific types of traffic.

Discovers hidden patterns or clusters in unlabeled data, often used for anomaly detection or traffic profiling.

Optimizes network decisions through trial and error, using rewards to learn optimal actions over time.

Why these pairings

Supervised learning uses labeled data, unsupervised finds hidden patterns, reinforcement learning uses rewards, neural networks mimic brain structure, training data is for learning, and inference is applying the model to new data.

Exam trap

The trap is that candidates may confuse the definitions of supervised learning, unsupervised learning, reinforcement learning, and neural networks. Remember: supervised = labeled data, unsupervised = unlabeled patterns, reinforcement = rewards, neural networks = brain-inspired architecture. Focus on the key differentiator: the presence or absence of labels.

17
MCQhard

Based on the exhibit, which route will be used for destination 10.1.1.70?

A.The static route to 10.1.1.64/26
B.The OSPF route to 10.1.1.0/24
C.The OSPF route to 10.1.0.0/16
D.The default route
AnswerA

This is correct because 10.1.1.70 matches the more specific /26 route.

Why this answer

The route used will be the one with the longest matching prefix. In practical terms, 10.1.1.70 falls inside 10.1.1.64/26, and that prefix is more specific than both 10.1.1.0/24 and 10.1.0.0/16. Route selection begins with specificity, so the /26 route wins regardless of the broader alternatives.

This is a clean simulation-style routing-table interpretation question and very close to real exam thinking.

Exam trap

A frequent exam trap is to incorrectly assume that dynamic routing protocols like OSPF always override static routes or that administrative distance alone determines the chosen route. Candidates might see multiple routes to the destination and pick the OSPF route with a broader subnet mask, ignoring that the static route has a longer prefix match. This mistake overlooks the fundamental Cisco routing rule that longest prefix match takes precedence over administrative distance when multiple routes exist.

Misreading subnet masks or ignoring prefix specificity leads to selecting less optimal or incorrect routes in the exam scenario.

Why the other options are wrong

B

Option B is incorrect because the OSPF route to 10.1.1.0/24 is less specific than the /26 static route. Even though OSPF is a dynamic protocol, the router prefers the more specific static route.

C

Option C is incorrect since the OSPF route to 10.1.0.0/16 covers a much larger network and is less specific than both the /24 and /26 routes, so it is not chosen for 10.1.1.70.

D

Option D is incorrect because the default route is only used when no other more specific route matches the destination. Here, the /26 static route is more specific, so the default route is ignored.

When would these options actually be correct?

B

In a different scenario where the question asks which route would be used if the static route to 10.1.1.64/26 was removed from the routing table, option B could be correct as the OSPF route to 10.1.1.0/24 would then be the best match for the destination IP.

C

In a scenario where the question specifies that the routing table only contains the OSPF route to 10.1.0.0/16 and there are no more specific routes for 10.1.1.70, this option would be correct as it would be the only available route to reach the destination.

D

If the question specified that there were no other routes available or if the routing table was configured such that all other routes were down, then the default route would be the only viable option for reaching 10.1.1.70.

Why candidates pick the wrong answer

B

Students might think that because 10.1.1.70 falls within the 10.1.1.0/24 range, this route would be used, but they overlook the existence of a more specific /26 route.

C

Students may confuse administrative distance or metric with prefix length, or they might think that OSPF routes are always preferred over static routes, but prefix length takes precedence.

D

Students might think that if no other route matches, the default route is used, but here other routes do match, so the default is not selected.

18
MCQmedium

Port security is enabled with a maximum of 2 MAC addresses, but a third device connected through a small hub causes a violation. Which result is expected in restrict mode?

A.The port goes immediately to err-disabled state
B.Frames from the unknown MAC are dropped and the violation is counted
C.The switch learns the third MAC after 30 seconds automatically
D.STP blocks the port until the MAC table ages out
AnswerB

In restrict mode, the port remains in service, but any frame with a source MAC address exceeding the configured maximum of 2 is discarded, and the switch increments the port-security violation counter. This behavior matches the question's description exactly: the unknown MAC is not learned, the port is not disabled, and the violation is logged for troubleshooting. Thus, the correct action for a third MAC under a maximum of 2 is to drop the frame and count the violation.

Why this answer

In restrict mode, the switch drops frames from unknown source MAC addresses and increments the violation counter, but the port stays up. That is less disruptive than shutdown mode.

Exam trap

Be careful not to confuse restrict mode with shutdown mode, which disables the port entirely.

Why the other options are wrong

A

In restrict mode, the port does not go to err-disabled state; that behavior is specific to shutdown mode. Shutdown mode disables the port upon a violation, whereas restrict mode only drops traffic from unknown MACs and increments the violation counter.

C

Port security does not automatically learn additional MAC addresses after a delay; it strictly enforces the configured maximum number of MAC addresses. If the maximum is set to 2, any new MAC address beyond that triggers a violation action (restrict, shutdown, or protect) immediately, not after 30 seconds.

D

STP (Spanning Tree Protocol) is used to prevent loops in redundant topologies and does not enforce port security. Port security violations are handled by the port security feature itself, independent of STP. STP blocking a port would be unrelated to MAC address limits.

When would these options actually be correct?

A

This option would be correct in a scenario where the port security is configured to place the port in err-disabled state upon a violation, such as when the violation mode is set to shutdown instead of restrict. In that case, the immediate response to a third MAC address would indeed be to disable the port.

C

In a different exam scenario where the port security is set to 'sticky' learning mode, a question could state that the switch is configured to learn new MAC addresses automatically. In this case, if a third device connects, the switch would learn the MAC after the aging time expires.

D

If the question specified that the port was operating in a mode where security violations lead to the port being disabled, such as protect or shutdown mode, then this option could be correct. For example, if the question stated that the port was configured to err-disable on a violation, then this answer would apply.

Why candidates pick the wrong answer

A

Students often confuse restrict mode with shutdown mode because both are violation actions for port security. The term 'restrict' might be misinterpreted as a more severe action, leading to the assumption that the port is disabled.

C

Some students might think there is a learning period or aging mechanism that allows temporary learning of extra MACs, confusing port security with MAC address table aging or dynamic learning. However, port security violations are immediate and not delayed.

D

Students might associate STP with blocking ports and think that a violation could trigger STP to block the port. However, STP and port security are separate features; port security violations do not involve STP.

19
MCQhard

Refer to the exhibit. A network administrator configures NAT overload on R1 to allow internal hosts in the 10.1.1.0/24 subnet to access the Internet. After the configuration, the administrator runs the show ip nat translations verbose command and notices that several internal sessions all appear to use the same inside global port 1024. The administrator is concerned that port conflicts will occur. Based on the output, which statement is correct?

A.The NAT configuration is missing the overload keyword, causing all internal hosts to share a single source port.
B.The static NAT entry mapping 203.0.113.5 to the entire 10.1.1.0/24 subnet forces all subordinate translations to use the same port 1024.
C.The dynamic NAT pool is exhausted, forcing the router to reuse port 1024 for all new sessions.
D.The translations are extended entries, so the combination of inside global IP, outside global IP, and port ensures each session is unique, even though the inside global port is the same.
AnswerD

Each table entry carries the 'extended' flag, which means the translation includes the destination address and port. This allows the same inside global port 1024 to be used simultaneously for different destinations (198.51.100.10:53, 203.0.113.100:443, 203.0.113.200:22). The five‑tuple still uniquely identifies the session, so port conflicts do not occur.

Why this answer

NAT overload (PAT) creates extended entries that uniquely identify each session by the combination of inside global IP, outside global IP, and port. Even though multiple sessions share the same inside global port 1024, the different outside global IP addresses and ports ensure that each translation entry is unique, preventing port conflicts.

Exam trap

Cisco often tests the misconception that sharing the same inside global port automatically causes a conflict, when in fact PAT uses the full 5-tuple to maintain uniqueness across sessions.

Why the other options are wrong

A

Candidates think that seeing the same global port means overload is not operating, but port reuse is normal in extended PAT.

B

Candidates may misinterpret the summary line as a static identity NAT rule that locks all translations to a single port.

C

Candidates confuse pool exhaustion (no free global addresses) with port reuse. Exhaustion typically manifests as translation failures, not as many entries sharing the same port.

20
PBQhard

You are connected to R1. Configure IPv4 and IPv6 addressing on R1's GigabitEthernet0/0 and GigabitEthernet0/1 interfaces so that R1 can ping both R2's IPv4 address (203.0.113.2) and R2's IPv6 address (2001:db8:1::2). The current configuration has an incorrect subnet mask on G0/0, missing default gateway, and R1's G0/1 has a duplicate IPv4 address with R3. Also, use EUI-64 for IPv6 on G0/0 and static IPv6 assignment on G0/1. Ensure all issues are resolved and connectivity verified.

Network Topology
G0/0203.0.113.1/30G0/0203.0.113.2/30linkG0/1192.168.1.254/24G0/0192.168.1.1/24R2R1switchR3

Hints

  • Check the subnet mask on G0/0; it should match R2's /30.
  • G0/1's IPv4 address conflicts with R3; use an unused address like .254.
  • Enable IPv6 globally with 'ipv6 unicast-routing' before configuring interface IPv6 addresses.
A.Change G0/0 subnet mask to 255.255.255.252, add default gateway 203.0.113.2, change G0/1 IPv4 to 192.168.1.254, enable IPv6 routing, configure G0/0 with ipv6 address 2001:db8:1::/64 eui-64, and G0/1 with ipv6 address 2001:db8:2::1/64.
B.Change G0/0 subnet mask to 255.255.255.0, add default gateway 203.0.113.1, change G0/1 IPv4 to 192.168.1.254, enable IPv6 routing, configure G0/0 with ipv6 address 2001:db8:1::1/64, and G0/1 with ipv6 address 2001:db8:2::1/64.
C.Change G0/0 subnet mask to 255.255.255.252, add default gateway 203.0.113.2, change G0/1 IPv4 to 192.168.1.1, enable IPv6 routing, configure G0/0 with ipv6 address 2001:db8:1::/64 eui-64, and G0/1 with ipv6 address 2001:db8:2::1/64.
D.Change G0/0 subnet mask to 255.255.255.252, add default gateway 203.0.113.2, change G0/1 IPv4 to 192.168.1.254, enable IPv6 routing, configure G0/0 with ipv6 address 2001:db8:1::1/64, and G0/1 with ipv6 address 2001:db8:2::/64 eui-64.
AnswerA
solution
! R1
configure terminal
interface gigabitethernet0/0
ip address 203.0.113.1 255.255.255.252
ipv6 address 2001:db8:1::/64 eui-64
exit
interface gigabitethernet0/1
ip address 192.168.1.254 255.255.255.0
ipv6 address 2001:db8:2::1/64
exit
ip route 0.0.0.0 0.0.0.0 203.0.113.2
end

Why this answer

The subnet mask on G0/0 was incorrectly set to /24 instead of /30. While a /24 mask on 203.0.113.1 would include 203.0.113.2 in the same subnet from R1's perspective, the mismatch with R2's /30 mask leads to inconsistent subnet definitions and potential ARP or routing issues. Additionally, no default gateway was configured, so traffic to remote networks would fail.

On G0/1, the IPv4 address 192.168.1.1 was already used by R3, causing a duplicate IP conflict. IPv6 was not configured on either interface. The fix involved correcting the subnet mask on G0/0 to 255.255.255.252, adding a default gateway (203.0.113.2), assigning a unique IPv4 address to G0/1 (192.168.1.254), enabling IPv6 routing globally with `ipv6 unicast-routing`, configuring EUI-64 on G0/0 (`ipv6 address 2001:db8:1::/64 eui-64`), and static IPv6 on G0/1 (`ipv6 address 2001:db8:2::1/64`).

Exam trap

Watch out for subnet mask mismatches (e.g., /24 vs /30) and duplicate IP addresses. Also, note the specific IPv6 addressing requirements: EUI-64 on one interface and static on the other. Don't assume a default gateway can be any IP in the subnet; it must be the neighbor's IP.

Why the other options are wrong

B

The subnet mask /24 is too large, causing a mismatch with R2's /30; the default gateway must be R2's IP (203.0.113.2); EUI-64 is not used on G0/0.

C

The duplicate IPv4 address on G0/1 is not resolved; it still uses 192.168.1.1 which is already assigned to R3.

D

EUI-64 is required on G0/0, not G0/1; static IPv6 is required on G0/1, not G0/0.

Why candidates pick the wrong answer

B

Candidates might think a /24 mask is standard for Ethernet and that the default gateway could be any IP in the subnet, or they may overlook the EUI-64 requirement.

C

Candidates might forget that the duplicate IP issue must be fixed by using a different address, or they may assume the conflict is automatically resolved.

D

Candidates might confuse which interface uses EUI-64 versus static assignment, or think EUI-64 can be used on any interface regardless of requirements.

21
Matchingeasy

Match each common API or data term to its most accurate meaning.

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

Concepts
Matches

Defined software interface used for communication

Structured data format

Secure transport for the communication

Credential-like value used to help control access

Why these pairings

API (Application Programming Interface) is a defined set of rules that allows software components to communicate, matching 'Defined software interface used for communication.' JSON (JavaScript Object Notation) is a lightweight data-interchange format with key-value pairs, matching 'Structured data format.' HTTPS (Hypertext Transfer Protocol Secure) encrypts HTTP traffic using TLS/SSL, providing secure transport, matching 'Secure transport for the communication.' Token is a unique string used for authentication and authorization, matching 'Credential-like value used to help control access.'

Exam trap

The trap is that candidates often confuse specific API styles (REST, SOAP) or data formats (XML, YAML) with the general concept of an API. Remember that an API is the overarching interface; REST, SOAP, gRPC are specific types, and XML/YAML are data representation formats.

22
Multi-Selectmedium

An engineer wants rapid transition to forwarding on end-user switchports while still protecting the topology from accidental switch connections. Which two STP-related features fit that design?

Select 2 answers
A.PortFast on user-facing access ports
B.BPDU Guard on those same access ports
C.Root Guard on every user-facing port instead of PortFast
D.Loop Guard on hosts to accelerate DHCP
AnswersA, B

PortFast is a spanning-tree feature that immediately transitions a switch port from blocking to forwarding when the link comes up, bypassing the 15-second listening and 15-second learning states required by legacy 802.1D. For user-facing access ports, this eliminates the forwarding delay, allowing an end host to obtain a DHCP lease and start communicating almost instantly. It is the primary mechanism for rapid transition to forwarding on edge endpoints.

Why this answer

PortFast improves the user experience on edge ports, and BPDU Guard keeps those ports from becoming unintended switch uplinks.

Exam trap

Beware of confusing STP features that secure or optimize ports with those that manage root bridge roles or loop prevention.

Why the other options are wrong

C

Root Guard prevents a port from becoming a root port, but it does not provide rapid transition to forwarding or protect against accidental switch connections. PortFast and BPDU Guard are needed for those goals.

D

Loop Guard is used to prevent alternate or root ports from becoming designated in the absence of BPDUs, not to accelerate DHCP or provide rapid transition to forwarding on end-user switchports.

When would these options actually be correct?

C

Root Guard would be correct in a question asking: 'Which STP feature prevents an unauthorized switch from becoming the root bridge on a specific port?'

D

In a question asking for a feature that prevents bridging loops caused by unidirectional link failures on point-to-point links, Loop Guard would be the correct answer.

Why candidates pick the wrong answer

C

Candidates may confuse Root Guard with BPDU Guard, thinking both protect against unwanted switches, or they may overestimate Root Guard's role in rapid transition.

D

Candidates may confuse Loop Guard with features that speed up convergence or associate it with DHCP snooping due to the mention of 'accelerate DHCP' in the option.

23
PBQhard

You are connected to R1 via console. R1 and R2 are directly connected via their GigabitEthernet0/0 interfaces. Configure OSPFv3 for IPv6 on both routers so that the loopback0 interface on R2 (with IPv6 address 2001:db8:acad:2::1/64) is reachable from R1. Enable IPv6 unicast routing, enable OSPFv3 on the appropriate interfaces, and verify the neighbor adjacency and routing table. (Note: R2 already has OSPFv3 configured and is waiting for R1 to complete its configuration.)

Hints

  • OSPFv3 uses a separate process from OSPFv2; you must create the OSPFv3 process with 'ipv6 router ospf <process-id>'.
  • The router-id must be configured manually (e.g., 1.1.1.1) because there are no IPv4 addresses on R1.
  • OSPFv3 is enabled on an interface using 'ipv6 ospf <process-id> area <area-id>'.
A.Enable IPv6 unicast routing, configure OSPFv3 process with router-id, enable OSPFv3 on GigabitEthernet0/0 in area 0, and verify neighbor and route.
B.Enable IPv6 unicast routing, configure OSPFv2 process with router-id, enable OSPFv2 on GigabitEthernet0/0 in area 0, and verify neighbor and route.
C.Enable IPv6 unicast routing, configure OSPFv3 process without a router-id, enable OSPFv3 on GigabitEthernet0/0 in area 0, and verify neighbor and route.
D.Enable IPv6 unicast routing, configure OSPFv3 process with router-id, enable OSPFv3 on GigabitEthernet0/0 in area 0, but do not verify neighbor or route.
AnswerA
solution
! R1
ipv6 unicast-routing
ipv6 router ospf 1
router-id 1.1.1.1
exit
interface gigabitethernet0/0
ipv6 ospf 1 area 0
end

Why this answer

The issue is that OSPFv3 process is not enabled on R1. To fix, first ensure IPv6 unicast routing is enabled (already done). Then configure OSPFv3 routing process with a process ID (e.g., 1) and router-id using the `ipv6 router ospf 1` command and `router-id` command.

Then enable OSPFv3 on the GigabitEthernet0/0 interface with `ipv6 ospf 1 area 0`. Finally, verify with `show ospfv3 neighbor` to see R2's router ID (e.g., 2.2.2.2) and `show ipv6 route ospf` to see the route to 2001:db8:acad:2::/64.

Exam trap

A common trap is confusing OSPFv2 and OSPFv3. Remember that OSPFv3 is for IPv6 and requires a router-id. Also, do not skip verification steps; they are often required in exam scenarios.

Why the other options are wrong

B

OSPFv2 supports only IPv4; OSPFv3 is required for IPv6 routing.

C

OSPFv3 uses a 32-bit router-id, which must be manually configured or derived from an IPv4 address; without it, the process cannot operate.

D

Verification commands like 'show ospfv3 neighbor' and 'show ipv6 route ospf' are necessary to ensure OSPFv3 is functioning correctly.

Why candidates pick the wrong answer

B

Candidates may confuse OSPFv2 and OSPFv3, especially if they are more familiar with IPv4 OSPF configuration.

C

Candidates may think OSPFv3 can use IPv6 addresses as router-ids, but it still requires a router-id in dotted-decimal format.

D

Candidates may focus only on configuration steps and overlook the verification step, which is a common exam requirement.

24
Multi-Selectmedium

Which TWO statements correctly describe the behavior of the passive-interface command in single-area OSPFv2?

Select 2 answers
A.It prevents the router from sending Hello packets on the specified interface.
B.It prevents the router from advertising the network in OSPF LSAs.
C.The network associated with the passive interface is still advertised in OSPF LSAs.
D.It disables the interface for any OSPF traffic, including data traffic.
E.It removes the network from the OSPF routing table.
AnswersA, C

This is correct: the passive-interface command in OSPF suppresses the transmission of Hello packets on the specified interface. Without Hello packets, the router cannot discover neighbors or form adjacencies on that link, so no OSPF neighbor relationship will ever establish. This is commonly used on broadcast or point-to-multipoint segments where OSPF peering is not needed but the subnet must still be advertised.

Why this answer

The passive-interface command in OSPFv2 suppresses all OSPF protocol packets (Hello, DD, LSR, LSU, LSAck) on the specified interface, preventing neighbor adjacency formation. However, the network prefix of that interface is still included in the router LSA and advertised through active interfaces to the OSPF domain. Option A is correct because Hello packets are suppressed.

Option C is correct because the prefix is still advertised in LSAs. Option B is incorrect after rewording: it states that the network is not advertised, which is false. Option D is incorrect because passive-interface does not affect data traffic forwarding.

Option E is incorrect because the network remains in the OSPF routing table.

Exam trap

A common mistake is confusing passive-interface in OSPF with RIP or EIGRP; in OSPF, it suppresses all control packets on the interface, but the network is still advertised in LSAs via other interfaces.

Why the other options are wrong

B

This statement is false because passive-interface does not prevent the network from being advertised; the prefix is still injected into the OSPF LSAs.

D

Passive-interface only stops OSPF control packets; data traffic forwarding continues normally on the interface.

E

The passive-interface command does not remove the network from the OSPF routing table; the network is still reachable via other interfaces.

Why candidates pick the wrong answer

B

Students often confuse OSPF with distance vector protocols like RIP, where the passive-interface command stops sending routing updates. In OSPF, the term 'routing updates' is misleading because OSPF uses LSAs, not periodic updates.

D

The word 'passive' might imply that the interface is disabled or inactive for all traffic. However, in OSPF context, it only means the interface does not actively send Hello packets to discover neighbors.

E

Some might think that if an interface is passive, its network should not be advertised. However, OSPF still includes the network in LSAs to ensure reachability, even if no neighbors are on that interface.

25
MCQhard

What prefix length corresponds to the subnet mask 255.255.255.224?

A./26
B./27
C./28
D./29
AnswerB

The subnet mask 255.255.255.224 converts to binary as 11111111.11111111.11111111.11100000, where the last octet indicates 3 additional network bits beyond the default /24. Adding 24 + 3 gives a prefix length of /27, which is the correct match. This leaves 5 host bits, providing 2^5 - 2 = 30 usable IP addresses per subnet.

Why this answer

The subnet mask 255.255.255.224 corresponds to /27. In plain language, the first three octets contribute 24 network bits, and 224 in binary is 11100000, which contributes 3 more network bits. That gives a total of 27 network bits.

This is a common prefix-conversion question because it checks whether you can move between dotted-decimal masks and prefix lengths confidently.

Exam trap

Be cautious not to confuse the binary values of different subnet masks. Always convert the last octet to binary to determine the correct prefix length.

Why the other options are wrong

A

The /26 prefix corresponds to subnet mask 255.255.255.192, which has 64 addresses per subnet, not 32. The mask 255.255.255.224 has 27 network bits, not 26.

C

The /28 prefix corresponds to subnet mask 255.255.255.240, which provides 16 addresses per subnet (14 usable). The mask 255.255.255.224 has 32 addresses per subnet, so /28 is incorrect.

D

The /29 prefix corresponds to subnet mask 255.255.255.248, which provides 8 addresses per subnet (6 usable). The mask 255.255.255.224 has 32 addresses, so /29 is incorrect.

When would these options actually be correct?

A

In a different question asking for the prefix length of a subnet mask of 255.255.255.192, option A would be correct as it corresponds to a /26 prefix length. This would involve a scenario where the subnetting needs are for a larger subnet than /27.

C

If the question asked for the prefix length corresponding to the subnet mask 255.255.255.240, then option C: /28 would be the correct answer, as it accurately reflects that specific subnet mask.

D

In a different exam scenario, if the question asked for the prefix length of a subnet mask of 255.255.255.248, then /29 would be the correct answer, as it provides 8 IP addresses with 6 usable ones.

Why candidates pick the wrong answer

A

Students often confuse the number of bits borrowed; /26 is a common prefix and might be mistakenly associated with 224 because both are used in subnetting.

C

Students may think that 224 in the last octet implies 28 bits because 224 is close to 240, or they might misremember the binary conversion.

D

Students might confuse the number of host bits; /29 is a common prefix for small subnets, and the 224 mask might be mistakenly associated with a higher prefix length due to its larger numeric value.

26
Multi-Selecthard

A router has learned route 172.16.50.0/24 from OSPF with cost 20 and also has a static route to the same prefix with administrative distance 5. Which two statements are correct about route selection?

Select 2 answers
A.The static route is installed because it has the lower administrative distance
B.The OSPF route is installed because cost 20 is lower than metric 0
C.If the static route is removed, OSPF can become the active route
D.Both routes are installed as equal-cost paths automatically
AnswersA, C

The router selects routes based on administrative distance (AD) when multiple sources provide paths to the same prefix. The static route in this scenario has an explicitly configured AD of 5. This value is lower than OSPF's default administrative distance of 110. Therefore, the static route is installed into the routing table, as it satisfies the crucial criterion of having the lowest administrative distance for the 172.16.50.0/24 network.

Why this answer

When the same prefix is learned from different routing sources, the router first compares administrative distance (AD). The static route with AD 5 wins over OSPF with AD 110, so option A is correct. Option C is correct because if the static route is removed, the OSPF route becomes the next best candidate and is installed.

Option B is wrong since AD is compared before metrics like OSPF cost; a lower cost does not override a lower AD. Option D is wrong because only one route is installed per destination based on AD, not both.

Exam trap

A common exam trap is to incorrectly assume that the OSPF route with a lower cost metric will be preferred over a static route. Many candidates mistakenly compare OSPF cost directly against the static route’s metric or ignore administrative distance entirely. This leads to the wrong conclusion that OSPF wins because 20 is less than 0 or some assumed static metric.

However, Cisco routers always compare administrative distance first when routes come from different sources. Ignoring this rule causes confusion and incorrect answers in routing questions involving multiple protocols.

Why the other options are wrong

B

Option B is incorrect because metrics like OSPF cost are only compared among routes from the same protocol; the router does not compare OSPF cost against static route administrative distance.

D

Option D is incorrect because routes from different sources with different administrative distances do not qualify for equal-cost multipath (ECMP), so both routes are not installed simultaneously.

When would these options actually be correct?

B

If the question stated that both routes were learned via the same routing protocol (e.g., both OSPF) and the static route was actually an OSPF route with a lower cost, then the route with the lower cost would be installed.

D

If both routes had the same administrative distance (e.g., both from OSPF with equal cost, or both static with metric 0) and equal metric, then both would be installed as equal-cost paths for load balancing.

Why candidates pick the wrong answer

B

Candidates often confuse administrative distance and metric, thinking that a lower metric always wins regardless of route source, or they mistakenly believe OSPF cost is directly comparable to a static route's metric.

D

Candidates may confuse the concept of ECMP with the idea that any two routes to the same destination are automatically installed, forgetting that administrative distance and metric must be equal.

27
MCQhard

A network technician is troubleshooting a newly installed fiber link between two Cisco Catalyst 9300 switches. The link is up, but the interface shows excessive CRC errors and input errors. The technician runs 'show interfaces' and 'show interfaces transceiver details' on the suspect interface. Based on the output, what is the most likely cause of the errors?

A.The interface is configured for full duplex but the switchport is set to auto-negotiation, causing a duplex mismatch.
B.The SFP transceiver is faulty because the transmit power is too low at -3.5 dBm.
C.The fiber cable is too long for the SX SFP, exceeding the distance limit.
D.The receive power is too low, likely due to a dirty or damaged fiber connector or excessive attenuation.
AnswerD

The receive power of -20.1 dBm falls below the low alarm threshold of -17.0 dBm, while the transmit power is normal, indicating a problem in the optical path rather than the transceiver. Weak RX power causes CRC errors because the receiver has difficulty distinguishing 1s and 0s from the noise floor. Dirty or damaged fiber connectors, excessive splices, or high attenuation in the cable are the most likely culprits. Cleaning endfaces and checking patch panels should be the first troubleshooting steps.

Why this answer

The output from 'show interfaces transceiver details' would show the receive power level. A receive power that is too low (e.g., below the receiver sensitivity threshold) indicates excessive signal loss, often due to dirty or damaged fiber connectors, poor splices, or excessive cable attenuation. This causes bit errors that manifest as CRC and input errors, even though the link is physically up.

Option D correctly identifies this as the most likely cause.

Exam trap

Cisco often tests the distinction between transmit power and receive power, trapping candidates who assume a low transmit power is the root cause, when in fact the receive power is the critical metric for signal integrity at the far end.

Why the other options are wrong

A

The interface shows Full Duplex and 1000 Mbps with no collisions or late collisions, which indicates no duplex mismatch. Duplex mismatch typically causes collisions and late collisions, which are absent here.

B

The transmit power of -3.5 dBm is within the normal range for SX SFP (-1.0 to -9.5 dBm), so the SFP is transmitting correctly. Low transmit power would not cause CRC errors if it is within specifications.

C

The SX SFP supports up to 550m on OM3 fiber, and the link is operational, so distance is not the issue. Excessive CRC errors due to distance would typically cause the link to be down or unstable.

Why candidates pick the wrong answer

A

Students often associate CRC errors with duplex mismatch, but CRC errors are more commonly caused by physical layer issues like signal degradation or faulty hardware, not duplex mismatch.

B

Students may think that any low power reading indicates a faulty SFP, but the key is to compare against the threshold. Transmit power is often less critical than receive power for link errors.

C

Students may assume that fiber distance limits are always the cause of errors, but the link being up and the specific error pattern (CRC) points more to signal attenuation or connector issues.

28
Matchingmedium

Match each address-related concept to its most accurate meaning.

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

Concepts
Matches

Indicates network versus host portions of an IPv4 address

Next-hop path used for off-subnet traffic

Address used to reach all hosts in the local broadcast domain

Address that identifies the subnet itself

Why these pairings

The subnet mask is used to distinguish the network portion from the host portion of an IPv4 address. The default gateway is the next-hop router that forwards traffic destined for off-subnet networks. The broadcast address sends packets to all hosts within the local broadcast domain, while the network address identifies the subnet itself and is the first address in the subnet range.

Exam trap

The exam often tests your ability to differentiate between IP addresses, MAC addresses, subnet masks, and default gateways. Be careful not to confuse the function of each, especially since they are all related to addressing and routing.

29
MCQhard

Based on the exhibit, why does the ACL still allow HTTPS traffic from the branch subnet to the server?

A.The ACL blocks TCP port 80 instead of TCP port 443.
B.HTTPS uses UDP port 443, so TCP matching can never work.
C.The ACL must deny all IP traffic to the server to stop HTTPS.
D.ACLs cannot filter by destination port when a host keyword is used.
AnswerA

HTTPS is HTTP encapsulated in TLS/SSL, and it uses TCP port 443 by default. Port 80 is reserved for plain HTTP, which is unencrypted. If the ACL denies only TCP port 80, then traffic destined to port 443 is not matched by that deny statement and will be evaluated by subsequent ACEs, which likely permit it, leaving HTTPS functional.

Why this answer

The ACL still allows the HTTPS traffic because the deny statement is matching TCP port 80, not TCP port 443. In practical terms, the entry blocks HTTP, not HTTPS. Since the requirement is specifically to block encrypted web traffic on TCP 443, the current line is aimed at the wrong service.

This is a good precision question because it tests whether the candidate pays attention to the exact destination port rather than just seeing a generic web-related deny.

Exam trap

A common exam trap is assuming that blocking TCP port 80 also blocks HTTPS traffic. Candidates may see a deny statement for port 80 and mistakenly conclude that all web traffic is blocked. However, HTTPS uses TCP port 443, so if the ACL does not explicitly deny port 443, HTTPS traffic will still be allowed.

This trap tests attention to detail and understanding of port assignments for common services. Overlooking the exact port number leads to incorrect conclusions about ACL effectiveness and network security.

Why the other options are wrong

B

Incorrect. HTTPS uses TCP, not UDP. Denying UDP port 443 would not block HTTPS traffic, so this option is factually wrong.

C

Incorrect. It is unnecessary to deny all IP traffic to block HTTPS. Targeting the specific TCP port 443 is sufficient and more secure practice.

D

Incorrect. ACLs can filter by destination port even when using the host keyword. Both host-based IP matching and port filtering are valid in extended ACLs.

When would these options actually be correct?

B

In a different scenario, if a question stated that a firewall was configured to filter UDP traffic and the exam asked about HTTPS traffic being blocked, this option could be correct if the context mistakenly assumed HTTPS could use UDP. This would highlight a misunderstanding about the protocols involved.

C

In a different scenario where the question states that the ACL is designed to deny all traffic except for specific protocols, and the context indicates that HTTPS must be explicitly denied, this option would be correct. For example, if the question asked what needs to be done to ensure HTTPS is blocked, then stating that all IP traffic must be denied would be valid.

D

In a different scenario where the question specifies that ACLs are configured to only filter by IP address without considering port numbers, this option could be correct. For example, if the question states that the ACL is designed to block all traffic from a specific host without specifying port filtering capabilities.

Why candidates pick the wrong answer

B

Students might confuse HTTPS with DNS or other services that use UDP, or they might think that because TLS can theoretically run over UDP (as in DTLS), HTTPS commonly uses UDP. However, standard HTTPS always uses TCP.

C

Students might think that because HTTPS is encrypted, a specific port deny might not work, or they might believe that a blanket deny is simpler and more effective. However, proper ACL design uses specific denies to minimize impact.

D

Students might confuse the capabilities of standard ACLs (which cannot filter by port) with extended ACLs, or they might think that using a host keyword limits the ACL to only IP-based filtering. In reality, extended ACLs support both.

30
Matchingmedium

Match each data-structure term to its most accurate meaning.

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

Concepts
Matches

Field name

Content associated with a field

Group of key-value pairs

Ordered list of items

Why these pairings

These pairs correctly match data-structure terms to their definitions. Array uses indices, hash table uses key-value mapping, stack is LIFO, queue is FIFO, linked list uses nodes with references, and tree is hierarchical.

Exam trap

Do not confuse the properties of different data structures. Arrays are defined by indexed access, not by access patterns like LIFO or FIFO, which belong to stacks and queues respectively.

31
MCQmedium

Why is version control valuable for network automation files?

A.It increases interface bandwidth
B.It tracks changes and allows rollback to earlier versions
C.It replaces the need for device backups
D.It guarantees that configuration changes are error free
AnswerB

Version control records every change to configuration files, allowing engineers to diff versions, identify who made specific modifications, and revert to a known-good state. This change tracking and rollback capability is foundational for network automation, supporting compliance audits and rapid incident recovery when a change causes issues.

Why this answer

Version control systems help teams track who changed what, compare revisions, and restore earlier states when needed. That improves operational discipline but does not guarantee correctness by itself.

Exam trap

A common exam trap is selecting the option that version control replaces device backups or guarantees error-free configurations. While version control tracks changes and allows rollback, it does not protect against hardware failures or accidental deletions like backups do. Additionally, version control cannot automatically detect or prevent configuration errors; it only records changes.

Candidates may confuse version control’s change tracking benefits with complete operational safety, but understanding that backups and validation processes remain essential is critical to avoid this mistake.

Why the other options are wrong

A

This option incorrectly claims version control increases interface bandwidth, which is unrelated to version control functionality. Bandwidth is a physical and configuration attribute unaffected by file management systems.

C

This option is incorrect because version control does not replace device backups. Backups protect device states and data beyond just file changes, which version control alone cannot ensure.

D

This option falsely asserts that version control guarantees error-free configuration changes. While it improves process discipline, it cannot prevent human errors or validate correctness automatically.

When would these options actually be correct?

A

In a question asking about methods to optimize network performance or increase throughput, an option discussing enhancements to interface bandwidth could be correct. For example, if the question focused on technologies that improve data transmission rates, this option would be valid.

C

In a question asking about the advantages of using version control systems in environments where backups are not feasible or where configuration files are automatically generated and stored, this option could be correct if it implies that version control can serve as a substitute for traditional backup methods.

D

If the exam question asked about a system that includes automated validation checks after each version control commit, then this option could be correct. In that scenario, the system could ensure that only error-free configurations are committed, making it a valid statement.

Why candidates pick the wrong answer

A

Students might mistakenly think that version control optimizes network performance because it is often associated with automation and efficiency improvements.

C

Because version control stores multiple versions of configuration files, some may think it eliminates the need for separate backups, but backups serve a different purpose (full device recovery) and are still required.

D

Version control is often part of a CI/CD pipeline that includes automated testing, leading some to believe it guarantees error-free changes, but it only provides the framework for quality control, not a guarantee.

32
MCQmedium

Which spanning-tree port state listens for BPDUs and participates in STP, but does not learn MAC addresses yet?

A.Blocking
B.Listening
C.Learning
D.Forwarding
AnswerB

The Listening state follows the Blocking state and precedes the Learning state in STP convergence. During Listening, the port actively listens for BPDUs to determine the root bridge and its port role, and it does not learn MAC addresses or forward user traffic. This is the state that matches the question's description, as it is the phase specifically designated for BPDU listening to build the STP topology.

Why this answer

In the classic 802.1D sequence, the listening state processes BPDUs and prepares for forwarding decisions, but it does not populate the MAC address table yet.

Exam trap

Be careful not to confuse the listening state with learning, as both involve BPDU processing but differ in MAC address table updates.

Why the other options are wrong

A

In the blocking state, the port does not participate in STP actively; it only receives BPDUs but does not send them or transition toward forwarding. The question specifies a state that listens for BPDUs and participates in STP, which is the listening state, not blocking.

C

The learning state populates the MAC address table by learning source MAC addresses from incoming frames, which directly contradicts the question's requirement that the state does not learn MAC addresses. Learning occurs after listening and before forwarding.

D

The forwarding state both learns MAC addresses and forwards traffic, which violates the condition that the state does not learn MAC addresses. Forwarding is the final state where the port is fully operational.

When would these options actually be correct?

A

If the question asked which port state does not forward frames and only listens for BPDUs without participating in STP, then Blocking would be the correct answer. This would imply a focus on the prevention of loops rather than active participation.

C

If the question asked about a state that both listens for BPDUs and learns MAC addresses, such as during the transition from Listening to Forwarding, then 'Learning' would be the correct answer.

D

If the question asked for the state that both listens for BPDUs and actively forwards data frames while learning MAC addresses, 'Forwarding' would be the correct answer, as it describes the port state that fully participates in STP and data transmission.

Why candidates pick the wrong answer

A

Students often confuse blocking with listening because both states do not forward traffic and both receive BPDUs. However, blocking is the initial state after a port is enabled, and it does not actively participate in STP decision-making like listening does.

C

Students may think that learning is the state where the port learns about the network topology via BPDUs, but in STP, learning specifically refers to MAC address learning, not BPDU processing. The listening state is where BPDU processing and STP participation occur without MAC learning.

D

Some students might assume that forwarding includes only traffic forwarding and not MAC learning, but in STP, the forwarding state also includes learning MAC addresses from incoming frames. The listening state is the only state that participates in STP without learning MAC addresses.

33
Multi-Selectmedium

Which two statements accurately describe ACL behavior on Cisco devices?

Select 2 answers
A.ACL entries are processed from top to bottom until a match is found.
B.ACLs end with an implicit deny if unmatched traffic reaches the end.
C.ACLs always evaluate every line before deciding the action.
D.ACLs end with an implicit permit unless configured otherwise.
E.ACLs apply only to Layer 1 traffic and not IP packets.
AnswersA, B

Cisco IOS ACLs are ordered lists; each packet is compared against the access control entries sequentially, beginning with the first line. When a packet matches an ACE, the specified permit or deny action is applied immediately, and no remaining entries are examined. This first-match behavior is fundamental to ACL design, so line order can change the outcome.

Why this answer

ACL questions often depend on understanding how Cisco devices process entries line by line. In plain language, ACL entries are evaluated from top to bottom, and the first matching statement decides the result. If traffic reaches the end without matching a permit, it is denied by the implicit deny. These two ideas explain many real ACL troubleshooting cases.

The wrong answers often sound plausible because they borrow language from other parts of networking. But ACLs do not normally evaluate all lines before choosing, and they do not end with an implicit permit. Once you remember “first match wins” and “implicit deny at the end,” many access-list questions become much easier.

Exam trap

A frequent exam trap is assuming that ACLs evaluate every line before deciding to permit or deny traffic. Candidates might think that if no explicit deny exists, traffic is allowed by default. However, Cisco ACLs stop processing at the first match, and if no match occurs, the implicit deny at the end blocks the traffic.

This misunderstanding can lead to incorrect answers about ACL behavior and cause misconfigurations in real networks. Remembering that ACLs use a “first match wins” approach and end with an implicit deny helps avoid this trap.

Why the other options are wrong

C

Incorrect because ACLs do not evaluate every line; they stop processing once a match is found, making this statement false.

D

Incorrect because Cisco ACLs do not end with an implicit permit; the default behavior is an implicit deny for unmatched traffic.

E

Incorrect because ACLs filter traffic at Layer 3 and Layer 4, not at Layer 1, so this statement is factually wrong.

When would these options actually be correct?

C

In a hypothetical exam question that asks about a theoretical ACL processing model where all entries must be evaluated for logging or auditing purposes, option C could be correct, as it would imply a different operational context.

D

If the exam question stated that the ACL was configured to explicitly allow all traffic at the end of the list, or if it was specifically about a different vendor's ACL implementation that defaults to an implicit permit, then this option would be correct.

E

In a different question that specifically asks about the behavior of ACLs in a network that only handles Layer 1 traffic, such as a scenario involving MAC address filtering on a switch, this option could be correct. For example, if the question was about access control methods for non-IP traffic, then this statement might apply.

Why candidates pick the wrong answer

C

Students might think that ACLs evaluate all entries to ensure comprehensive filtering, similar to how some firewall rules work. However, Cisco ACLs use first-match logic, not last-match.

D

Some students may confuse ACL behavior with routing protocols or other features that have implicit permits. Additionally, the concept of 'implicit permit' exists in some contexts (e.g., IPv6 ACLs have an implicit permit for certain traffic), but standard ACLs have an implicit deny.

E

Students might think ACLs apply to all layers due to the term 'access control,' but ACLs are specifically designed for network layer filtering. Layer 1 filtering is handled by hardware features like port security or physical access controls.

34
MCQhard

A technician configures OSPF on R1 using the command network 10.0.0.0 0.0.0.255 area 0. R1's GigabitEthernet0/0 interface has IP address 10.0.0.1/30 and is included in the OSPF process. The technician confirms the interface is not passive using the show ip ospf interface GigabitEthernet0/0 command. However, R2 is not forming an OSPF adjacency with R1. What should the technician do next?

A.Check the OSPF hello and dead intervals on R1 and R2.
B.Verify the OSPF area ID configured on R2's interface.
C.Check whether R2's interface is configured as a passive interface.
D.Verify the subnet mask configured on R2's connecting interface.
AnswerD

OSPF on a broadcast network requires an exact subnet mask match; a mismatch will prevent neighbor relationships. Given that R1's interface is properly added to OSPF, is not passive, and is in the correct area, the most likely cause is a misconfigured subnet mask on R2. Checking this resolves a basic Layer 3 requirement before investigating any OSPF-specific parameters.

Why this answer

The OSPF network command 10.0.0.0 0.0.0.255 area 0 uses a wildcard mask that matches only the first 24 bits. The interface on R1 has a /30 mask (255.255.255.252), so its IP 10.0.0.1 falls within the 10.0.0.0/24 range. However, if R2's connecting interface has a different subnet mask (e.g., /24 or /28), the two interfaces will be in different subnets, preventing OSPF adjacency from forming.

OSPF requires that interfaces on the same link share the same subnet prefix length to establish a neighbor relationship.

Exam trap

Cisco often tests the misconception that the OSPF network command's wildcard mask determines the subnet for adjacency, when in fact the interface's configured subnet mask is what OSPF uses to verify the neighbor is on the same link.

Why the other options are wrong

A

Skips the more likely and fundamental subnet mask check, which would render timer issues irrelevant until resolved.

B

Ignores the more foundational IP addressing check that could also cause the issue, and area troubleshooting would be misleading if the subnet mask is incorrect.

C

Jumps to an OSPF-specific command without first verifying the fundamental IP subnet configuration, which is a more direct cause of failed adjacencies on broadcast links.

35
Multi-Selectmedium

Which TWO statements are true about IPv6 link-local addresses?

Select 2 answers
A.They are automatically configured on all IPv6-enabled interfaces.
B.They are routable across the entire IPv6 internet.
C.They always use the EUI-64 format for the interface ID.
D.They are used as the default gateway address for IPv6 hosts.
E.They are identified by the prefix fe80::/10.
AnswersA, E

IPv6-enabled interfaces automatically generate a link-local address, even if no other IPv6 address is configured.

Why this answer

IPv6 link-local addresses (fe80::/10) are automatically generated on every IPv6-enabled interface using Stateless Address Autoconfiguration (SLAAC) as defined in RFC 4862. This ensures that each interface has a unique local address for neighbor discovery and other link-local operations without requiring manual configuration or a DHCPv6 server.

Exam trap

Cisco often tests the misconception that link-local addresses are routable or that they always use EUI-64, when in fact they are strictly link-scoped and can use privacy extensions to randomize the interface ID.

Why the other options are wrong

B

Link-local addresses are not routable; they are confined to a single link or network segment. Routers will not forward packets with a link-local source or destination address beyond the local subnet.

C

While EUI-64 is one method for generating the interface ID, link-local addresses can also use randomly generated identifiers (privacy extensions) or be manually configured. The statement that they always use EUI-64 is incorrect.

D

The default gateway for IPv6 hosts is typically a global unicast or unique local address, not a link-local address. While routers may send Router Advertisements with a link-local source, the default gateway address learned by hosts is the router's link-local address, but the host uses that link-local address as the next-hop, not as the default gateway address itself. The statement is misleading because the default gateway is often the link-local address of the router, but the host uses it as the next-hop, not as a routable address.

Why candidates pick the wrong answer

B

Students may confuse link-local addresses with global unicast addresses, assuming all IPv6 addresses are routable. The 'link-local' term might be misinterpreted as 'local to the network' rather than 'local to the link'.

C

Many textbooks emphasize EUI-64 as the standard method for IPv6 address generation, leading students to believe it is mandatory for link-local addresses. They may overlook the existence of privacy extensions or manual configuration.

D

Students may recall that IPv6 hosts learn the default gateway from Router Advertisements, which use link-local addresses. They might incorrectly assume that the default gateway address itself is a link-local address, but in practice, the host uses the link-local address as the next-hop for off-link traffic.

36
MCQhard

A network administrator is troubleshooting a wireless connectivity issue in a large office. Users on the 5 GHz band report intermittent disconnections and slow performance, while 2.4 GHz clients are unaffected. The office uses a Cisco 9800 WLC with APs that support 802.11ac Wave 2. The administrator checks the WLC's RF profile and notices a high number of channel utilization reports on channel 36. What is the most likely cause of the problem?

A.Enable DFS channels to avoid radar interference.
B.Change some APs to use channels 40, 44, or 48 to reduce co-channel interference.
C.Increase the channel width to 160 MHz to improve throughput.
D.Disable the 2.4 GHz radios to force all clients to 5 GHz.
AnswerB

Co-channel interference (CCI) occurs when multiple APs with overlapping coverage use the same 5 GHz channel, causing them to contend for the same half-duplex medium. By changing some APs to channels 40, 44, or 48, you spread the cells across the four non-overlapping UNII-1/UNII-3 channels, reducing contention and enabling more efficient airtime use. This directly mitigates the excessive retries and throughput degradation shown in the exhibit.

Why this answer

Channel 36 is a 20 MHz channel in the 5 GHz band. When many APs use the same channel (channel 36), they share the same medium, leading to co-channel interference (CCI). This causes intermittent disconnections and slow performance for 5 GHz clients because they must contend for airtime.

Spreading APs across non-overlapping channels like 40, 44, or 48 reduces CCI and improves performance.

Exam trap

Cisco often tests the misconception that DFS channels are the solution for any 5 GHz interference issue, but the trap here is that high channel utilization on a non-DFS channel (36) indicates co-channel interference, not radar avoidance.

Why the other options are wrong

A

DFS channels are used to avoid radar interference, but the problem described is co-channel interference on channel 36, not radar events. The exhibit shows no radar events, so enabling DFS channels would not address the high channel utilization.

C

Increasing channel width to 160 MHz would actually increase the likelihood of co-channel interference because fewer non-overlapping channels are available, and it would not solve the existing high utilization on channel 36.

D

Disabling 2.4 GHz radios would force all clients to 5 GHz, potentially worsening the co-channel interference on channel 36 by adding more clients to an already congested channel. The 2.4 GHz band is not the source of the problem.

Why candidates pick the wrong answer

A

Students may confuse DFS with dynamic channel assignment or think that DFS helps with interference in general, but DFS specifically handles radar detection and avoidance, not co-channel interference.

C

Students might think wider channels always improve throughput, but in dense environments, wider channels exacerbate interference and are not recommended without proper planning.

D

Some might think that moving all clients to 5 GHz would improve performance, but without addressing the channel reuse issue, it would only increase congestion on the 5 GHz band.

37
Multi-Selectmedium

Which two statements accurately describe JSON in network automation contexts?

Select 2 answers
A.It is a structured data format that software can parse reliably.
B.It is commonly used in API payloads exchanged by automation tools and controllers.
C.It is the encryption protocol that protects the API session.
D.It replaces the need for authentication.
E.It is the same thing as a southbound API.
AnswersA, B

This is correct because structured machine readability is one of JSON's main strengths.

Why this answer

JSON is widely used in network automation because it provides structured, machine-readable data. In practical terms, software can reliably identify keys, values, objects, and arrays without having to guess meaning from free-form text. That makes it a common format in modern APIs.

The important point is that JSON is a data format. It is not the API itself and it is not the secure transport that carries the data.

Exam trap

A frequent exam trap is mistaking JSON for a security or API protocol. Some candidates incorrectly believe JSON encrypts API sessions or replaces authentication, which is false. JSON is purely a data format used to structure information exchanged between automation tools and devices.

Confusing JSON with encryption protocols like TLS or authentication mechanisms can lead to selecting incorrect answers. Another trap is equating JSON with the API itself or the concept of a southbound API, which refers to the direction of communication, not the data format. Understanding JSON’s role as a structured data format prevents these mistakes.

Why the other options are wrong

C

Option C is incorrect because JSON is not an encryption protocol; it does not provide any security or protection for API sessions, which are handled by other protocols like TLS.

D

Option D is incorrect because JSON does not replace authentication; authentication is a separate process that controls access to APIs and network devices.

E

Option E is incorrect because JSON is a data format, not an API or directional interface like a southbound API, which refers to communication from controllers to devices.

When would these options actually be correct?

C

In a question asking about the security mechanisms used in API communications, if it specifically inquired about the role of encryption protocols, then stating that JSON is an encryption protocol would be correct in a context where the question mistakenly conflates data formats with security protocols.

D

In a question focused on the role of data formats in network security, if it asked whether JSON can eliminate the need for authentication when used in a specific context, such as a trusted internal network, this option could be considered correct.

E

If the exam question asked about the characteristics and roles of different types of APIs in network automation, and specifically stated that JSON is a format used for data exchange in southbound APIs, then option E would be correct in that context.

Why candidates pick the wrong answer

C

Students may confuse JSON with security mechanisms because JSON is often used in secure API communications. However, the security comes from the underlying transport protocol (e.g., HTTPS), not from JSON itself.

D

A student might think that because JSON is used in API requests that include authentication tokens, it somehow replaces authentication. However, JSON is merely the container; the authentication process is separate and must be implemented correctly.

E

Students may associate JSON with modern APIs and mistakenly think it is a type of API. In network automation, JSON is commonly used in both northbound and southbound APIs, but it is just the representation format, not the API direction.

38
MCQmedium

A network engineer sends an HTTP GET request to a controller API and receives status code 401. What does that response indicate?

A.The API endpoint does not exist
B.The request was successful but returned an empty body
C.Authentication is required or the token is invalid
D.The server is overloaded and cannot process the request
AnswerC

This is exactly the meaning of HTTP 401 Unauthorized. When the API controller requires authentication and the request lacks valid credentials or a valid token, it returns 401 with a WWW-Authenticate header prompting the client to provide credentials. The engineer's request failed because the client did not prove identity.

Why this answer

HTTP 401 means the request is not authorized because valid authentication credentials were not supplied or were rejected. In practice, this usually means the token is missing, expired, malformed, or otherwise invalid.

Exam trap

Be careful not to confuse HTTP 401 with other common status codes like 200, 404, or 500. Each code has a specific meaning and context.

Why the other options are wrong

A

A 401 status code specifically indicates authentication failure, not a missing endpoint. A non-existent endpoint would return a 404 Not Found status code, which is a different HTTP error.

B

A successful request with an empty body would return a 204 No Content status code, not 401. The 401 code explicitly means the request was not processed due to missing or invalid authentication.

D

A server overload is indicated by a 503 Service Unavailable status code, not 401. The 401 code is solely related to authentication issues, not server capacity.

When would these options actually be correct?

A

If the exam question stated that a network engineer received a 404 status code when sending a request to a non-existent API endpoint, then option A would be correct. This would clearly indicate that the requested resource could not be found.

B

If the question stated that an API endpoint successfully processed a request but returned no data, a status code of 204 No Content would be appropriate. In that context, option B would correctly describe the situation.

D

If the question asked about a scenario where a server is unable to handle incoming requests due to high traffic, and the response was a 503 status code, then option D would be correct as it directly relates to server capacity issues.

Why candidates pick the wrong answer

A

Students may confuse 401 (Unauthorized) with 404 (Not Found) because both are client error codes, and they might think an invalid endpoint could trigger an authentication error.

B

Students might think that an empty response could be due to authentication failure, but HTTP status codes clearly differentiate between success (2xx) and client errors (4xx).

D

Test-takers might associate any server-side error with overload, especially if they have seen 500-series codes, but 401 is a client-side authentication error.

39
Drag & Dropmedium

Drag and drop the following steps into the correct order to implement DHCP services for clients in VLAN 10 using a centralized DHCP server in VLAN 20 and to protect the network with DHCP snooping.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5
6Step 6

Why this order

The correct order requires the DHCP server to be configured first so it can respond to requests. Then the IP helper-address is configured on the default gateway interface for VLAN 10 to forward client broadcasts to the server. Next, DHCP snooping is enabled globally, followed by identifying the trusted port to the server (to allow DHCP replies), and then snooping is enabled on the client VLAN.

Finally, a client connection triggers a DHCP transaction that you can verify with the snooping binding table.

40
Multi-Selectmedium

Which two statements accurately compare TCP and UDP? (Choose two.)

Select 2 answers
A.TCP provides connection-oriented transport
B.UDP guarantees delivery through acknowledgments
C.UDP has lower overhead than TCP
D.TCP does not use port numbers
E.UDP is always faster because it avoids congestion
AnswersA, C

TCP establishes a reliable, connection-oriented session by utilising a three-way handshake before any data transmission commences. This fundamental mechanism ensures a logical connection is set up and maintained between the communicating hosts, providing statefulness and ordered delivery. This precise characteristic directly contrasts with UDP's connectionless nature, making it an accurate comparison between the two protocols and satisfying the question's requirement for a distinguishing statement.

Why this answer

TCP is connection-oriented and uses sequencing, acknowledgments, and related controls. UDP is simpler and has lower overhead, but it does not guarantee delivery.

Exam trap

Be careful not to confuse the connection-oriented nature of TCP with UDP's connectionless design. Remember that TCP is about reliability, while UDP focuses on speed and simplicity.

Why the other options are wrong

B

UDP is a connectionless protocol that does not use acknowledgments, sequence numbers, or retransmissions; it simply sends datagrams without any guarantee of delivery. Reliable delivery mechanisms like acknowledgments are a feature of TCP, not UDP.

D

TCP uses port numbers extensively to identify source and destination applications, just like UDP. Port numbers are a fundamental part of both TCP and UDP headers, enabling multiplexing of multiple services on a single host.

E

While UDP has lower overhead and can be faster in some scenarios, it is not 'always faster' because network congestion, packet loss, and application behavior can affect performance. Additionally, UDP does not inherently avoid congestion; it simply does not implement congestion control, which can lead to network congestion if used aggressively.

When would these options actually be correct?

B

In a hypothetical question asking about a protocol that ensures reliable delivery through acknowledgments, such as TCP, option B would be correct. For example, a question might ask which protocol guarantees message delivery in a streaming application.

D

In a different exam question that specifically asks about a transport protocol that does not use port numbers, such as a hypothetical protocol designed for a specific application without the need for multiplexing, option D would be correct.

E

In a different exam scenario where the question asks about the performance characteristics of various transport protocols under specific conditions, such as low-latency networks or real-time applications, this option could be correct if it emphasizes that UDP's design allows for faster data transmission in those contexts.

Why candidates pick the wrong answer

B

Students may confuse UDP's lack of reliability with the idea that it still provides some form of delivery confirmation, or they might think that all transport protocols use acknowledgments because TCP does.

D

A student might incorrectly associate port numbers only with UDP because of the phrase 'UDP port numbers' commonly used, or they might think TCP's connection-oriented nature somehow replaces the need for port numbers.

E

The statement 'UDP is faster' is a common oversimplification. Students may assume that because UDP has less overhead, it is always faster, ignoring factors like retransmissions in TCP that can actually improve throughput in lossy networks.

41
MCQhard

Exhibit: After a new switch was connected, the access-layer port went into err-disabled state immediately. Which feature most likely caused this?

A.Root Guard
B.UDLD aggressive
C.BPDU Guard
D.Storm control
AnswerC

BPDU Guard is the correct choice because it protects access ports from unauthorized switches by immediately placing the port in an err-disabled state when any BPDU is received. This stops the newly connected switch from participating in Spanning Tree Protocol, preventing potential loops or root bridge manipulation. It is specifically designed for access-layer ports where no BPDUs should ever legitimately appear, making it the right defense for this scenario.

Why this answer

BPDU Guard is the most likely cause because it immediately places a PortFast-enabled port into the err-disabled state upon receiving any BPDU, which is exactly what happens when a new switch is connected to an access port meant for end devices. Root Guard does not err-disable a port; instead, it puts the port into a root-inconsistent state when a superior BPDU is received, preventing the port from becoming a root port but still allowing traffic. UDLD aggressive can cause err-disabled states, but it is specifically designed to detect unidirectional links on fiber connections and requires a delay or misconfiguration, making it less immediate than BPDU Guard in this scenario.

Storm control can err-disable a port if traffic exceeds thresholds, but this is not immediate upon connection unless a broadcast storm is already occurring, which is not indicated in the scenario.

Exam trap

Be cautious not to confuse BPDU Guard with other features that cause err-disabled states, like Port Security or UDLD, which are unrelated to BPDU receipt.

Why the other options are wrong

A

Root Guard does not cause a port to go into err-disabled state; instead, it places the port into a root-inconsistent state if a superior BPDU is received, blocking traffic but not disabling the port. The question describes an immediate err-disabled state, which is characteristic of BPDU Guard, not Root Guard.

B

UDLD aggressive mode does not immediately cause an err-disabled state upon connecting a new switch; it detects unidirectional links by sending probes and can put the port into err-disabled state only after a failure is detected, which takes time. The immediate err-disabled state suggests a feature that reacts instantly to BPDUs.

D

Storm control does not cause a port to go into err-disabled state by default; it typically drops traffic exceeding a threshold or can be configured to shut down the port, but the immediate err-disabled state upon connecting a new switch is not typical for storm control. The scenario points to a feature that reacts to BPDUs, not broadcast storms.

When would these options actually be correct?

A

In a scenario where a switch port is configured with Root Guard and a rogue switch attempts to become the root bridge by sending BPDUs, the port would go into a blocking state to protect the network. A question could ask about the impact of Root Guard on a port when a new switch sends BPDUs.

B

If the exam question asked about a scenario where a switch port was connected to a device that was misconfigured, causing a unidirectional link, then UDLD aggressive could be the correct answer as it would disable the port to prevent network issues.

D

If the question were about a switch port that was experiencing excessive broadcast traffic due to a misconfigured device, leading to the port being disabled by storm control, then this option would be correct. It would involve a scenario where traffic thresholds were exceeded, triggering storm control mechanisms.

Why candidates pick the wrong answer

A

Students may confuse Root Guard with BPDU Guard because both are STP security features that react to BPDUs. However, Root Guard only prevents a port from becoming a root port, while BPDU Guard disables the port upon BPDU reception.

B

Students may associate UDLD with err-disabled state because it can disable ports, but UDLD is for detecting unidirectional links, not for preventing unauthorized switches. The immediate reaction to a new switch connection is more indicative of BPDU Guard.

D

Students might think that a new switch could cause a broadcast storm, leading to storm control triggering. However, storm control is designed to handle excessive broadcast, multicast, or unicast traffic, not the initial connection of a switch.

42
Multi-Selectmedium

Which two statements accurately describe Syslog in a Cisco network environment?

Select 2 answers
A.Syslog can send device event messages to a centralized logging server.
B.Syslog is primarily used to assign IP addresses to hosts.
C.Syslog messages become easier to correlate when device clocks are synchronized.
D.Syslog automatically prevents switching loops.
E.Syslog replaces the need for any monitoring system.
AnswersA, C

Syslog defines a standard logging protocol that allows network devices such as routers, switches, and firewalls to send timestamped event messages—like interface state changes, security alerts, and configuration updates—to a centralized syslog server. Centralized logging aggregates data from multiple devices into one repository, greatly simplifying troubleshooting, auditing, and real-time monitoring. This collection and forwarding capability is a primary purpose of Syslog.

Why this answer

Syslog is used to centralize device event messages such as warnings, errors, and informational entries. In plain language, it gives administrators one place to review what devices are reporting rather than checking each device individually. This makes troubleshooting and incident review easier, especially in larger environments. Syslog does not replace time synchronization, but it becomes much more useful when paired with NTP so timestamps are consistent.

A common trap is to assume Syslog is a routing protocol or a DHCP-like service. It is neither. It is about event reporting and centralized logging.

Exam trap

A common exam trap is confusing Syslog with DHCP or STP functions. Some candidates mistakenly believe Syslog assigns IP addresses or prevents switching loops because these are common network management tasks. However, Syslog’s sole purpose is to report and log device events.

Misunderstanding this can lead to selecting incorrect answers that describe DHCP’s or STP’s roles. Another trap is overlooking the importance of synchronized clocks for meaningful log correlation, which can cause candidates to underestimate why consistent timestamps matter in Syslog environments.

Why the other options are wrong

B

This option is incorrect because Syslog does not assign IP addresses; DHCP is the protocol responsible for IP address allocation in Cisco networks.

D

This option is incorrect because Syslog does not prevent switching loops; this function is handled by Spanning Tree Protocol (STP).

E

This option is incorrect because Syslog complements but does not replace broader network monitoring systems that provide additional analysis and alerting capabilities.

When would these options actually be correct?

B

If the exam question asked about network protocols that handle IP address assignment, such as 'Which protocol is responsible for dynamically assigning IP addresses to hosts in a network?', then this option would be correct.

D

In a different question asking about network protocols that manage data traffic and prevent issues like loops in a switched network, an option stating that Syslog prevents switching loops could be correct if it were framed as a comparison with other protocols that do manage loops.

E

If the exam question were to ask whether Syslog eliminates the need for monitoring systems in a specific context where logging is the sole focus of network management, then option E could be correct. For instance, a question could state that in a minimalistic network setup, Syslog is the only tool used for network oversight.

Why candidates pick the wrong answer

B

Students may confuse Syslog with DHCP because both involve network communication and are often mentioned in network management contexts. The word 'log' might be misassociated with 'assign' due to similar-sounding terms.

D

Students might think Syslog can help detect loops by logging events, but detection is not prevention. The word 'prevent' might be loosely interpreted as 'help identify,' leading to confusion with STP's role.

E

Because Syslog can aggregate logs and generate alerts, students may overestimate its capabilities and assume it can replace full monitoring solutions. The phrase 'replaces the need' is an absolute that is rarely true in networking.

43
MCQhard

A network administrator notices that a switchport in access mode with PortFast enabled has transitioned to an err-disabled state. What is the most likely cause?

A.BPDU Guard disabled the PortFast-enabled access port after it received a BPDU.
B.Port security shut down the port because the VLAN was wrong.
C.DHCP snooping disabled the interface because a host requested an address.
D.EtherChannel suspended the interface because the bundle was incomplete.
AnswerA

BPDU Guard is a spanning-tree feature designed to protect PortFast-enabled access ports: when an unauthorized device sends a BPDU, the switch immediately errdisables the port to prevent a potential Layer 2 loop. The message 'psecure-violation' in the exhibit would actually correspond to port security, but the explicit reference to 'BPDU Guard' plus 'PortFast' confirms this exact behavior.

Why this answer

The strongest reason is a BPDU Guard violation on a PortFast-enabled access port. In practical terms, the port was expected to face an end host, not a switching device that emits BPDUs. When BPDUs appeared, the switch treated that as a topology-policy violation and error-disabled the interface to protect the network.

This is one of the most classic access-layer protection patterns on the CCNA exam.

Exam trap

Be careful not to confuse BPDU Guard with other port security features or network issues like duplex mismatches.

Why the other options are wrong

B

Port security restricts access based on MAC addresses, not VLANs, and the event message explicitly mentions BPDU Guard, not port security. The exhibit shows a spanning-tree BPDU Guard error, not a port security violation.

C

DHCP snooping does not cause err-disabled state due to BPDU reception; it filters DHCP messages and can disable ports for DHCP attacks, but the exhibit clearly shows a spanning-tree BPDU Guard event.

D

EtherChannel suspension occurs due to configuration mismatches or link failures, not BPDU reception. The exhibit's syslog message explicitly identifies BPDU Guard, not EtherChannel issues.

When would these options actually be correct?

B

In a different question setup, if the scenario described a switchport configured with port security that was set to restrict access to a specific VLAN, and a device attempted to connect using an incorrect VLAN, then this option would be correct as it would lead to the port being shut down due to a security violation.

C

In a different question setup, if the scenario described a switchport that was configured with DHCP snooping and a rogue DHCP server was detected, causing the switch to disable the interface, then this option would be correct.

D

If the question asked about a situation where an EtherChannel was configured but one of the member links was down or misconfigured, leading to an incomplete bundle, then this option would be correct. In that case, the interface would go into a suspended state due to the EtherChannel configuration issue.

Why candidates pick the wrong answer

B

Students may confuse port security with BPDU Guard because both can place a port in err-disabled state, but they serve different purposes: port security controls MAC addresses, while BPDU Guard prevents rogue switch connections.

C

DHCP snooping is another security feature that can err-disable ports, leading students to mistakenly attribute the BPDU Guard error to DHCP snooping if they overlook the specific syslog message.

D

EtherChannel can also cause err-disabled state, but the error message in the exhibit is clearly about spanning-tree BPDU Guard, not EtherChannel protocol mismatches.

44
Multi-Selectmedium

Which two statements accurately describe API authentication tokens? (Choose two.)

Select 2 answers
A.Tokens are often sent in an HTTP header such as Authorization
B.Tokens are always permanent and never expire
C.Tokens can be used instead of resending credentials on every request
D.Tokens require Telnet to be enabled on the device
E.A token changes JSON into XML automatically
AnswersA, C

REST APIs commonly transmit tokens in an Authorization header following the Bearer scheme, such as Authorization: Bearer <token>. This keeps the credential out of the URL, query string, and request body, where it might be logged by proxies or web servers, and aligns with HTTP's standard challenge-response authentication framework.

Why this answer

APIs often use tokens so clients can authenticate without sending usernames and passwords in every call. Tokens are commonly time-limited and are usually placed where the API expects them, such as an HTTP header.

Exam trap

A frequent exam trap is selecting that tokens are permanent or require Telnet to function. Many candidates mistakenly believe tokens never expire, but in reality, tokens are often time-limited to improve security. Another trap is associating tokens with Telnet, which is unrelated to API authentication.

Additionally, some may incorrectly think tokens convert data formats like JSON to XML, which is false since tokens only handle authentication. Misunderstanding these points can lead to choosing incorrect options that seem plausible but do not align with Cisco’s API security practices.

Why the other options are wrong

B

Incorrect because tokens are usually time-limited and expire after a set period to enhance security, so they are not permanent credentials.

D

Incorrect because Telnet is unrelated to API token authentication; tokens do not depend on Telnet or any specific legacy protocol.

E

Incorrect because authentication tokens do not convert data formats; their sole purpose is to authenticate clients, not to transform JSON into XML or any other format.

When would these options actually be correct?

B

In a scenario where the exam question specifically states that the API being discussed uses permanent tokens for authentication, such as in a legacy system or a specific implementation that does not require expiration for security, this option would be correct.

D

If the exam question specified a scenario involving legacy systems where Telnet is used for device management, and the context required enabling Telnet for token authentication, then this option could be correct.

E

If the exam question asked about a system that automatically converts data formats upon receiving an API token, or if it specified a feature of a specific API that performs such conversions, then this option could be correct.

Why candidates pick the wrong answer

B

Students might think tokens are like static passwords that never change, confusing them with long-lived API keys or legacy authentication methods.

D

A student might associate 'token' with older network protocols like TACACS+ or RADIUS that sometimes use Telnet for device access, but API tokens are a different concept.

E

The word 'token' might be confused with 'translation' or 'transformation' in the context of data formats, leading to the incorrect assumption that tokens perform format conversion.

45
MCQeasy

Which OSPF neighbor state indicates that the routers have already exchanged full link-state databases?

A.2-WAY
B.EXSTART
C.FULL
D.INIT
AnswerC

The FULL state is reached after the database description, LSR, LSU, and LSAck packets have completed a full exchange of link-state databases. In FULL, the neighbors have identical link-state information and are considered fully adjacent, enabling them to compute accurate SPF routes and participate in routing updates. Only FULL neighbors exchange routing information.

Why this answer

FULL means the adjacency is complete and database synchronization has finished. States such as INIT, 2-WAY, EXSTART, and EXCHANGE all occur earlier in the process.

Exam trap

A frequent exam trap is selecting the 2-WAY or EXSTART states as the answer because they represent important steps in OSPF neighbor formation. However, 2-WAY only confirms bidirectional hello packets without database exchange, and EXSTART is merely the negotiation phase for database synchronization. Choosing these states overlooks the fact that full link-state database exchange and adjacency completion only occur at the FULL state.

Misunderstanding this can lead to incorrect assumptions about OSPF neighbor readiness and routing stability.

Why the other options are wrong

A

The 2-WAY state confirms bidirectional communication between OSPF neighbors but does not indicate that the full link-state database has been exchanged. It is an intermediate step before full adjacency.

B

EXSTART is the initial phase of database exchange where routers negotiate master-slave roles and sequence numbers. It does not mean the databases are fully synchronized yet.

D

INIT state means a router has received a hello packet from a neighbor but has not confirmed bidirectional communication, so full database exchange has not started.

When would these options actually be correct?

A

In a different question asking about the state where routers have acknowledged each other as neighbors but have not yet completed the database exchange, the 2-WAY state would be the correct answer. For example, a question could ask which state indicates that routers are ready to proceed with database synchronization.

B

In a question asking about the OSPF state during the database exchange process, specifically regarding the negotiation phase between routers, EXSTART would be the correct answer when identifying the state before the actual database synchronization occurs.

D

In a question asking about the initial state of OSPF neighbor relationships or the process of establishing OSPF adjacencies, INIT could be the correct answer when referring to the very first step of neighbor discovery.

Why candidates pick the wrong answer

A

Students might confuse 2-WAY with FULL because both indicate a form of adjacency, but 2-WAY is only a preliminary state before database exchange begins.

B

The name 'EXSTART' might be misinterpreted as 'exchange start' implying full exchange, but it is only the beginning of the exchange process.

D

INIT might be mistaken for the initial stage of database exchange, but it is actually the very first step in neighbor discovery, far before any database synchronization.

46
MCQeasy

Which data format uses key-value pairs and is commonly returned by REST APIs?

A.YANG
B.JSON
C.Syslog
D.CDP
AnswerB

JSON commonly represents API payloads.

Why this answer

JSON is a lightweight, human-readable data format that uses key-value pairs and is the most common format returned by REST APIs. YANG is a data modeling language used for configuration and state data, not a data format. Syslog is a logging protocol used for system messages.

CDP (Cisco Discovery Protocol) is a Layer 2 discovery protocol for Cisco devices. None of these are key-value pair data formats typically returned by REST APIs.

Exam trap

Be careful not to confuse JSON with XML or YAML, which have different structures and use cases.

Why the other options are wrong

A

YANG is a data modeling language, not a data format; it describes the structure of data but does not use key-value pairs for API responses.

C

Syslog is a protocol for logging system events, not a data format for REST API responses.

D

CDP is a Cisco proprietary discovery protocol for neighbor devices, irrelevant to data formats in REST APIs.

When would these options actually be correct?

A

If the question asked which data modeling language is used for network device configuration and management, YANG would be the correct answer. This scenario would focus on network protocols and data structure definitions rather than API responses.

C

If the question were to ask about a logging format used for network devices that can include key-value pairs in its extended format, Syslog could be the correct answer. For example, a question about logging protocols that support structured data might fit this scenario.

D

If the exam question asked about protocols used for device discovery in a Cisco network environment, CDP would be the correct answer, as it is specifically designed for that purpose.

Why candidates pick the wrong answer

A

Students may confuse YANG with JSON because both are used in network automation and RESTCONF/NETCONF APIs, but YANG defines the schema while JSON is the actual wire format.

C

Students might think syslog uses key-value pairs because some syslog messages include structured data, but the standard syslog format is not key-value based and is not used for REST API responses.

D

The acronym CDP might be confused with JSON because both are related to network data, but CDP is a discovery protocol, not a data format. Students may also confuse it with other protocols like LLDP.

47
MCQhard

A router interface applies this ACL inbound: 10 deny tcp any any eq 80 20 permit ip any any A user reports that web browsing to a server by IP address fails, but ping works. Which statement best explains the behavior?

A.The ACL blocks all traffic because the first entry is a deny
B.The ACL blocks HTTP but allows ICMP
C.The ACL permits HTTP because line 20 overrides line 10
D.The ACL blocks ping because ICMP is not explicitly permitted
AnswerB

HTTP traffic is encapsulated in TCP, so it matches the first ACE, deny tcp any any, and is immediately discarded because ACLs stop at the first match. ICMP, however, is not TCP; it is a separate Layer 3 protocol, and therefore bypasses line 10. It then matches the permit ip any any on line 20, allowing ping to succeed.

Why this answer

ACLs are processed top down. Line 10 denies TCP destination port 80, which blocks HTTP. Line 20 then permits all remaining IP traffic, including ICMP echo packets used by ping.

Exam trap

Remember that ACLs are processed sequentially; the first match dictates the action, not subsequent lines.

Why the other options are wrong

A

The ACL does not block all traffic; it only denies TCP traffic destined for port 80 (HTTP). Other traffic, including ICMP, is permitted by the subsequent 'permit ip any any' statement.

C

Line 20 does not override line 10 because ACLs use first-match logic. Once a packet matches line 10 (TCP port 80), it is denied and no further processing occurs. Line 20 only applies to packets that do not match earlier entries.

D

ICMP is not explicitly blocked; it is permitted by the 'permit ip any any' statement on line 20, which covers all IP protocols including ICMP. The user's ping works, confirming this.

When would these options actually be correct?

A

In a different scenario where an ACL has a single entry that denies all traffic, followed by a permit statement for a specific protocol, the first deny would indeed block all traffic, making this option correct. For example, if the ACL were structured as '10 deny ip any any' followed by '20 permit tcp any any', then the first entry would block all traffic.

C

In a different scenario where the ACL had the entries reversed (20 permit ip any any followed by 10 deny tcp any any eq 80), option C would be correct, as the permit rule would allow HTTP traffic before the deny rule is evaluated.

D

In a different scenario where an ACL explicitly denies all ICMP traffic, such as '10 deny icmp any any', the statement would be correct if the question asked why ping fails while other traffic is allowed. Here, the ACL would block ping requests while allowing other protocols.

Why candidates pick the wrong answer

A

Students might think that the first deny entry blocks all traffic because they overlook the permit entry that follows, or they may misunderstand that ACLs process entries sequentially and stop at the first match.

C

Students may confuse ACL processing with other rules where later entries override earlier ones, or they may think that a permit statement always overrides a deny statement.

D

Students might think that only explicitly permitted protocols are allowed, forgetting that 'permit ip any any' permits all IP traffic, including ICMP.

48
PBQhard

You are connected to R1, a branch router that must synchronize time with the NTP server at 198.51.100.1 (reachable via G0/0) and send critical syslog messages (severity 0-4) to the logging server at 203.0.113.10. The current configuration has NTP pointing to a wrong server and syslog set to debug level, flooding the server. Correct the NTP server, set the NTP source interface to Loopback0 (10.10.10.1/32), and adjust the syslog trap level so that only emergencies through warnings are logged.

Hints

  • Remove the incorrect NTP server before adding the correct one.
  • Use the 'ntp source' command to specify the Loopback interface.
  • The logging trap level 'warnings' corresponds to severity 4.
A.ntp server 198.51.100.1 source Loopback0; logging trap warnings
B.ntp server 198.51.100.1 source G0/0; logging trap errors
C.ntp server 192.0.2.1 source Loopback0; logging trap warnings
D.ntp server 198.51.100.1 source Loopback0; logging trap debugging
AnswerA
solution
! R1
no ntp server 192.0.2.1
ntp server 198.51.100.1
ntp source Loopback0
no logging trap debugging
logging trap warnings

Why this answer

The NTP server was misconfigured to 192.0.2.1, which is unreachable, leaving the router at stratum 16. The correct NTP server is 198.51.100.1, so the ntp server command must be updated. The source interface should be Loopback0 for reachability consistency.

The syslog trap level was set to debugging (level 7), which sends all messages; it should be changed to warnings (level 4) to filter only severity 0-4. Verification includes checking NTP synchronization and syslog configuration.

Exam trap

Watch out for two separate configuration items: NTP and syslog. Ensure you update both the NTP server IP and source interface, and set the correct syslog trap level. Common traps include forgetting to change the NTP server IP, using the wrong source interface, or setting the wrong syslog severity level.

Why the other options are wrong

B

The source interface must be Loopback0 for consistency, and the trap level should be warnings (4) to include warnings.

C

The NTP server address must be updated to 198.51.100.1; 192.0.2.1 is the misconfigured server.

D

The trap level should be warnings (4), not debugging (7). Debugging sends all messages, flooding the server.

Why candidates pick the wrong answer

B

Candidates might think G0/0 is the correct source since it's the interface that reaches the NTP server, but using a loopback ensures reachability even if G0/0 goes down.

C

Candidates might forget to change the NTP server IP and only adjust the source interface and syslog level.

D

Candidates might confuse the logging levels or think debugging is needed for troubleshooting, but the question explicitly requires only severities 0-4.

49
MCQmedium

Two switches are connected by an 802.1Q trunk. CDP reports a native VLAN mismatch. Which issue is most likely to appear because of this?

A.Untagged traffic may be placed into different VLANs on each switch.
B.All tagged traffic on the trunk is dropped immediately.
C.STP is disabled on the trunk link.
D.The trunk automatically converts to an access port.
AnswerA

When two switches have different native VLANs configured on the same 802.1Q trunk, each switch treats untagged frames as belonging to its own locally configured native VLAN. The sending switch places untagged frames into its native VLAN, while the receiving switch places them into its own native VLAN, which may be a different VLAN number. This mismatch causes untagged broadcast, multicast, and unknown unicast traffic to be placed into different VLAN domains on each switch, creating a classic native VLAN mismatch symptom.

Why this answer

A native VLAN mismatch can cause untagged traffic sent on one side to be placed into a different VLAN on the other side. That leads to confusing connectivity issues and can also create security concerns. It does not automatically disable the trunk.

Exam trap

A common exam trap is to believe that a native VLAN mismatch causes the trunk link to shut down or block all traffic. In reality, only untagged traffic is affected, and tagged VLAN traffic continues to pass normally if allowed VLANs match. Another mistake is thinking the trunk automatically converts to an access port, which Cisco switches do not do.

Candidates may also overlook that STP remains enabled and functional despite the mismatch. Focusing only on trunk status without considering untagged traffic behavior leads to incorrect answers.

Why the other options are wrong

B

This is incorrect because tagged traffic on the trunk is not dropped due to a native VLAN mismatch; tagged frames continue to be forwarded normally if VLANs are allowed on both sides.

C

This option is wrong since a native VLAN mismatch does not disable Spanning Tree Protocol; STP continues to operate normally on the trunk link.

D

This is incorrect because Cisco switches do not automatically convert a trunk port to an access port due to a native VLAN mismatch; the trunk remains active.

When would these options actually be correct?

B

In a different question setup where the context is about a misconfigured trunk link that explicitly states all tagged traffic is incorrectly configured to be dropped due to a specific policy or ACL, this option could be correct. For example, if the question described a scenario where a switch is configured to drop all tagged frames due to security policies, then this option would apply.

C

In a different scenario where a question asks about the effects of misconfiguring STP on a trunk link, an option stating that STP is disabled would be correct if the configuration explicitly disables STP for that interface, leading to potential network loops.

D

In a different scenario, if a question specifies that a trunk link is configured incorrectly and explicitly states that the switch is unable to maintain trunking due to configuration errors, then this option could be correct, indicating that the trunk has reverted to access port behavior.

Why candidates pick the wrong answer

B

Students might think that any mismatch on a trunk causes all traffic to fail, but the native VLAN mismatch specifically impacts only untagged frames, not tagged ones.

C

Because native VLAN mismatches can cause STP issues (e.g., BPDU misplacement), some might incorrectly assume STP is disabled entirely.

D

Students may confuse the symptom of untagged traffic being mishandled with a complete port mode change, but the trunk stays in trunk mode.

50
Matchingmedium

Drag and drop the protocol/model on the left to the correct description on the right.

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

Concepts
Matches

Data modeling language used to define configuration and state data structures

Protocol using XML over SSH for configuration management and transactional operations

RESTful API using HTTP methods (GET, PUT, POST, DELETE) over HTTPS

Operation to modify configuration with options like merge, replace, create, delete

HTTP method used for partial updates to a resource

Why these pairings

YANG is a data modeling language used to define configuration and state data. NETCONF is an XML-based protocol over SSH that supports transactional configuration management. RESTCONF is a RESTful API over HTTPS that uses standard HTTP methods like GET, PUT, POST, DELETE.

NETCONF <edit-config> is an operation that modifies configuration with options like merge, replace, create, delete. RESTCONF PATCH is an HTTP method used for partial updates to a resource.

Exam trap

Do not confuse NETCONF and RESTCONF: NETCONF uses XML over SSH with a locked configuration datastore and replace operations, while RESTCONF uses HTTPS and standard HTTP methods, often with JSON encoding. Also remember that YANG is a modeling language, not a protocol.

51
PBQhard

You are connected to the console of a Catalyst 2960+ switch named SW2. Configure the switch so that the IP phone connected to interface FastEthernet0/5 receives power via PoE and uses VLAN 150 for voice traffic, while the PC connected through the phone uses VLAN 50 for data. Additionally, the access point connected to interface FastEthernet0/10 must receive PoE and be placed in VLAN 100. Assume the interfaces are already correctly configured as access ports in VLAN 50 and VLAN 100, respectively. Verify your configuration using the appropriate show commands.

Network Topology
Fa0/5Fa0/10SW2IP PhoneAccess Point

Hints

  • Use 'switchport voice vlan' to define the voice VLAN on an access port.
  • Enable PoE on a port with 'power inline auto'.
  • Verify voice VLAN with 'show interfaces switchport' and PoE with 'show power inline'.
A.On interface FastEthernet0/5: switchport voice vlan 150, power inline auto. On interface FastEthernet0/10: power inline auto. Verify with show interfaces switchport and show power inline.
B.On interface FastEthernet0/5: switchport voice vlan 150, power inline auto. On interface FastEthernet0/10: switchport access vlan 100, power inline auto. Verify with show interfaces switchport and show power inline.
C.On interface FastEthernet0/5: switchport voice vlan 150, power inline auto. On interface FastEthernet0/10: power inline auto. Verify with show vlan and show power inline.
D.On interface FastEthernet0/5: switchport voice vlan 150, power inline auto. On interface FastEthernet0/10: power inline auto. Verify with show interfaces trunk and show power inline.
AnswerA
solution
! SW2
configure terminal
interface FastEthernet0/5
switchport voice vlan 150
power inline auto
interface FastEthernet0/10
power inline auto
end

Why this answer

The switch had no voice VLAN or PoE configured on the ports. On FastEthernet0/5, you need to add 'switchport voice vlan 150' to separate voice traffic from data, and 'power inline auto' to enable PoE for the IP phone. On FastEthernet0/10, you only need to enable PoE with 'power inline auto' because the AP already has its access VLAN set.

After configuration, 'show interfaces switchport' will confirm the voice VLAN, and 'show power inline' will verify PoE status.

Exam trap

Avoid adding unnecessary commands like setting the access VLAN on a port that already has it configured. Also, use the correct show command: show interfaces switchport for voice VLAN, not show vlan or show interfaces trunk.

Why the other options are wrong

B

The error is adding an unnecessary access VLAN command for the AP port, which is not required and could conflict with existing configuration.

C

The error is using show vlan instead of show interfaces switchport to verify voice VLAN on a port.

D

The error is using show interfaces trunk, which is for trunk ports, not for verifying voice VLAN on an access port.

Why candidates pick the wrong answer

B

Candidates might think they need to explicitly set the access VLAN for the AP, but the question only asks to place it in VLAN 100, which is already the default or preconfigured VLAN.

C

Candidates may confuse show vlan with show interfaces switchport, thinking show vlan provides per-interface voice VLAN details.

D

Candidates might think show interfaces trunk shows all VLAN information, but it only shows allowed VLANs on trunk links, not voice VLAN on access ports.

52
MCQmedium

Why is version control useful for network automation scripts?

A.It automatically fixes coding mistakes
B.It tracks changes and supports rollback and review
C.It removes the need for API authentication
D.It replaces the device operating system
AnswerB

Version control records every commit as a snapshot, enabling network engineers to compare revisions, identify who changed what and why, and revert to a known-good previous state if a change causes outages or misconfigurations. It also facilitates peer review through merge or pull requests, which catches issues before deployment. These capabilities directly support operational reliability and audit compliance, making version control a foundational practice for automation.

Why this answer

Version control provides change history, collaboration, and rollback options for scripts and infrastructure-as-code files.

Exam trap

A frequent exam trap is selecting options that imply version control automatically corrects coding mistakes or replaces device functions. Candidates might incorrectly believe version control fixes errors or removes the need for API authentication, but it only tracks changes and supports collaboration. Misunderstanding this leads to choosing options like 'It automatically fixes coding mistakes' or 'It removes the need for API authentication,' which are false.

Another trap is confusing version control with device software management, mistakenly thinking it replaces the device operating system. Recognizing that version control solely manages script versions and history prevents these errors.

Why the other options are wrong

A

Option A incorrectly claims version control automatically fixes coding mistakes. While version control tracks changes, it does not validate or correct errors in scripts, so this option is false.

C

Option C falsely suggests version control removes the need for API authentication. Authentication is a separate security process and is not affected by version control.

D

Option D incorrectly claims version control replaces the device operating system. Version control manages script versions only and does not interact with device OS software.

When would these options actually be correct?

A

In a question asking about a hypothetical advanced version control system that includes AI-driven features for automatic error correction, option A could be correct. For example, if the question specified a tool that integrates machine learning to identify and fix coding errors in real-time.

C

In a different exam scenario, a question might ask about the benefits of using a specific automation tool that integrates version control with API management, where the tool's features include automatic handling of API authentication, making this option plausible.

D

If the exam question were to ask about a technology that allows for the management and deployment of device operating systems, such as a network management system or orchestration tool, then this option could be correct in that context.

Why candidates pick the wrong answer

A

Students may think that because version control can highlight differences between versions, it somehow automatically corrects errors, confusing diff tools with automated debugging.

C

Students might confuse the centralized management of scripts with centralized management of credentials, or assume that because version control stores scripts, it also handles authentication details.

D

The term 'version' in version control might be misinterpreted as managing OS versions, leading students to think it can replace the OS itself.

53
MCQhard

A route to 192.168.1.0/24 appears in the routing table from OSPF, but a more specific static route to 192.168.1.128/25 is also configured. Which route is used for traffic to 192.168.1.200?

A.The OSPF /24 route
B.The static /25 route
C.Both routes automatically load-balance
D.Neither route because the network overlaps
AnswerB

The destination 192.168.1.200 falls within 192.168.1.128/25, which is a longer prefix than the OSPF-advertised 192.168.1.0/24. When a packet matches multiple routes, longest prefix match takes precedence regardless of administrative distance, so the static /25 route is preferred.

Why this answer

The static /25 route is used because longest-prefix match prefers the most specific matching route. In plain language, even though the OSPF /24 route covers the destination, the /25 static route covers a narrower range and therefore wins for addresses inside that upper half of the subnet.

The router does not begin by asking which protocol is more trusted unless the prefix lengths are equal among the matching routes.

Exam trap

A common exam trap is assuming that the routing protocol with the lower administrative distance or higher trustworthiness automatically wins, regardless of prefix length. Candidates may incorrectly choose the OSPF /24 route because OSPF is a dynamic protocol and often trusted. However, the router always applies the longest-prefix match rule first, so the more specific static /25 route is preferred.

Overlapping routes are normal and do not cause routing conflicts; the router simply forwards packets based on the most specific match. Misunderstanding this can lead to selecting the wrong answer and missing the core routing principle tested here.

Why the other options are wrong

A

The OSPF /24 route is less specific than the static /25 route. Since longest-prefix match prefers the more specific route, the OSPF route is not used for 192.168.1.200.

C

Both routes do not automatically load-balance because they have different prefix lengths. Load balancing requires equal prefix length and equal cost routes, which is not the case here.

D

Neither route is incorrect because overlapping routes are common and resolved by longest-prefix match. The router uses the more specific static /25 route, so traffic is forwarded correctly.

When would these options actually be correct?

A

In a scenario where the static route to 192.168.1.128/25 is removed or not configured, and only the OSPF /24 route exists, then traffic to 192.168.1.200 would use the OSPF route. The question would specify that only the OSPF route is available.

C

In a different question setup where both routes are of equal prefix length (e.g., two static routes with the same subnet mask), the exam could ask about load balancing between them, making this option correct as both would be used for traffic.

D

In a scenario where the question states that both routes are configured but the static route is disabled or has a lower administrative distance than OSPF, then the OSPF route would be used, making option D correct.

Why candidates pick the wrong answer

A

Students might think that because OSPF is a dynamic routing protocol, it takes precedence over static routes, or they may confuse administrative distance with prefix length.

C

Students may think that any two routes to the same destination network will automatically load-balance, not realizing that the routes must be identical in prefix length and have equal cost.

D

Students might believe that overlapping routes cause a conflict or error, similar to overlapping IP addresses on interfaces, but routing tables handle overlapping prefixes by longest match.

54
MCQhard

A switch port connected to an edge host immediately transitions to forwarding and then later goes err-disabled after a BPDU is received. Which feature combination most likely produced this behavior?

A.PortFast with BPDU Guard
B.NetFlow with SNMP traps
C.OSPF passive-interface with EUI-64
D.WPA3 with CAPWAP
AnswerA

PortFast immediately moves a switchport from blocking to forwarding, bypassing the STP listening and learning states, which is exactly what an edge host needs to start communicating right away. BPDU Guard then protects that edge port by placing it in errdisable state if any BPDU is received, preventing a rogue switch from forming an unintended loop. Together, these STP edge-port protections both speed up the transition and maintain loop safety for a directly connected host.

Why this answer

The most likely combination is PortFast with BPDU Guard. In practical terms, PortFast explains why the port moved quickly into forwarding when the host connected. BPDU Guard explains why the same port later shut down after seeing a BPDU that should not normally appear on an edge port.

This is a very common enterprise edge-port design pattern and a classic exam scenario.

Exam trap

Beware of confusing BPDU Guard with other protection mechanisms like Root Guard or Loop Guard; each serves a different purpose.

Why the other options are wrong

B

NetFlow is used for traffic monitoring and analysis, while SNMP traps are used for network management notifications. Neither feature affects STP behavior or port state transitions; they do not cause a port to go err-disabled upon receiving a BPDU.

C

OSPF passive-interface prevents OSPF from sending routing updates on an interface but does not affect STP or port security. EUI-64 is used for IPv6 address generation. Neither feature relates to BPDU handling or err-disable behavior.

D

WPA3 is a wireless security protocol, and CAPWAP is a control and provisioning protocol for wireless access points. These are entirely unrelated to wired switch port STP behavior and cannot cause a port to go err-disabled due to BPDU reception.

When would these options actually be correct?

B

If the exam question asked about monitoring and alerting mechanisms for network traffic and events, a scenario involving the use of NetFlow to collect data and SNMP traps to notify administrators of significant events would make this option correct.

C

If the question were about configuring OSPF on a router where the administrator wants to prevent OSPF advertisements on specific interfaces while using EUI-64 addressing for IPv6, this option would be correct. It would focus on controlling OSPF traffic without affecting Layer 2 switch behavior.

D

If the exam question asked about wireless network security configurations and their impact on access point behavior in a CAPWAP environment, then WPA3 could be the correct answer, particularly in scenarios involving secure connections and management of wireless clients.

Why candidates pick the wrong answer

B

Students might confuse the concept of 'traps' or 'alerts' with the err-disabled state, thinking that SNMP traps could trigger a port shutdown. However, err-disabled is a hardware-level protection mechanism, not a management action.

C

The term 'passive' might be misassociated with a port being disabled or inactive. Additionally, EUI-64 might be confused with a security feature, but it is unrelated to STP.

D

The acronyms might be confusing; a student might think 'BPDU' is related to wireless or that 'Guard' is similar to security protocols. However, BPDU Guard is a wired STP feature.

55
MCQhard

A host address is 172.31.9.200/27. Which address is the first usable host in that subnet?

A.172.31.9.193
B.172.31.9.192
C.172.31.9.223
D.172.31.9.201
AnswerA

172.31.9.193 is the first usable host address in the 172.31.9.192/27 subnet. The /27 prefix length yields a 32-address block (256–224 = 32 hosts per subnet), so with a network address of .192, the valid host range begins at .193 and ends at .222 (broadcast .223). Since 172.31.9.200 falls within this subnet, .193 is the lowest usable address in that same range.

Why this answer

A /27 subnet has a block size of 32. In practical terms, the relevant last-octet blocks are 0-31, 32-63, 64-95, 96-127, 128-159, 160-191, 192-223, and 224-255. Because 200 falls within the 192-223 block, the network address is 172.31.9.192 and the first usable host is 172.31.9.193.

This is a host-range interpretation problem rather than just network-or-broadcast recognition.

Exam trap

Be careful not to confuse the network address with the first usable host address.

Why the other options are wrong

B

172.31.9.192 is the network address of the subnet, which is reserved and cannot be assigned to any host. In IPv4, the network address is used to identify the subnet itself, not as a host address.

C

172.31.9.223 is the broadcast address of the subnet, which is reserved for sending traffic to all hosts in the subnet. It cannot be assigned to a host.

D

172.31.9.201 is a valid host address in the subnet, but it is not the first usable host. The first usable host is .193, which comes after the network address .192.

When would these options actually be correct?

B

If the question asked for the subnet address instead of the first usable host, option B would be correct. For example, a question could state, 'What is the subnet address for the network 172.31.9.192/27?'

C

If the question were to ask for the last usable host address in the subnet 172.31.9.192/27, then option C, 172.31.9.223, would be the correct answer, as it is the highest usable address before the broadcast address.

D

In a different question that asks for the second usable host in the subnet 172.31.9.192/27, option D would be correct, as it would be the second usable address after 172.31.9.193.

Why candidates pick the wrong answer

B

Students often confuse the network address with the first usable host because they are numerically close. They may think that since .192 is the start of the range, it can be used, but it is actually the subnet identifier.

C

Students may mistakenly think that the last address in the range is usable, but it is actually the broadcast address. They might also confuse it with the last usable host, which is .222.

D

Students might calculate the subnet incorrectly or think that .201 is the first because it is close to the given host address .200. They may not realize that the subnet starts at .192.

56
MCQmedium

Two switches are connected by an 802.1Q trunk. Hosts in VLAN 30 cannot communicate across the link, but VLAN 10 works. What is the most likely cause?

A.VLAN 30 is missing from the allowed VLAN list on SW2
B.VLAN 10 must be removed for VLAN 30 to pass
C.The trunk should use ISL instead of 802.1Q
D.The port on SW1 should be changed to access mode
AnswerA

SW2's trunk port has an allowed VLAN list that includes only VLANs 10 and 20, so tagged frames for VLAN 30 are not forwarded from SW1 to SW2. The switchport trunk allowed vlan command acts as a filter, and VLAN 30 is excluded, causing the hosts in VLAN 30 to lose communication across the trunk. To fix the issue, the allowed list on SW2 must be updated to include VLAN 30.

Why this answer

When one VLAN works across a trunk but another does not, the most likely cause is that the failing VLAN is missing from the allowed VLAN list on one or both switches. This is often confirmed by a 'show interfaces trunk' command. Option B is incorrect because removing VLAN 10 would break an already working VLAN and does not address VLAN 30.

Option C is incorrect because both ISL and 802.1Q carry multiple VLANs; the issue is not the encapsulation protocol. Option D is incorrect because changing a trunk port to access mode would disable the trunk entirely, preventing all VLAN traffic.

Exam trap

Beware of confusing native VLAN issues with allowed VLAN list configurations. Native VLAN problems affect untagged traffic, not specific VLANs.

Why the other options are wrong

B

Removing VLAN 10 from the allowed list would break an already functioning VLAN and would not fix VLAN 30.

C

Both ISL and 802.1Q support multiple VLANs; the problem is not the trunking protocol but the allowed VLAN list.

D

Changing a trunk port to access mode would terminate the trunk, preventing all VLAN traffic across the link.

When would these options actually be correct?

B

In a different scenario where the question states that only one VLAN can be active on the trunk due to a specific configuration limitation, removing VLAN 10 could be necessary to allow VLAN 30 to pass traffic. This could occur in a legacy system or a misconfigured switch environment.

C

In a scenario where a question specifies that a network is using only ISL for trunking and VLAN 30 is configured correctly on both switches, but communication still fails, the correct answer could be that ISL is required instead of 802.1Q due to compatibility issues with legacy equipment.

D

In a different scenario where the question states that both VLANs are configured on the switches but VLAN 30 is not receiving any traffic, the correct answer could be that the port on SW1 needs to be set to access mode to allow VLAN 30 traffic to be processed correctly.

Why candidates pick the wrong answer

B

A student might think that only one VLAN can be active at a time on a trunk, confusing the concept of native VLAN or misunderstanding that VLANs are independent.

C

Some students may recall that ISL is an older Cisco proprietary trunking protocol and might think switching protocols could fix VLAN issues, but the root cause here is a missing VLAN in the allowed list.

D

A student might think that if a VLAN is not working, the port should be in access mode for that VLAN, but that would isolate the port to a single VLAN and not solve the inter-switch communication problem.

57
MCQhard

A switchport connected to another switch should carry VLANs 10, 20, and 30. The interface is operational, but only VLAN 10 works. VLANs 20 and 30 fail. Which explanation is most likely if the port was accidentally configured as an access port in VLAN 10?

A.The interface is carrying only VLAN 10 because an access port does not transport multiple VLANs like a trunk.
B.VLAN 20 and 30 require different IP subnet masks on the switches.
C.Every inter-switch link must use a routed port instead of a trunk.
D.STP blocks all VLANs except VLAN 10 by design.
AnswerA

An access port is configured to carry exactly one VLAN and frames on that link are untagged. A switch-to-switch link that needs to carry VLANs 10, 20, and 30 must be configured as a trunk using 802.1Q tagging, which preserves VLAN membership by inserting a VLAN ID header. Because the port is set to access mode in VLAN 10, it drops or ignores frames from other VLANs, explaining why only VLAN 10 works.

Why this answer

An access port is limited to a single VLAN, so only VLAN 10 traverses the link. Option B is incorrect: IP subnet masks are irrelevant on switchports that operate at Layer 2. Option C is incorrect: inter-switch links typically use trunk ports, not routed ports.

Option D is incorrect: STP does not block based on VLAN IDs; it blocks redundant paths, not specific VLANs.

Exam trap

Be careful not to confuse access port limitations with trunk configuration issues. Always verify the port mode when troubleshooting VLAN connectivity.

Why the other options are wrong

B

IP subnet masks are Layer 3 concepts and do not affect Layer 2 VLAN propagation across a switchport. The issue here is purely Layer 2, related to the switchport mode (access vs. trunk), not IP addressing. VLANs 20 and 30 would still fail regardless of subnet mask configuration.

C

Routed ports are Layer 3 interfaces used for routing between networks, not for carrying multiple VLANs. The standard method for carrying multiple VLANs between switches is to use a trunk port, which tags frames with VLAN IDs. A routed port would not solve the issue and would break Layer 2 connectivity.

D

STP (Spanning Tree Protocol) prevents loops by blocking redundant paths, but it does not selectively block specific VLANs based on their VLAN ID. If STP were blocking VLANs 20 and 30, it would be due to a misconfiguration like PVST+ inconsistencies, not by design. The scenario describes a simple access port misconfiguration, not an STP issue.

When would these options actually be correct?

B

In a different scenario, if the question stated that VLANs 20 and 30 were configured with different subnet masks that did not match the corresponding VLAN interfaces on the switches, then this option would be correct. This would imply that the mismatched subnet masks are preventing proper communication for those VLANs.

C

In a question where the requirement specifies that all inter-switch links must operate at Layer 3, and the context indicates that routed ports are necessary for communication between VLANs, this option would be correct. For example, if the question stated that the switches are configured for routing between VLANs instead of switching.

D

In a different scenario where a question states that STP is configured to block all VLANs except for a designated VLAN due to specific network policies, option D would be correct. For example, if a network engineer intentionally configured STP to prioritize VLAN 10 for critical traffic while blocking others for security reasons.

Why candidates pick the wrong answer

B

Students might confuse VLAN configuration with IP subnetting, thinking that different VLANs require different subnet masks on the switches. However, VLANs are Layer 2 constructs and do not depend on IP subnet masks for their operation.

C

Some students may think that routed ports are more advanced or flexible, but they are not designed for VLAN trunking. The confusion arises from the term 'routed' versus 'switched' ports, but trunks are the correct mechanism for inter-switch VLAN transport.

D

Students might associate STP with VLAN blocking, especially in the context of Per-VLAN Spanning Tree (PVST+), where STP runs per VLAN. However, STP does not inherently block all VLANs except VLAN 10; it would only block specific ports to prevent loops, not arbitrarily drop VLANs.

58
MCQhard

An engineer is troubleshooting an OSPF adjacency issue between two Cisco routers, R1 and R2, connected via GigabitEthernet0/0 on both sides. Hosts on R1's LAN cannot ping hosts on R2's LAN. The engineer checks the OSPF neighbor state on R1 and sees the adjacency is stuck in EXSTART/EXCHANGE. The router IDs are 1.1.1.1 on R1 and 2.2.2.2 on R2, and both routers have a network statement for their directly connected subnet. What is the most likely cause of this problem?

A.The passive-interface default command is blocking OSPF Hellos on GigabitEthernet0/0.
B.There is an MTU mismatch between R1 and R2 on the GigabitEthernet0/0 interfaces.
C.The OSPF area configured on the interface does not match between R1 and R2.
D.The router IDs 1.1.1.1 and 2.2.2.2 are conflicting with each other.
AnswerB

The adjacency is stuck in EXSTART/EXCHANGE because R1 and R2 have mismatched MTU values on their GigabitEthernet0/0 interfaces. During the Database Description exchange, OSPF includes the interface MTU in the DBD packet; when one router sends a DBD larger than the peer's MTU, the peer silently drops it, so the routers never finish negotiating master/slave. The fix is configuring the same MTU, for example `ip mtu 1500`, on both sides to allow DBD packets to pass.

Why this answer

The EXSTART/EXCHANGE state indicates that OSPF neighbors have progressed past the 2-Way state and are attempting to exchange Database Description (DBD) packets. An MTU mismatch on the directly connected GigabitEthernet0/0 interfaces prevents successful DBD exchange because the interface with the smaller MTU drops the larger DBD packet, causing the adjacency to remain stuck in EXSTART/EXCHANGE. Options A and C are incorrect because passive-interface default and area mismatches prevent the adjacency from reaching EXSTART/EXCHANGE (they block Hello exchange), and option D is incorrect because conflicting router IDs would prevent adjacency formation entirely, not result in a stuck EXSTART/EXCHANGE state.

Exam trap

Cisco often tests the MTU mismatch scenario by presenting symptoms of a stuck adjacency in EXSTART/EXCHANGE, which candidates may confuse with other issues like mismatched areas or passive interfaces, but the key clue is the specific state where DBD exchange fails.

Why the other options are wrong

A

The passive-interface default command would block Hellos, preventing the adjacency from ever reaching the EXSTART/EXCHANGE state.

C

An OSPF area mismatch would cause Hellos to be ignored, so the adjacency would not progress past the Down or Init state.

D

Conflicting router IDs would prevent the routers from becoming neighbors at all, as OSPF requires unique router IDs within an area.

Why candidates pick the wrong answer

A

Students may confuse the effect of passive-interface with causing adjacency issues, but the specific state EXSTART/EXCHANGE indicates that Hellos have been exchanged and the routers are trying to synchronize databases, which requires DBD packets to be sent.

C

Area mismatch is a common OSPF issue, but it manifests earlier in the adjacency process. Students might assume any adjacency problem is due to area mismatch without considering the specific state.

D

Students may think that router IDs need to be in the same subnet or similar, but OSPF only requires uniqueness. The specific state EXSTART/EXCHANGE points to a DBD packet issue, not a router ID conflict.

59
MCQmedium

A network operations team is implementing an AI-driven automation system that uses an agentic AI agent to handle routine network issues. The agent is configured to detect high CPU utilization on a core router, then automatically execute a series of diagnostic commands and, if a specific pattern is found, trigger a configuration change to reduce load. After the change, the agent re-checks CPU utilization and, if still high, escalates the issue to a human engineer. Which of the following best describes the workflow being used?

A.A static automation script that runs on a schedule without feedback
B.A closed-loop remediation workflow
C.A tool-calling mechanism for executing network commands
D.An AI agent that uses reinforcement learning to optimize network performance
AnswerB

A closed-loop remediation workflow continuously monitors network telemetry, detects a deviation from policy, triggers the appropriate corrective action, verifies that the action restored the desired state, and escalates if it did not—all in one automated chain. This matches exactly the scenario: the agent's detect-act-verify-escalate pattern is the defining characteristic of a closed loop, differentiating it from passive alerting or blind scripting.

Why this answer

The scenario describes a closed-loop remediation workflow, where the AI agent detects an issue, takes action, verifies the result, and escalates if the problem persists. Tool-calling refers to the agent's ability to invoke specific functions (e.g., diagnostic commands, configuration changes), but the overall process is a closed loop. AI agents are the autonomous entities, but the workflow is the key concept.

Why the other options are wrong

A

This describes a static automation script that runs on a schedule without feedback, but the scenario involves an agent that detects an issue, takes action, re-checks, and escalates if needed, which is adaptive and not static.

C

Tool-calling is a component of the workflow (executing diagnostic commands and configuration changes), but the overall process includes detection, action, verification, and escalation, which is more than just calling tools.

D

Reinforcement learning involves continuous trial-and-error learning from rewards, but the scenario uses predefined diagnostics and actions, not learning from past outcomes to improve future decisions.

Why candidates pick the wrong answer

A

Students might confuse any automated script with a closed-loop workflow, but the key difference is the lack of feedback and conditional re-evaluation in static scripts.

C

Students might focus on the agent executing commands and think 'tool-calling' is the main concept, overlooking the feedback loop that defines the workflow.

D

Students might associate 'AI agent' with reinforcement learning, but the agent here follows a fixed set of rules and does not learn or optimize over time.

60
MCQhard

Two switches should form an LACP EtherChannel. One side is configured passive, and the other side is also passive. What is the most likely result?

A.The EtherChannel is unlikely to form because neither side initiates LACP negotiation.
B.The EtherChannel always forms because passive mode is stronger than active mode.
C.The link becomes a routed port automatically.
D.Both switches delete the port-channel configuration.
AnswerA

In LACP, the 'passive' mode waits for an incoming LACP PDU and never sends one on its own. Since both switches are configured as passive, neither end transmits the initial LACP negotiation frames required to detect the peer and agree on link parameters, so the EtherChannel remains in a down or unattached state. LACP requires at least one side to be 'active' to begin the exchange.

Why this answer

If both sides are passive, the EtherChannel is unlikely to form because passive mode waits for the other side to initiate LACP negotiation. In plain language, both switches are listening, but neither is actively starting the conversation. Because neither side takes the active role, the bundle normally stays down or unformed unless one side is changed to active.

This is a classic LACP negotiation question. It reinforces the difference between valid pairings such as active/active or active/passive and the passive/passive pairing that usually fails to initiate negotiation.

Exam trap

Remember, passive mode waits for the other side to initiate. Ensure at least one side is active to form an EtherChannel.

Why the other options are wrong

B

Passive mode does not initiate LACP negotiation; it only responds to incoming LACP packets. Active mode is the one that actively sends LACP packets. Therefore, passive mode is not stronger than active mode.

C

LACP configuration does not change the interface type; it only bundles multiple physical links into a logical EtherChannel. The interface remains a Layer 2 or Layer 3 port based on its configuration, not a routed port automatically.

D

Passive mode does not cause the switch to delete the port-channel configuration. The configuration remains, but the EtherChannel will not come up because no LACP negotiation occurs.

When would these options actually be correct?

B

In a different scenario where one switch is configured in active mode and the other in passive mode, this option could be correct. In that case, the active switch would initiate the negotiation, and the EtherChannel would successfully form.

C

In a different scenario where a switch is configured to automatically convert its interfaces to routed ports when no LACP negotiation occurs, the question could state that both switches are configured to operate in passive mode without any additional configurations. In this case, the link would indeed become a routed port due to the lack of LACP negotiation.

D

In a different scenario, if the question stated that both switches were configured to delete their port-channel configurations due to a misconfiguration or a specific command, then this option would be correct. For example, if the question specified that both switches were set to a mode that requires active negotiation but were misconfigured to passive, leading to a deletion of the port-channel.

Why candidates pick the wrong answer

B

Students might confuse passive mode with a more aggressive or 'stronger' mode, or they may think that passive mode always succeeds because it is the default on some platforms.

C

Students might associate LACP with link aggregation and mistakenly think it converts the port to a routed port, especially if they confuse it with features like routed ports on multilayer switches.

D

Students might think that if the EtherChannel fails to form, the switch automatically cleans up the configuration to avoid errors, but this is not the case.

61
Drag & Drophard

Drag and drop the following steps into the correct order to configure a Cisco IOS-XE router as a DHCP server for a client VLAN and then enable a DHCP relay agent on a different interface to forward client requests to a remote server.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4

Why this order

The correct order for configuring a Cisco IOS-XE router as a DHCP server and relay agent is: first exclude addresses to prevent the DHCP server from leasing reserved IPs, then create and configure the DHCP pool (network, default gateway), next enable DHCP relay on the required interface, and finally verify. Only Option D follows this sequence exactly. Options A, B, and C are incorrect because they either place exclusion after pool creation (A) or enable relay before the pool is fully configured (B and C), which can lead to address conflicts or forwarding issues.

Exam trap

Candidates often mistakenly create the DHCP pool before excluding addresses, leading to the server leasing addresses intended to be reserved. Always configure exclusions first, then the pool, then relay, then verify.

When would these options actually be correct?

A

This sequence is used when configuring a Cisco IOS-XE router to act as a DHCP server for a local VLAN and also as a DHCP relay agent on another interface to forward requests to a remote DHCP server.

Why candidates pick the wrong answer

B

Candidates might think that relay configuration is independent and can be done at any time, but the standard practice is to configure the server first to ensure the router is ready to serve addresses before forwarding requests.

C

Candidates might mistakenly think that DHCP relay configuration is part of the pool configuration or that the order of pool commands doesn't matter, but the correct order is to define the pool parameters first, then exclude addresses.

62
PBQhard

You are connected to R1 via console. R1 and R2 are directly connected via GigabitEthernet0/0. Your task is to configure IPv4 and IPv6 addressing on both routers so that they can ping each other's IPv4 and IPv6 addresses. The current configuration has intentional faults: R1's IPv4 subnet mask is incorrect, R2 is missing its default gateway, and R1's IPv6 address uses EUI-64 but is not working due to a duplicate IP. Correct the IPv4 mask on R1, assign a static IPv6 address on R2, and ensure both routers can reach each other.

Network Topology
G0/0192.0.2.1/30G0/0192.0.2.2/30linkR1R2

Hints

  • Check the subnet mask on R1's G0/0 — the link between two routers typically uses a /30 mask.
  • R2 has no IPv6 address configured — assign one manually.
  • R2 cannot reach R1's IPv4 address because they are on different subnets and R2 has no default gateway.
A.On R1, change the IPv4 mask to 255.255.255.252; on R2, assign IPv4 address 192.0.2.2/30 and IPv6 address 2001:db8:1::2/64; configure a default route on R2 pointing to 192.0.2.1.
B.On R1, change the IPv4 mask to 255.255.255.0; on R2, assign IPv4 address 192.0.2.2/24 and IPv6 address 2001:db8:1::2/64; no default route needed.
C.On R1, change the IPv4 mask to 255.255.255.252; on R2, assign IPv4 address 192.0.2.2/28 and IPv6 address 2001:db8:1::2/64; configure a default route on R2 pointing to 192.0.2.1.
D.On R1, change the IPv4 mask to 255.255.255.252; on R2, assign IPv4 address 192.0.2.2/30 and IPv6 address 2001:db8:1::1/64; configure a default route on R2 pointing to 192.0.2.1.
AnswerA
solution
! R1
configure terminal
interface GigabitEthernet0/0
ip address 192.0.2.1 255.255.255.252
end

! R2
configure terminal
interface GigabitEthernet0/0
ip address 192.0.2.2 255.255.255.252
ipv6 address 2001:db8:1::2/64
exit
ip route 0.0.0.0 0.0.0.0 192.0.2.1
end

Why this answer

R1's IPv4 mask was /28, but the correct mask for the link should be /30 to avoid overlapping subnets (192.0.2.0/28 includes both .1 and .14, but they are on the same link). R2 had no IPv6 address configured. Additionally, R1's EUI-64 address was valid but R2 needed a static IPv6 address.

The solution: on R1, change the mask to 255.255.255.252; on R2, assign an IPv4 address with mask /30 and a static IPv6 address 2001:db8:1::2/64; also add a default route on R2 pointing to 192.0.2.1 for IPv4. After these changes, both routers can ping each other's IPv4 and IPv6 addresses.

Exam trap

Watch out for subnet mask mismatches and duplicate IPv6 addresses. Always use /30 for point-to-point links and ensure each router has a unique IPv6 address on the same link.

Why the other options are wrong

B

The specific factual error: Using a /24 mask on a point-to-point link wastes addresses and may cause subnet overlap; also, R2 needs a default route to reach R1's IPv4 address if the mask is /30, but with /24 they are in the same subnet so no default route is needed, but the mask is still wrong.

C

The specific factual error: R2's IPv4 mask must match R1's mask to ensure both routers agree on the subnet boundary. Using /28 on R2 while R1 uses /30 creates a mismatch.

D

The specific factual error: Assigning the same IPv6 address to both routers causes a duplicate address conflict, preventing communication.

Why candidates pick the wrong answer

B

Candidates might think a /24 mask is standard for Ethernet links, but for point-to-point links, a /30 is more appropriate.

C

Candidates might think R2 can use a different mask as long as the IP addresses are in the same range, but mismatched masks cause connectivity issues.

D

Candidates might mistakenly think that both routers can share the same IPv6 address if they are on different interfaces, but on the same link, addresses must be unique.

63
MCQmedium

Which tool type is most appropriate for turning a variable set of interface values into a reusable configuration template?

A.A packet sniffer
B.A templating engine
C.A DNS recursive resolver
D.An STP root bridge
AnswerB

A templating engine is the appropriate tool for turning a variable set into a reusable configuration because it combines a template file containing static structure and placeholders with a set of key-value variables to generate a fully rendered output. Engines like Jinja2 (used in Ansible) or Apache Velocity allow network engineers to define a single template and dynamically populate it with different variable sets, enabling consistent, parameterized configuration generation across many devices without hand-editing each file.

Why this answer

A templating engine allows you to create a reusable configuration pattern and populate it with variable values, making it ideal for turning variable interface values into templates. A packet sniffer captures network traffic and analyzes packets but does not generate configuration templates. A DNS recursive resolver translates domain names to IP addresses, which is unrelated to configuration templating.

An STP root bridge manages loop-free topology in a switched network, not template creation.

Exam trap

Avoid confusing tools that manage or analyze configurations with those that generate them. Focus on the primary function of each tool.

Why the other options are wrong

A

A packet sniffer captures and analyzes network traffic, but it cannot generate or manipulate configuration templates. It is a monitoring tool, not a configuration automation tool.

C

A DNS recursive resolver translates domain names to IP addresses and has no capability to generate or manage configuration templates. It is a name resolution service, not a configuration tool.

D

An STP root bridge is a switch role in Spanning Tree Protocol that prevents loops in a network. It is a functional role, not a tool for creating reusable configuration templates.

When would these options actually be correct?

A

If the question asked for a tool to analyze and visualize network traffic patterns or troubleshoot network issues, a packet sniffer would be the correct answer. In that context, it would be appropriate for understanding data flow and diagnosing connectivity problems.

C

If the exam question asked about the most appropriate tool for managing DNS records dynamically based on variable input values, a DNS recursive resolver could be the correct answer. In this context, the focus would be on resolving DNS queries rather than configuration templating.

D

If the exam question asked about the best method for optimizing network topology management or ensuring redundancy in a switched network, an STP root bridge would be the correct answer, as it plays a crucial role in maintaining loop-free network architecture.

Why candidates pick the wrong answer

A

Students might confuse packet sniffers with tools that can capture configurations from devices, but sniffers only capture traffic, not device configurations.

C

Students might think 'resolver' implies solving configuration problems, but DNS resolvers are unrelated to configuration templating.

D

Students might confuse 'root' with a template or base configuration, but STP root bridge is a specific protocol role, not an automation tool.

64
MCQhard

A router learns route 198.51.100.0/24 from OSPF with AD 110 and also has a static route to the same prefix configured with AD 150. Which route is installed?

A.The static route, because static routes always win
B.The OSPF route, because 110 is lower than 150
C.Both routes, because administrative distances are different
D.Neither route, because the static route is floating
AnswerB

OSPF has a default administrative distance of 110, while the static route in this scenario has been configured with an AD of 150, making it a floating static route. Since the router selects the route with the lowest AD for the same destination prefix, the OSPF route wins. The lower AD indicates that OSPF is more trustworthy than the static route in this configuration.

Why this answer

The route with the lower administrative distance is installed. A static route configured with a higher AD becomes a floating static route and remains as a backup until the preferred route disappears.

Exam trap

Don't assume static routes are always preferred; check the administrative distance.

Why the other options are wrong

A

Static routes do not always win; they have a default administrative distance of 1, but in this scenario the static route was configured with AD 150, which is higher than OSPF's AD 110. Therefore, the OSPF route is preferred.

C

A router installs only the best route (lowest AD) for a given prefix into the routing table. Different AD values do not cause both routes to be installed; the route with the lower AD is chosen.

D

A floating static route is a static route with a higher AD than the dynamic route, so it remains inactive as a backup. In this case, the static route is floating, but it is still valid and will be used if the OSPF route is lost. The question asks which route is installed, and the OSPF route is installed, not neither.

When would these options actually be correct?

A

If a question stated that the router only has a static route to the prefix and no other routes with a lower AD, then the static route would be installed. For example, if the static route had an AD of 100 and there were no other routes, the static route would be preferred.

C

In a different scenario where both routes are configured with the same prefix and the same administrative distance, a question could ask if both routes would be installed. In such a case, the router could install both routes in a load-balancing situation, making this option correct.

D

If the question stated that the static route had a higher administrative distance than the OSPF route but was configured with a command that made it a floating static route (e.g., AD 200), then the static route would not be installed unless the OSPF route failed, making this option correct.

Why candidates pick the wrong answer

A

Students often memorize that static routes are preferred over dynamic routes by default, but they may forget that administrative distance can be manually set, making the static route less preferred.

C

Students might think that different administrative distances allow multiple routes to coexist, confusing this with equal-cost multipath (ECMP) where routes have the same AD and metric.

D

The term 'floating' might mislead students into thinking the static route is invalid or not present, but it simply means it is not active while the preferred route exists.

65
MCQhard

Based on the exhibit, which route will be used for destination 192.168.10.130?

A.The static route to 192.168.10.128/25
B.The OSPF route to 192.168.10.0/24
C.The default route
D.No route at all
AnswerA

This is correct because 192.168.10.130 is inside the more specific /25 prefix.

Why this answer

The route used will be the one with the longest matching prefix. In practical terms, 192.168.10.130 matches both the /24 and the /25 prefixes shown, but the /25 is more specific. Because longest-prefix match comes first, the router uses the /25 route even though other matching routes are present.

This is a clean route-table interpretation question that is very close to real exam reasoning.

Exam trap

A common exam trap is to select the OSPF route to 192.168.10.0/24 because it appears as a valid route to the destination. Candidates may mistakenly believe that dynamic routing protocols override static routes or that the broader /24 subnet is sufficient. However, the router always prefers the longest prefix match, which is the /25 static route in this case.

Another trap is assuming the default route will be used when multiple routes exist, but default routes only apply when no specific routes match the destination. Misunderstanding these routing principles leads to incorrect answers.

Why the other options are wrong

B

This option is incorrect because the OSPF route to 192.168.10.0/24 has a shorter prefix length (/24) than the static /25 route, so it is less specific and will not be chosen for the destination IP.

C

This option is incorrect because the default route is only used when no other specific routes match the destination. Since both the /24 and /25 routes match, the default route is ignored.

D

This option is incorrect because the destination IP clearly matches multiple routes in the routing table, so the router will select the best match rather than having no route at all.

When would these options actually be correct?

B

If the question asked which route would be used if the static route to 192.168.10.128/25 was down or unavailable, then the OSPF route to 192.168.10.0/24 would be the correct answer as it would be the next best match for routing the destination.

C

If the question stated that there were no specific routes configured for the destination 192.168.10.130 and only a default route was available, then the correct answer would be the default route. For example, 'What route will be used for destination 192.168.10.130 if only a default route exists?'

D

In a different scenario where the routing table is empty or all routes have been removed, a question could ask if there is a route to 192.168.10.130. In that case, the correct answer would be 'No route at all' as there would be no available paths to the destination.

Why candidates pick the wrong answer

B

Students might think that OSPF, as a dynamic routing protocol, is preferred over static routes, or they may forget that prefix length is the primary tiebreaker, not the routing protocol source.

C

Test-takers might assume that a default route is always used as a last resort, but they overlook that a more specific matching route takes precedence regardless of administrative distance or metric.

D

Students might incorrectly think that if a destination is not an exact match for any network address, no route exists. However, 192.168.10.130 is within the 192.168.10.128/25 subnet, so it is a match.

66
Multi-Selectmedium

Which three of the following are typical use cases for automation in network security operations? (Choose three.)

Select 3 answers
.Automated identification and blocking of previously unseen malware variants using behavioral analysis
.Correlating authentication logs with network flows to detect lateral movement by an attacker
.Dynamic micro-segmentation policy adjustment based on real-time risk scoring of endpoints
.Replacing all firewall rules with a single AI-generated rule that covers all traffic
.Guaranteeing zero false positives in intrusion detection by using deep learning
.Automatically disabling all network ports when any anomaly is detected

Why this answer

The three correct options represent realistic automation use cases in network security operations. Automated identification and blocking of malware variants using behavioral analysis leverages machine learning to detect zero-day threats without relying on signatures. Correlating authentication logs with network flows allows security teams to identify lateral movement by spotting anomalous access patterns, which is a key technique in threat hunting.

Dynamic micro-segmentation adjusts policies in real-time based on endpoint risk scores, enabling instant isolation of compromised devices. The incorrect options are unrealistic: a single AI-generated rule cannot cover all traffic, AI cannot guarantee zero false positives, and disabling all ports on any anomaly would cause denial of service.

Exam trap

Candidates may confuse plausible automation with overhyped AI claims. The trap is that while AI/ML can enhance security, options like 'guaranteeing zero false positives' or 'replacing all rules with one AI rule' are unrealistic. The correct answers focus on practical, risk-aware automation that complements existing security controls.

Why the other options are wrong

D

Logs must be retained for security investigations; automatic deletion undermines forensics.

E

Network devices have diverse roles; a uniform configuration cannot address specific security needs.

F

Indiscriminately opening ports during peak hours exposes the network to unnecessary risk.

67
MCQhard

A network engineer replaces a failed 1000BASE-LX SFP on a core switch with a new transceiver of the same type. After connecting the single-mode fiber, the link remains down and a 'show interfaces gig1/0/49 transceiver' reveals an Rx power of –30 dBm, while the far-end SFP is transmitting at –3 dBm over a 2 km span. The fiber patch cord shows no visible damage.

A.The new SFP is a counterfeit Cisco transceiver that cannot establish a stable link.
B.The SFP is not fully seated in the switch port, causing an intermittent optical connection.
C.Excessive attenuation due to a dirty or damaged fiber connector is preventing the link from coming up.
D.The single-mode fiber distance exceeds the 10 km maximum for 1000BASE-LX, leading to severe signal dispersion.
AnswerC

A –30 dBm Rx power with a transmit level of –3 dBm over a 2 km single-mode span represents a 27 dB loss, far exceeding the expected 0.5–1 dB. Such high loss is typical of contaminated end faces, poor mating, or a tight bend, and it pushes the signal below the receiver sensitivity threshold (around –25 dBm), causing the link to stay down.

Why this answer

The measured Rx power of –30 dBm is far below the receive sensitivity threshold for 1000BASE-LX (typically –19 to –22 dBm), even though the transmitter is outputting a healthy –3 dBm over only 2 km. This indicates excessive loss in the optical path, most commonly caused by a dirty or damaged fiber connector. Cleaning the connector ends with an appropriate fiber cleaning tool and inspecting with a microscope would likely resolve the issue.

Exam trap

Cisco often tests the concept that a link can fail due to excessive optical loss even when the fiber distance is well within the rated maximum, leading candidates to incorrectly blame distance or counterfeit hardware instead of connector cleanliness or damage.

Why the other options are wrong

A

Low Rx power points to a physical signal issue, not a counterfeit detection problem.

B

A partially seated SFP would likely prevent any light from entering, not show a measurable but weak signal.

D

Distance would not cause a 27 dB loss over such a short path, and dispersion is not measured as a reduction in optical power on the DOM readout.

68
MCQhard

R1 is not forming an OSPF adjacency with R2 on GigabitEthernet0/1. Which mismatch below is the most likely cause?

A.The routers are using different IP subnet masks on the shared link
B.OSPF cannot run on GigabitEthernet interfaces
C.Both routers are in area 0
D.The router IDs must match for adjacency to form
AnswerA

For OSPF to form an adjacency on a broadcast multiaccess segment, both routers must agree on the subnet mask assigned to the shared link. If the masks differ, each router derives a different network address from the same IP prefix, so OSPF considers the interfaces to be on separate subnets and ignores the hello packets. Consequently, the neighbor relationship never reaches the two-way state, and the adjacency fails to establish. This is a classic mismatch that prevents OSPF from operating correctly.

Why this answer

For OSPF neighbors to form, key settings on a shared segment must match. A subnet mask mismatch on a broadcast network often prevents proper neighbor formation because the routers do not agree on the local network.

Exam trap

A common exam trap is confusing the need for matching router IDs with adjacency formation. While router IDs must be unique within an OSPF domain, they do not need to match for adjacency to form. Another trap is assuming OSPF cannot run on GigabitEthernet interfaces, which is incorrect because OSPF supports all standard interface types.

The most tempting mistake is overlooking the subnet mask mismatch, which silently prevents adjacency by making routers believe they are on different networks, even if other parameters like area ID match. This subtle misconfiguration is often missed during troubleshooting.

Why the other options are wrong

B

Incorrect because OSPF fully supports GigabitEthernet interfaces. There is no restriction on running OSPF on these interfaces in Cisco IOS.

C

Incorrect because both routers being in area 0 is necessary for adjacency on that segment. Matching area IDs help form adjacency rather than prevent it.

D

Incorrect because router IDs must be unique, not identical. Matching router IDs do not cause adjacency to form; in fact, duplicate router IDs cause routing problems but not adjacency failure due to subnet mismatch.

When would these options actually be correct?

B

In a different question, if it were stated that OSPF is being configured on a legacy interface type that does not support OSPF, such as a serial interface with specific limitations, then this option could be correct. For example, if the question specified that OSPF was being attempted on a non-supported interface type, this would be the right answer.

C

In a different scenario, if the question stated that both routers were configured to use different OSPF versions or protocols that are not supported on GigabitEthernet interfaces, then this option could be correct. For example, if one router was using a legacy protocol incompatible with GigabitEthernet, it would prevent OSPF from forming an adjacency.

D

In a different scenario where the question specifies that both routers are configured to use the same router ID for redundancy or load balancing, and they are incorrectly set to the same value, this option would be correct. For example, if the question states that both routers are configured in a way that they must share the same router ID for a specific OSPF design.

Why candidates pick the wrong answer

B

Students might confuse OSPF's network type (broadcast vs. point-to-point) with interface speed, or incorrectly think that OSPF has limitations on high-speed interfaces.

C

A test-taker might think that area 0 is reserved for backbone only and that other routers cannot be in area 0, but in fact, any router can be in area 0 as long as it is contiguous.

D

Students may confuse the concept of matching parameters (like area ID, subnet mask) with router IDs, thinking that router IDs need to match for adjacency, when in fact they must be unique.

69
Multi-Selectmedium

Which TWO statements correctly describe the behavior of Root Guard, Loop Guard, and BPDU Guard in a Rapid PVST+ environment?

Select 2 answers
A.Root Guard is applied to a port that should never become a root port; if a superior BPDU is received, the port is placed into a root-inconsistent state.
B.Loop Guard is used on root ports to monitor BPDU reception; if BPDUs stop, the port is immediately placed into forwarding mode to maintain connectivity.
C.BPDU Guard is typically configured on access ports and error-disables the port if a BPDU is received, protecting against unauthorized switch connections.
D.Root Guard and BPDU Guard can be enabled simultaneously on the same port to provide both root protection and BPDU filtering.
E.Loop Guard is only effective when configured on ports that are in a blocking state; it prevents them from transitioning to forwarding if BPDUs are not received.
AnswersA, C

Root Guard is placed on designated ports that should never become root ports. It allows normal BPDU processing, but if a superior BPDU (one with a lower bridge ID than the current root) is received, the port transitions to a root-inconsistent state, which blocks traffic while still listening for BPDUs. This prevents an unauthorized or misconfigured switch from becoming the spanning-tree root. Unlike BPDU Guard, the port automatically recovers once the superior BPDUs cease, without manual intervention.

Why this answer

Root Guard, applied to a port that should never become a root port, places that port into a root-inconsistent state upon receiving a superior BPDU, blocking traffic to prevent an unauthorized root bridge. Option C is correct because BPDU Guard is typically configured on access ports and error-disables the port if any BPDU is received, protecting against rogue switch connections. Option B is incorrect: when BPDUs stop on a port with Loop Guard, the port is placed into a loop-inconsistent state (blocked), not immediately forwarded, to prevent loops.

Option D is incorrect because Root Guard and BPDU Guard are mutually exclusive and cannot be enabled simultaneously on the same port due to conflicting protective behaviors. Option E is incorrect because Loop Guard is effective on any port that is expected to receive BPDUs, including root ports and alternate/backup ports; it is not limited to ports already in a blocking state, and the statement's use of 'only' makes it false.

Exam trap

Cisco often tests the misconception that Loop Guard immediately forwards traffic when BPDUs stop, but in reality it blocks the port to prevent loops, and that Root Guard and BPDU Guard can coexist on the same port, which they cannot due to conflicting behaviors.

Why the other options are wrong

B

Loop Guard is applied to non-designated ports (alternate or backup ports), not root ports. When BPDUs stop arriving, the port is placed into a loop-inconsistent state (blocked) to prevent loops, not into forwarding mode.

D

Root Guard and BPDU Guard have conflicting behaviors: Root Guard allows BPDU processing to detect superior BPDUs, while BPDU Guard disables the port upon receiving any BPDU. They cannot be enabled simultaneously on the same port because their actions are mutually exclusive.

E

Loop Guard is effective on ports that are in a blocking state (alternate or backup ports), but it does not prevent them from transitioning to forwarding; instead, if BPDUs stop, the port remains in a loop-inconsistent state (blocked) to prevent loops. The statement incorrectly implies that Loop Guard prevents transition, but it actually causes the port to stay blocked.

When would these options actually be correct?

E

When you want to prevent temporary loops caused by unidirectional link failures on blocked ports.

Why candidates pick the wrong answer

B

Students may confuse Loop Guard with UplinkFast or other features that quickly transition ports to forwarding. They might think Loop Guard is used on root ports to maintain connectivity if BPDUs are lost, but its actual purpose is to prevent loops by keeping ports blocked.

D

Students might think that combining both features provides comprehensive protection, but they overlook the fact that BPDU Guard would error-disable the port before Root Guard can act, making Root Guard ineffective.

E

Students may understand that Loop Guard is used on blocking ports but misinterpret its behavior. They might think it prevents the port from transitioning to forwarding, which is partially true, but the key is that it keeps the port blocked when BPDUs are lost, not that it prevents transition in general.

70
Drag & Dropmedium

Drag and drop the following steps into the correct order to troubleshoot a Windows client that is unable to reach a remote server.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5
6Step 6

Why this order

The correct troubleshooting order starts with verifying the client's IP configuration using ipconfig /all (A) to ensure the device has proper addressing. Next, test the TCP/IP stack by pinging the loopback address 127.0.0.1 (B). Then, ping the client's own IP address (C) to confirm the network interface card is operational.

After that, ping the default gateway (D) to verify local network connectivity. If successful, ping the remote server (E) to test end-to-end connectivity. If that fails, use tracert (F) to identify where the path breaks.

This bottom-up approach isolates the problem starting from the local host outwards.

71
MCQhard

A switchport is configured as an access port in VLAN 10, but a user plugs in a small unmanaged switch and connects multiple devices behind it. Which security feature most directly limits that behavior at the switchport?

A.Port security
B.OSPF authentication
C.NetFlow
D.NTP
AnswerA

Port security is the correct answer because it operates directly at the switchport to restrict the number of and identity of MAC addresses allowed to send traffic. On an access port in VLAN 10, you can configure a maximum MAC address count and define allowed MACs, triggering protection actions like shutdown or restrict when a violation occurs. This functionality precisely limits endpoint behavior and secures the access layer.

Why this answer

Port security most directly limits that behavior because it can restrict how many MAC addresses are learned on the switchport. In practical terms, if the interface is supposed to support one endpoint but suddenly begins presenting multiple MAC addresses from a downstream mini-switch, port security can detect and react to that change.

This is a classic access-layer control question. VLAN assignment alone does not limit how many devices appear behind the port.

Exam trap

A frequent exam trap is assuming that VLAN assignment alone restricts the number of devices behind a switchport. VLANs only segregate traffic logically and do not prevent multiple MAC addresses from appearing on a port. Another common mistake is selecting unrelated options like OSPF authentication, which secures routing protocol exchanges but does not control Layer 2 access.

NetFlow and NTP are also unrelated to limiting connected devices. The key is recognizing that only port security directly limits how many MAC addresses can be learned on a port, thus controlling the number of connected devices.

Why the other options are wrong

B

OSPF authentication is unrelated to switchport security; it protects routing protocol exchanges but does not control physical or MAC-level access on a switchport.

C

NetFlow is a traffic monitoring tool that provides visibility into network flows but does not enforce any limits on the number of devices connected to a switchport.

D

NTP is used for time synchronization across network devices and does not provide any mechanism to restrict or control devices connected to a switchport.

When would these options actually be correct?

B

In a scenario where the question asks about securing OSPF routing updates in a network with multiple routers, and the focus is on preventing unauthorized routing information from being exchanged, OSPF authentication would be the correct answer. This would involve configuring authentication methods to ensure only trusted routers can participate in OSPF.

C

If the exam question asked about monitoring traffic patterns and analyzing bandwidth usage on a switchport, NetFlow would be the correct answer. For example, a question could present a scenario where a network administrator needs to track the flow of data through a specific VLAN to identify performance issues.

D

In a question focused on time synchronization issues in a network, where the exam asks about ensuring accurate time across devices in a networked environment, NTP would be the correct answer. For example, if a question asks which protocol ensures that all devices have synchronized time to prevent logging discrepancies, NTP would be appropriate.

Why candidates pick the wrong answer

B

Students might confuse authentication with general security and think it could prevent unauthorized devices, but OSPF authentication only secures routing updates, not access-layer connectivity.

C

Because NetFlow can detect unusual traffic patterns, a student might think it could detect or limit multiple devices, but it lacks enforcement capabilities and operates at a higher layer.

D

Students might mistakenly think NTP can be used for logging or time-based access control, but it only provides time synchronization, not security enforcement.

72
MCQhard

A router has a static route for 172.16.10.128/25 and an OSPF-learned route for 172.16.10.0/24. When forwarding traffic to 172.16.10.130, why does the router use the static route instead of the OSPF route?

A.Because the static /25 route is more specific than the OSPF /24 route.
B.Because static routes always beat OSPF even when they are less specific.
C.Because OSPF routes cannot be used for Class B networks.
D.Because the OSPF metric is lower than the static administrative distance.
AnswerA

For the destination 172.16.10.130, both 172.16.10.0/24 and 172.16.10.128/25 are candidates, but the /25 has a longer prefix length and therefore provides a more specific match. The router's forwarding logic selects the route with the longest matching prefix, so the static /25 route is installed in the CEF table for that destination. The OSPF /24 route remains in the routing table for other addresses in the /24 that are not covered by the /25.

Why this answer

The static route is used because it is the more specific match. In practical terms, route selection starts with prefix specificity. The destination 172.16.10.130 matches both routes shown, but the static /25 is more specific than the OSPF /24. Because longest-prefix match comes first, the static route is chosen regardless of the different route sources.

This is a classic route-selection interpretation question that tests whether you prioritize specificity correctly.

Exam trap

A common exam trap is to incorrectly assume that static routes always override OSPF routes due to their lower administrative distance, regardless of prefix length. Candidates might also believe that OSPF cannot handle Class B networks or that metrics alone determine route selection. The trap lies in ignoring the fundamental routing principle of longest-prefix match, which Cisco routers apply before considering administrative distance or metric.

This misunderstanding leads to incorrect answers and confusion about route selection behavior in Cisco routing tables.

Why the other options are wrong

B

Option B is incorrect because static routes do not always override OSPF routes regardless of specificity. Prefix length is evaluated before administrative distance, so a less specific static route would not override a more specific OSPF route.

C

Option C is incorrect because OSPF can route any IP address range, including Class B networks like 172.16.0.0/16. There is no limitation on OSPF routing based on IP class.

D

Option D is incorrect because the routing decision here is based on prefix length, not on comparing OSPF metric and static route administrative distance. The static route’s longer prefix length takes precedence.

When would these options actually be correct?

B

In a different scenario, if the question stated that a static route with a less specific prefix length was configured with a lower administrative distance than the OSPF routes, then this option could be correct. For example, if a static route had an administrative distance of 110 and OSPF had 120, the static route would be preferred despite being less specific.

C

In a different scenario, if the question stated that OSPF was configured only for Class A networks and the static route was for a Class B network, this option could be correct. For example, if the question asked why OSPF was not being used for a Class B network, this option would apply.

D

In a different scenario where the question asks about route selection based on administrative distance alone, if the OSPF route had a higher administrative distance than the static route, this option would be correct. For example, if the static route had an administrative distance of 1 and OSPF had 110, then the static route would be preferred.

Why candidates pick the wrong answer

B

Students often confuse the order of route selection criteria, thinking that administrative distance is the primary factor. They may recall that static routes have a lower AD than OSPF and incorrectly assume that static routes are always preferred, ignoring the longest-prefix match rule.

C

Some test-takers may confuse OSPF with older classful routing protocols like RIPv1, which do not support VLSM. They might incorrectly assume that OSPF cannot handle Class B networks due to a misunderstanding of classful vs. classless routing.

D

Students may think that a lower metric (or administrative distance) always determines the best route. They might compare the OSPF metric (cost) to the static route's administrative distance, not realizing that these values are not directly comparable and that prefix length overrides both.

73
MCQhard

A router receives a destination prefix from EIGRP with administrative distance 90 and also from OSPF with administrative distance 110. The prefix length is identical. Which route source is preferred?

A.EIGRP
B.OSPF
C.Both equally
D.Neither, because route sources cannot overlap
AnswerA

EIGRP is the correct choice because its default administrative distance of 90 is lower than OSPF's default of 110 for the same destination prefix. When a router receives overlapping routes from multiple routing protocols, the protocol with the lowest administrative distance is deemed most trustworthy and installed in the routing table. The EIGRP route becomes the active route, while the OSPF route is kept as a backup or not installed at all.

Why this answer

The EIGRP route is preferred because its administrative distance is lower. In practical terms, once the prefix length is the same, the router compares the trustworthiness of the route source. Lower administrative distance wins. Since 90 is lower than 110, EIGRP is preferred over OSPF for that destination.

This is an administrative-distance comparison question, not a longest-prefix question. The key is that the prefix length is equal, so source preference becomes the deciding factor.

Exam trap

A frequent exam trap is to assume that OSPF routes might be preferred over EIGRP routes simply because OSPF is a widely used IGP or because of metric comparisons within OSPF. Candidates often confuse administrative distance with routing metrics, mistakenly thinking that the lower metric route is preferred regardless of protocol. However, administrative distance is the first criterion when routes come from different protocols.

Another trap is to think that routes from different protocols cannot overlap or that prefix length alone determines preference. The key is that when prefix lengths are equal, the router uses administrative distance to select the best route, so EIGRP’s lower AD of 90 always beats OSPF’s 110.

Why the other options are wrong

B

This option is incorrect because OSPF’s administrative distance of 110 is higher than EIGRP’s 90, so OSPF routes are less preferred when both advertise the same prefix length.

C

This option is incorrect because routers do not treat routes from different protocols with equal administrative distance; they prefer the route with the lower administrative distance, so both routes are not equally preferred.

D

This option is incorrect because routers can and often do receive overlapping routes from multiple routing protocols and must compare administrative distance to choose the best route.

When would these options actually be correct?

B

In a different question setup, if the administrative distance for OSPF were lower than that of EIGRP (e.g., OSPF 90 and EIGRP 110), then OSPF would be the preferred route source for the identical prefix length.

C

In a different question setup where both EIGRP and OSPF provide routes with the same administrative distance and prefix length, the candidate might be asked which routes would be preferred. In that case, the correct answer could be 'both equally' as they would be treated with the same preference.

D

In a scenario where the question specifies that a router cannot use routes from multiple sources for the same destination prefix, such as in a strict routing policy or a specific network design requirement, this option would be correct.

Why candidates pick the wrong answer

B

Students might think OSPF is more reliable or commonly used in larger networks, leading them to assume it would be preferred over EIGRP, but administrative distance is the decisive factor.

C

A student might confuse administrative distance with metric, thinking that if both routes have the same metric they would be equal, but AD is compared first and differs here.

D

A student might think that different routing protocols cannot both know about the same network, but in practice, route redistribution or multiple protocols on the same router can lead to overlapping prefixes.

74
MCQmedium

An administrator wants a switchport connected to an end device to move to forwarding quickly but does not want that setting used on inter-switch links. Which feature is intended for that edge-port behavior?

A.PortFast
B.Root guard
C.Loop guard
D.UDLD aggressive
AnswerA

PortFast is correct because it configures a switchport connected to an end device (such as a PC, printer, or IP phone) to bypass the STP listening and learning states, jumping directly from blocking to forwarding. This eliminates the 30-second delay caused by normal STP convergence, since an edge port should never participate in a Layer 2 loop when only a single host is attached. Cisco recommends enabling PortFast only on access ports and using it with BPDU guard to protect the network from unexpected BPDUs on those ports.

Why this answer

PortFast is intended for that exact edge-port behavior: it allows a host-facing access port to skip the usual listening and learning delays and transition directly to forwarding, enabling end devices to come online quickly. Root guard is used to protect the root bridge election by restricting which ports can become root ports; it is not designed for edge ports. Loop guard prevents alternate or root ports from becoming designated in the absence of BPDUs, which is a different STP protection mechanism.

UDLD aggressive mode detects and disables unidirectional links on point-to-point links, typically between switches, not for end-device connections. Therefore, only PortFast meets the requirement for fast forwarding on an edge port without affecting inter-switch links.

Exam trap

Be careful not to confuse PortFast with other STP-related features like BPDU Guard or Root Guard, which serve different purposes.

Why the other options are wrong

B

Root guard is used to protect the root bridge election by restricting ports that could become root ports, not to speed up edge-port forwarding.

C

Loop guard prevents alternate or root ports from becoming designated in the absence of BPDUs, which is unrelated to fast forwarding on host-facing ports.

D

UDLD aggressive mode detects and disables unidirectional links on point-to-point switch links, not for end-device connections.

When would these options actually be correct?

B

If the question asked about preventing a specific port from becoming a root port while allowing other ports to function normally, or if it focused on maintaining control over the Spanning Tree topology in a mixed environment, then root guard would be the correct answer.

C

If the question asked about a feature that prevents loops on inter-switch links while allowing edge ports to transition quickly, loop guard would be the correct answer. For example, a scenario where a network administrator needs to ensure stability on trunk links while maintaining fast transitions on access ports would fit this context.

D

If the question asked about a scenario where a network administrator needs to ensure that unidirectional links are detected and that the switch takes immediate action to disable the port, then UDLD aggressive would be the correct answer.

Why candidates pick the wrong answer

B

Students might confuse root guard with PortFast because both are STP-related features configured on specific ports. However, root guard is about protecting the root bridge election, not about speeding up port transition.

C

Students may think loop guard helps with fast convergence because it prevents loops, but it is a protective mechanism, not an acceleration feature. The name 'guard' might mislead them into thinking it is similar to PortFast.

D

Students might associate UDLD with link issues and think it could help with fast forwarding, but UDLD is about link integrity, not STP state acceleration. The term 'aggressive' might imply a fast action, but it is unrelated to PortFast.

75
Drag & Dropmedium

Drag and drop the following steps into the correct order to configure inter‑VLAN routing between VLANs 10 and 20, using a router‑on‑a‑stick with VLAN 99 as the native VLAN on the trunk link.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5
6Step 6
7Step 7

Why this order

The correct order is: first create VLANs on the switch to define the VLAN database. Second, assign switch ports to the appropriate VLANs so that end hosts are placed in their correct broadcast domains. Third, configure the switch port facing the router as an 802.1Q trunk and set the native VLAN to 99 – this allows tagged traffic from multiple VLANs to traverse a single link while matching the native VLAN on both sides.

Fourth, enable the router's physical interface (no shutdown) so that subinterfaces can pass traffic. Next, create subinterfaces for each data VLAN, specifying the correct 802.1Q encapsulation and IP address for each VLAN's default gateway. Finally, configure the native VLAN subinterface with the native keyword to ensure that untagged frames from the trunk are handled correctly and that the native VLAN is explicitly defined on the router.

Page 1 of 19

Page 2