๐ŸŽ„

CertoMetrics - 9% OFF Special Discount Offer - Ends In:

0d 00h 00m 00s
Coupon code: SALE2026

Cisco Certified Network Associate (CCNA) (200-301)

Get full access to the updated question bank and confidently prepare for your exam.

Vendor

Cisco

Certification

Enterprise

Content

462 Qs

Status

Verified

Updated

6 hours ago

Test the Practice Engine

Experience our interactive testing environment with free demo questions

Launch Free Demo
Best Value Bundle

Premium Bundle

Complete Success Suite

$108 $69

Save $39 Instantly

  • โœ“
    Full PDF + Interactive Engine Everything you need to pass
  • โœ“
    All Advanced Question Types Drag & Drop, Hotspots, Case Studies
  • โœ“
    Priority 24/7 Expert Support Direct line to certification leads
  • โœ“
    90 Days Free Priority Updates Stay current as exams change

Success Metric

98.4% Pass Rate

Verified by 15k+ Students
Secure Checkout
Popular

Standard Simulation

Practice Engine

$59

One-Time Payment

  • Web-Based (Zero Install)
  • Real Testing Environment Virtual & Practice Modes
  • Interactive Engine Drag & Drop, Hotspots
  • 60 Days Free Updates

Compatible with All Devices

Chrome
Verified Secure Checkout

Basic Tier

PDF Study Guide

$49

Digital Access

  • โœ“ Exam Questions (PDF)
  • โœ“ Mobile Friendly
  • โœ“ 60 Days Updates
Download Free Sample PDF

Verified 93-Question Preview (200-301)

Secure Checkout

Verified Community

The CertoMetrics Standard.

Recommend the #1 platform for verified Cisco certification resources.

Success Network

Help a Colleague Succeed.

Invite a peer to get their own updated 200-301 prep kit.

Exam Overview

The Cisco Certified Network Associate (CCNA) 200-301 certification is a globally recognized, foundational credential that validates your essential skills in installing, configuring, operating, and troubleshooting medium-sized routed and switched networks. Earning your CCNA demonstrates a comprehensive understanding of core networking concepts, including network fundamentals, IP connectivity, IP services, security fundamentals, and automation. This certification is crucial for entry-level networking professionals and those looking to advance their careers, providing a solid base for more specialized Cisco certifications. It significantly enhances your professional credibility, opening doors to diverse career opportunities in the ever-evolving IT infrastructure landscape, proving your capability to manage modern networks effectively.

Questions

100-120

Passing Score

Approximately 825/1000

Duration

120 Minutes

Difficulty

Intermediate

Level

Associate

Skills Measured

Network Fundamentals (e.g., TCP/IP, addressing, network components)
Network Access (e.g., VLANs, EtherChannel, Wireless LANs)
IP Connectivity (e.g., IP routing, OSPF, first-hop redundancy protocols)
IP Services (e.g., NAT, NTP, DHCP, SNMP, QoS)
Security Fundamentals (e.g., VPNs, access control lists, wireless security)

Career Path

Target Roles

Network Administrator Junior Network Engineer Network Support Technician

Common Questions

Is the material up to date?

Yes. We update our question bank weekly to match the latest Cisco standards. You get free updates for 90 days.

What format do I get?

You get instant access to both the **PDF** (for reading) and our **Premium Test Engine** (for exam simulation).

Is there a guarantee?

Absolutely. If you fail the 200-301 exam using our materials, we offer a full money-back guarantee.

When do I get the download?

Instantly. The download link is available in your dashboard immediately after payment is confirmed.

Free Study Guide Samples

Previewing updated 200-301 bank (93 Questions).

QUESTION 1

Guidelines

Please use the "Tasks" and "Topology" tabs to complete this lablet.

Topology

 

 

Task

Complete the tasks below:

Task 1

All relevant ports are pre-configured as 802. Iq trunks.

โ€ข Configure SW-I port EO/O to only permit VLANs 5 and 6.

Task 2

โ€ข Configure SW-I and SW-2 ports e0/1 using VLAN 77 as the native

VI-AN.

Task 3

โ€ข Configure SW-2 port EO/2 to only permit VLAN 6.

Task 4

Using LACP, create a Port Channel on SW-3 and SW-4.

 

 

A
B
C
D

Correct Option: Check Explanation

To complete the tasks for your lab, here are the Cisco IOS commands required for each configuration step based on your provided topology.

 

Task 1: SW-1 Port e0/0 (VLAN Truncation)

To permit only specific VLANs on a trunk port, you must set the allowed list.

Bash

SW-1(config)# interface e0/0

SW-1(config-if)# switchport trunk allowed vlan 5,6

 

Task 2: Native VLAN Configuration

Both ends of the trunk must have the same native VLAN to prevent mismatch errors.

Bash

# On SW-1

SW-1(config)# interface e0/1

SW-1(config-if)# switchport trunk native vlan 77

# On SW-2

SW-2(config)# interface e0/1

SW-2(config-if)# switchport trunk native vlan 77

 

Task 3: SW-2 Port e0/2 (VLAN Truncation)

Similar to Task 1, restrict the trunk to only VLAN 6.

Bash

SW-2(config)# interface e0/2

SW-2(config-if)# switchport trunk allowed vlan 6

 

Task 4: LACP Port Channel (SW-3 and SW-4)

To create the Po34 interface using LACP, you must group the interfaces on both switches.

Configuration for SW-3:

Bash

SW-3(config)# interface range e0/0 - 1

SW-3(config-if-range)# channel-group 34 mode active

Configuration for SW-4:

Bash

SW-4(config)# interface range e0/0 - 1

SW-4(config-if-range)# channel-group 34 mode active

QUESTION 2

Which SDN plane forwards user-generated traffic?

A
policy plane
B
data plane
C
management plane
D
control plane

Correct Option: B

โœ… Option B (Correct)
Reasoning: The data plane, also known as the forwarding plane, is responsible for the actual forwarding of user-generated traffic packets through the network devices. It executes the forwarding decisions that are programmed by the control plane. When a packet arrives at a network device, the data plane consults its forwarding information base (FIB) or switching table to determine the outgoing interface and forwards the packet.

โŒ Why the other choices are incorrect:

  • Option A is incorrect: The policy plane defines high-level business rules and network policies. It does not directly forward user traffic; instead, it influences the configuration and decisions made by the control plane.
  • Option C is incorrect: The management plane is used for managing network devices (e.g., configuration, monitoring, troubleshooting, software updates). It handles management traffic, not user-generated data traffic.
  • Option D is incorrect: The control plane is responsible for making forwarding decisions. It builds and maintains routing tables, MAC address tables, and other forwarding information, then programs these decisions into the data plane. It does not directly forward user-generated traffic.



Reference: https://www.cisco.com/c/en/us/products/collateral/cloud-systems-management/application-centric-infrastructure/white-paper-c11-739971.html
QUESTION 3

Which technology is appropriate for communication between an SDN controller and applications running over the network?

A
REST API
B
OpenFlow
C
NETCONF
D
Southbound API

Correct Option: A

The question asks for the technology used for communication between an SDN controller and applications. This interaction defines the Northbound interface in an SDN architecture.
  • REST API (A): Representational State Transfer (REST) APIs are widely adopted as the primary technology for Northbound communication in SDN. They provide a flexible, stateless, and standardized way for applications to interact with the SDN controller, enabling them to request network services, retrieve network state, and apply policies.
  • OpenFlow (B): OpenFlow is a Southbound interface protocol. It defines the communication between the SDN controller and the forwarding plane of network devices (switches and routers), allowing the controller to program network device behavior. It is not used for communication with applications.
  • NETCONF (C): Network Configuration Protocol (NETCONF) is a protocol used for configuring network devices. While an SDN controller might use NETCONF for device management (acting as a form of Southbound interface), it is not the typical or primary technology used for applications to communicate with the controller for higher-level network service requests.
  • Southbound API (D): This is a category of APIs that describes communication between the SDN controller and network devices, not between the controller and applications. Therefore, it is incorrect for the specified purpose.
Therefore, REST API is the most appropriate technology for Northbound communication between an SDN controller and applications.

Reference: https://www.cisco.com/c/en/us/solutions/collateral/data-center-virtualization/application-centric-infrastructure/white-paper-c11-739989.html (While this reference focuses on ACI, it discusses Northbound APIs for SDN applications. General SDN concepts are covered in CCNA 200-301 curriculum related to network programmability and automation).
QUESTION 4

What is the function of generative Al in network operations?

A
It computes optimal data storage solutions.
B
It deploys network firmware updates.
C
It disable unused services.
D
It creates synthetic network configurations

Correct Option: D

Generative AI excels at creating new content, data, or models based on learned patterns. In network operations, this capability can be leveraged to generate synthetic network configurations for various purposes, such as testing new designs, simulating network behavior, or even assisting in the initial drafting of complex configurations. This directly aligns with the 'generative' aspect of the technology.

Option A describes optimization, not generation. Option B involves automation of deployment, which is a different function. Option C is a task of network management or optimization, not creation. Therefore, creating synthetic network configurations is the most fitting function of generative AI in this context.



Reference: https://blogs.cisco.com/tag/ai
QUESTION 5

Which HTTP verb generates a 200 (OK) response when a REST-based API call is successful?

A
PATCH
B
POST
C
GET
D
DELETE

Correct Option: C

โœ… Option C (Correct)
Reasoning: The HTTP GET method is primarily used to request data from a specified resource. A successful GET request consistently returns a 200 (OK) status code, indicating that the request has succeeded and the requested data is included in the response body.

โŒ Why the other choices are incorrect:

  • Option A is incorrect: The PATCH method applies partial modifications to a resource. A successful PATCH typically returns 200 (OK) if the response body contains the updated resource, or 204 (No Content) if the response body is empty. While it can return 200, it's not its sole or most distinct success code.
  • Option B is incorrect: The POST method submits an entity to a specified resource, often resulting in a change of state or creation of a new resource. A successful POST most commonly returns 201 (Created) when a new resource is created. It can return 200 (OK) if the action resulted in a non-resource representation or if the operation was successful without creating a new resource, but 201 is more characteristic for resource creation.
  • Option D is incorrect: The DELETE method removes the specified resource. A successful DELETE typically returns 204 (No Content) if no response body is needed, or 200 (OK) if the response includes an entity describing the status (e.g., confirmation of deletion). Like PATCH, 200 is possible but 204 is also very common.



Reference: https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/200
QUESTION 6

Which configuration management mechanism uses TCP port 22 by default when communicating with managed nodes?

A
Chef
B
Python
C
Ansible
D
Puppet

Correct Option: C

โœ… Option C (Correct)

Reasoning: Ansible is an agentless configuration management tool that relies on standard SSH (Secure Shell) to communicate with managed nodes. SSH, by default, uses TCP port 22 for secure remote access and command execution. This allows Ansible to push configurations, execute modules, and gather facts without requiring a special agent installed on the target systems.

โŒ Why the other choices are incorrect:

  • Option A is incorrect: Chef uses a client-server model. The Chef client communicates with the Chef server primarily over HTTP/HTTPS (typically ports 80/443), not SSH (TCP port 22).
  • Option B is incorrect: Python is a programming language, not a configuration management mechanism itself. While Python can be used to write scripts for configuration management, it does not inherently define a default communication port for node management in the way a dedicated tool like Ansible does.
  • Option D is incorrect: Puppet also operates using a client-server architecture. Puppet agents communicate with the Puppet master primarily over HTTPS, typically using TCP port 8140 by default, not SSH (TCP port 22).


Reference: https://docs.ansible.com/ansible/latest/getting_started/getting_started_connection.html
QUESTION 7

What is represented by the word "R20" within this JSON schema?

A
value
B
array
C
object
D
key

Correct Option: A

Correct Answer: D

QUESTION 8

Drag and drop the characteristic from the left onto the device type on the right Not all characteristics are used.

Technical Scenario Diagram
Answer Canvas

The provided mapping correctly identifies the distinct roles and characteristics of Access Points (APs) and Wireless LAN Controllers (WLCs) in a modern wireless network architecture.

Access Point

  • โœ… 'ability to boost a wi-fi signal' matches with -> Access Point
    Reasoning: Access Points can operate in different modes, including repeater or mesh mode. In these modes, an AP can extend the range of an existing wireless network, effectively boosting the Wi-Fi signal in areas with poor coverage.
  • โœ… 'interconnects wireless LANs to a wired network' matches with -> Access Point
    Reasoning: This is the primary function of an Access Point. It acts as a bridge, translating frames between the wireless (IEEE 802.11) medium and the wired Ethernet (IEEE 802.3) medium, allowing wireless clients to access the LAN.

Wireless LAN Controller

  • โœ… 'uses templates to implement QOS configuration' matches with -> Wireless LAN Controller
    Reasoning: A WLC centralizes the management of multiple APs. It utilizes templates and profiles to enforce consistent policies, such as Quality of Service (QoS) for voice and video traffic, across the entire wireless infrastructure.
  • โœ… 'supplies user connection data within a device group' matches with -> Wireless LAN Controller
    Reasoning: The WLC serves as a central aggregation point for monitoring data. It collects statistics, client connection information, and performance metrics from all managed APs (which form a device group), providing administrators with a holistic view of the network's health.



Reference: https://www.cisco.com/c/en/us/td/docs/wireless/controller/8-5/Enterprise-Mobility-8-5-Design-Guide/Enterprise_Mobility_8-5_Design_Guide.html
QUESTION 9

Which interface condition is occurring in this output?

 

 

A
broadcast storm
B
queueing
C
bad NIC
D
duplex mismatch

Correct Option: B

The output shows "Total output drops: 100". Output drops occur when the interface's transmit queue overflows because it cannot send packets fast enough, indicating congestion or queueing on the interface. The "Output queue: 50/300" further shows active queue usage.

Why other options are incorrect:
* A: broadcast storm: A broadcast storm would typically show very high input rates and potentially input errors or CPU utilization, which are not present. The input rate is 0 packets/sec.
* C: bad NIC: A faulty NIC usually presents with various input/output errors (CRC, frame, overrun), interface resets, or link instability, none of which are observed.
* D: duplex mismatch: Duplex mismatch, especially with full-duplex on one side and half-duplex on the other, would result in high collision counts (e.g., collisions, late collisions, deferred), which are all zero in this output.



Reference: https://www.cisco.com/c/en/us/support/docs/ios-nx-os-software/ios-software-releases-120/10542-output-drops.html
QUESTION 10

Which port type is used on a WLC using distribution system ports, with heavy traffic expected, when maximum resilience is required?

A
QoS trust
B
PoE
C
LAG
D
trunk

Correct Option: C

โœ… Option C (Correct)

Reasoning: A Link Aggregation Group (LAG), also known as EtherChannel, bundles multiple physical Ethernet links into a single logical link. This technology directly addresses the requirements for 'heavy traffic' by providing increased bandwidth through load balancing across the bundled links, and 'maximum resilience' by offering redundancy. If one physical link within the LAG fails, traffic can seamlessly switch to the remaining operational links, ensuring continuous connectivity to the distribution system.

โŒ Why the other choices are incorrect:

  • Option A: QoS trust is incorrect: QoS trust is a configuration setting that dictates whether a port trusts the Quality of Service markings (e.g., DSCP or CoS) of incoming traffic. While essential for traffic prioritization, it is not a port *type* that inherently provides increased bandwidth or link redundancy for heavy traffic and resilience.
  • Option B: PoE is incorrect: Power over Ethernet (PoE) delivers electrical power along with data over Ethernet cabling. WLCs themselves typically receive power via an AC adapter and their uplink ports generally do not use PoE. PoE is primarily used to power devices like access points or IP phones, not to enhance WLC uplink performance or resilience.
  • Option D: trunk is incorrect: A trunk port is configured to carry traffic for multiple VLANs across a single link. While WLC distribution system ports are almost always configured as trunk ports to support various WLAN VLANs, 'trunk' describes the *mode* of operation for VLAN tagging, not a mechanism for bundling multiple physical links for bandwidth aggregation and fault tolerance. A single trunk port, by itself, does not provide the 'maximum resilience' and 'heavy traffic' handling *through aggregation* that LAG does.


Reference: https://www.cisco.com/c/en/us/td/docs/wireless/controller/8-5/config-guide/b_cg85/Configuring_LAG.html
QUESTION 11

Refer to the exhibit.

 

 

An engineer must document all Wi-Fi services on a new wireless LAN controller. The Wi-Fi SSID " Office_WLan " has Layer 2 Security. What is determined by this configuration?

A
There is a strong mutual authentication used between NAC and the network devices using x.509 standard.
B
There is an extra layer of security that ensures only authorized devices with known MAC addresses connect to the network.
C
There is a robust security mechanism configured to protect against various Layer 2 and Layer 3 attacks.
D
There is Galois cache algorithm configured that provides strong encryption and authentication.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 12


Refer to the exhibit. A packet sourced from 10.10.10.1 is destined for 10.10.8.14. What is the subnet mask of the destination route?

A
255.255.254.0
B
255.255.255.240
C
255.255.255.248
D
255.255.255.252

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 13



Refer to the exhibit. User traffic originating within site B is failing to reach an application hosted on IP address 192.168.0.10, which is located within site
A
The traffic is blocked by an implicit deny in an ACL on router2.
B
The lack of a default route prevents delivery of the traffic.
C
The traffic to 192.168.0.10 requires a static route to be configured in router1.
D
The default gateway for site B is configured incorrectly.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 14



Refer to the exhibit. After configuring a new static route on the CPE, the engineer entered this series of commands to verify that the new configuration is operating normally. When is the static default route installed into the routing table?

A
when a route to 203.0.113.1 is learned via BGP
B
when 203.0.113.1 is no longer reachable as a next hop
C
when the default route learned over external BGP becomes invalid
D
when the default route learned over external BGP changes its next hop

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 15


Refer to the exhibit. A static route must be configured on R14 to forward traffic for the 172.21.34.0/25 network that resides on R86. Which command must be used to fulfill the request?

A
ip route 172.21.34.0 255.255.255.192 10.73.65.65
B
ip route 172.21.34.0 255.255.255.128 10.73.65.66
C
ip route 172.21.34.0 255.255.255.0 10.73.65.65
D
ip route 172.21.34.0 255.255.128.0 10.73.65.64

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 16

What are the two main capabilities of tunnel mode in IPsec site-to-site VPNs ? (Choose two.)

A
it secures only the data field in the packet.
B
It authenticates the data field in original packet.
C
It transmits with the original packet header visible.
D
It encrypts the complete IP packet with the data field.
E
It inserts a new IPsec header with new IP address.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 17

What does the HTTP PATCH method perform in REST-based APIs?

A
It performs a license update.
B
It replaces a resource.
C
It partially modifies the values of a resource.
D
It creates a new response request.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 18

What is the benefit of using private IPv4 addressing?

A
to be routable over an external network
B
to shield internal network devices from external access
C
to provide reliable connectivity between like devices
D
to enable secure connectivity over the Internet

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 19

 

Refer to the exhibit. During initial configuration testing, the Windows workstation PC1 cannot connect with the 172.16.2.0 /24 network. Which set of actions corrects the configuration?

A
Change the IP address to 172.16.1.6 and change the DNS servers to 172.16.1.12 and 172.16.1.13.
B
Change the IP address to 172.16.1.9 and change the DNS server to 172.16.1.12 only.
C
Change the IP address to 172.16.1.9 and change the default gateway to 172.16.1.7.
D
Change the IP address to 172.16.1.6 and change the subnet mask to 255.255.255.248.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 20

What does the term "split MAC" refer to in a wireless architecture?

A
leverages two APs to handle control and data traffic
B
combines the management and control functions from the data-forwarding functions
C
uses different MAC addresses for 2.4 GHz and 5 GHz bands on the same AP
D
divides data link layer functions between the AP and WLC

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 21

Drag and drop the characteristic from the left onto the device type on the right Not all characteristics are used.

 

 

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 22

Which interface on the WLC is limited to one when LAG is in use?

A
virtual
B
AP-manager
C
trunk
D
service

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 23

 



Refer to the exhibit. After configuring a new static route on the CPE, the engineer entered this series of commands to verify that the new configuration is operating normally. When is the static default route installed into the routing table?

 

A
when a route to 203.0.113.1 is learned via BGP
B
when 203.0.113.1 is no longer reachable as a next hop
C
when the default route learned over external BGP becomes invalid
D
when the default route learned over external BGP changes its next hopBottom of Form

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 24

Which level of severity must be set to get informational syslogs?

A
critical
B
notice
C
alert
D
debug

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 25

Which two actions are performed by the Weighted Random Early Detection mechanism? (Choose two.)

A
It supports protocol discovery.
B
It guarantees the delivery of high-priority packets.
C
|t mitigates congestion by preventing the queue from filling up.
D
It drops lower-priority packets before it drops higher-priority packets.
E
It identifies different flows with a high level of granularity.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 26

Which authentication method requires the user to provide a physical attribute to authenticate successfully?

A
password
B
biometric
C
multifactor
D
certificate

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 27

What does the HTTP PATCH method perform in REST-based APIs?

A
It performs a license update.
B
It replaces a resource.
C
It creates a new response request.
D
|t partially modifies the values of a resource.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 28

What is a characteristic of an SSID in wireless networks?

A
prevents network sniffing tools from obtaining data
B
requires the use of PoE for functionality
C
may contain letters, numbers, and special characters
D
allows easy file sharing between endpoints

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 29

How do servers connect to the network in a virtual environment?

A
a software switch on a hypervisor that is physically connected to the network
B
a virtual switch that links to an access point that is physically connected to the network
C
a cable connected to a physical switch on the network
D
wireless to an access point that is physically connected to the network

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 30


Refer to the exhibit. An engineer is bringing up a new circuit to the MPLS provider on the Gi0/1 interface of Router 1. The new circuit uses eBGP and learns the route to VLAN25 from the BGP path.
What is the expected behavior for the traffic flow for route 10.10.13.0/25?

A
Traffic to 10.10.13.0/25 is load balanced out of multiple interfaces.
B
Traffic to 10.10.13.0/25 is asymmetrical.
C
Route 10.10.13.0/25 is updated in the routing table as being learned from interface Gi0/1.
D
Route 10.10.13.0/25 learned via the Gi0/0 interface remains in the routing table.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 31

Drag and drop the traffic types from the left onto the QoS delivery mechanisms on the right.
 

 

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 32

Drag and drop the attack-mitigation techniques from the left onto the types of attack that they mitigate on the right.
Select and Place:
 

 

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 33

Which security program element involves installing badge readers on data-center doors to allow workers to enter and exit based on their job roles?

A
role-based access control
B
physical access control
C
multifactor authentication
D
biometrics

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 34

What are the two main capabilities of tunnel mode in IPsec site-to-site VPNs ? (Choose two.)

A
It inserts a new IPsec header with new IP address.
B
encrypts the complete IP packet with the data field.
C
It secures only the data field in the packet.
D
It authenticates the data field in original packet.
E
It transmits with the original packet header visible.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 35

Refer to the exhibit. Users will be using a preconfigured secret key and SSID and must have a secured key hashing algorithm configured. The AAA server must not be used for the

user authentication method. Which action completes the task?

A
Enable AutoConfig iPSK.
B
Set CCMP128(AES).
C
Configure PSK Format HEX with key string.
D
Configure PSK-SHA2.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 36

What is the role of disaggregation in controller-based networking?

A
It streamlines traffic handling by assigning individual devices to perform either Layer 2 or Layer 3 functions.
B
It summarizes the routes between the core and distribution layers of the network topology.
C
It enables a network topology to quickly adjust from a ring network to a star network.
D
It divides the control-plane and data-plane functions.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 37

Which role does machine learning play in identifying network security breaches?

A
It identifies patterns indicating intrusions.
B
It monitors for outdated software.
C
It assigns security clearance levels.
D
It dictates security policy updates.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 38

Drag and drop the VLAN port modes from the left onto the descriptions on the right.
 

 

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 39

Why was the RFC 1918 address space defined?

A
preserve public IPv6 address space
B
reduce instances of overlapping IP addresses
C
conserve public IPv4 addressing
D
support the NAT protocol

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 40

Which type of wired port is required when an AP offers one unique SSID, passes client data and management traffic, and is in autonomous mode?

A
trunk
B
access
C
default
D
LAG

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 41

Refer to the exhibit. Which functionalities will this SSID have while being used by wireless clients?

A
decreases network security against air sniffing attacks and discourages the use of complex passwords
B
decreases network security against offline dictionary attacks and encourages easy access to the network
C
increases network security against offline dictionary attacks and discourages time-consuming brute force attacks
D
increases network security against man in the middle attacks and discourages denial of service attacks

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 42

What is an enhancement implemented in WPA3?

A
defends against deauthentication and disassociation attacks
B
uses TKIP and per-packet keying
C
employs PKI and RADIUS to identify access points
D
applies 802.1x authentication and AES-128 encryption

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 43

What is a characteristic of cloud-based network topology?

A
onsite network services are provided with physical Layer 2 and Layer 3 components
B
wireless connections provide the sole access method to services
C
services are provided by a public, private, or hybrid deployment
D
Physical workstations are configured to share resources

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 44

Drag and drop the TCP and UDP characteristics from the left onto the corresponding protocols on the right.

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 45

What describes multifactor authentication in security password policies?

A
It enables a cryptographic link between a public key and the owning entity.
B
It uses an application programming interface to access the data of the operating system.
C
It applies biological characteristics to authenticate and access the system.
D
It uses factors from at least two different categories to identify all users.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 46

Refer to the exhibit. An OSPF neighbor relationship must be configured using these guidelines:
โœ‘ R1 is only permitted to establish a neighbor with R2.
โœ‘ R1 will never participate in DR elections.
โœ‘ R1 will use a router-id of 10.1.1.1.
Which configuration must be used?

A
Option A
B
Option B
C
Option C
D
Option D

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 47

What describes a northbound REST API for SDN?

A
application-facing interface for SNMP GET requests
B
application-facing interface for GET, POST, PUT, and DELETE methods
C
network-element-facing interface for the control and data planes
D
network-element-facing interface for GET, POST, PUT, and DELETE methods

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 48

What are two purposes of HSRP? (Choose two.)

A
It passes configuration information to hosts in a TCP/IP network.
B
It helps hosts on the network to reach remote subnets without a default gateway.
C
It improves network availability by providing redundant gateways.
D
It groups two or more routers to operate as one virtual router.
E
It provides a mechanism for diskless clients to autoconfigure their IP parameters during boot.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 49

How does encryption protect the wireless network?

A
via a policy to prevent unauthorized users from communicating on the wireless network
B
via an algorithm to change wireless data so that only the access point and client understand it
C
via specific ciphers to detect and prevent zero-day network attacks
D
via integrity checks to identify wireless forgery attacks in the frame

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 50

Refer to the exhibit. What must be configured to enable WPA2 with AES encryption and fast roaming with a preshared key length of 64 characters?

A
Enable CCMP256 encryption, PSK format HEX, and enable fast transition with FT PSK management.
B
Enable AES encryption, PSK format ASCII, and enable fast transition with FT 802.1x key management.
C
Enable TKIP encryption, PSK format ASCII, and enable fast transition with FT PSK management.
D
Enable GCMP256 encryption, PSK format HEX, and enable fast transition with CCKM key management.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 51

 

 

Refer to the exhibit. To which device does Router send packets that are destined to host 10.10.13.165?

A
Router2
B
Router3
C
Router4
D
Router5

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 52


Refer to the exhibit. An engineer is asked to configure router R1 so that it forms an OSPF single-area neighbor relationship with R2. Which command sequence must be implemented to configure the router?

A
router ospf 100 network 10.0.0.0 0.0.0.252 area 0 network 10.0.1.0 0.0.0.255 area 0
B
router ospf 100 network 10.0.0.0 0.0.0.3 area 0 network 10.0.2.0 255.255.255.0 area 0
C
router ospf 10 network 10.0.0.0 0.0.0.3 area 0 network 10.0.1.0 0.0.0.255 area 0
D
router ospf 10 network 10.0.0.0 0.0.0.3 area0 network 10.0.2.0 0.0.0.255 area 0

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 53

Refer to the exhibit. 

Which configuration for RTR-1 denies SSH access from PC-1 to any RTR-1 interface and allows all other traffic?

A
Option A
B
Option B
C
Option C
D
Option D

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 54

What is a characteristic of a Layer 2 switch?

A
transmits exclusively at half duplex
B
tracks the number of active TCP connections
C
uses routers to create collision domains
D
Offers link bundling to servers

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 55

How are API keys used to enforce rate limiting?

A
to specify the type of data format the client prefers to receive
B
to uniquely identify each client application
C
to encrypt data sent in the API request
D
to define the network path the API request should take

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 56

Which benefit does network automation provide for IT administrators?

A
It reduces network-management overhead by avoiding the need for network segmentation.
B
It provides a set of tools that simplify endpoint virtualization.
C
It defines a framework for user authentication, authorization, and accounting on the network.
D
It simplifies network management by generating a logical view of the network.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 57

Drag and drop the functions of AAA supporting protocols from the left onto the protocols on the right.
Select and Place:

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 58

 



Refer to the exhibit. A network engineer must configure the WLC to allow only DHCP and DNS packets for User1 and User2. Which configuration must be used?

 

A
Enable Web Authentication for 802.1X standard in the Layer 2 Security configuration
B
Enable Fallback Policy with MAC filtering under the Layer 3 Security configuration
C
Enable Web policy and Authentication in the Layer 3 Security configuration.
D
Enable Web Authentication under the AAA Server configuration on the WLAN.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 59

How does MAC learning function?

A
associates the MAC address with the port on which it is received
B
drops received MAC addresses not listed in the address table
C
restricts ports to a maximum of 10 dynamically-leaned addresses
D
increases security on the management VLAN

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 60

Which two functions are performed by the core layer in a three-tier architecture? (Choose two.)

A
Inspect packets for malicious activity.
B
Police traffic that is sent to the edge of the network.
C
Provide uninterrupted forwarding service.
D
Provide direct connectivity for end user devices.
E
Ensure timely data transfer between layers.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 61

Refer to the exhibit. The WI-FI SSID "Office_WLan" has Layer 2 Security configured with MAC filtering enabled. What additional security is provided by this specific feature?

A
There is a strong mutual authentication used between NAC and the network devices using x.509 standard
B
All data frames exchanged between the client and the access point are encrypted.
C
There is Galois cache algorithm configured that provides strong encryption and authentication.
D
There is an extra layer of security that ensures only authorized devices with known MAC addresses connect to the network

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 62

What is an Ansible inventory?

A
device with Ansible installed that manages target devices
B
unit of Python code to be executed within Ansible
C
file that defines the target devices upon which commands and tasks are executed
D
collection of actions to perform on target devices, expressed in YAML format

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 63

Refer to the exhibit. Packets received by the router from BGP enter via a serial interface at 209.165.201.1. Each route is present within the routing table. Which interface is used to forward traffic with a destination IP of 10.1.1.19?

A
F0/1
B
F0/3
C
F0/0
D
F0/4

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 64

An application in the network is being scaled up from 300 servers to 600. Each server requires 3 network connections to support production, backup, and management traffic. Each connection resides on a different subnet. The router configuration for the production network must be configured first using a subnet in the 10.0.0.0/8 network. Which command must be configured on the interface of the router to accommodate the requirements and limit wasted IP address space?

A
ip address 10.10.10.1 255.255.254.0
B
ip address 10.10.10.1 255.255.252.0
C
ip address 10.10.10.1 255.255.240.0
D
ip address 10.10.10.1 255.255.255.240

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 65

Refer to the exhibit. An engineer configured the New York router with static routes that point to the Atlanta and Washington sites. Which command must be configured on the Atlanta and Washington routers so that both sites are able to reach the Lo2 Interface on the New York router?

A
ipv6 route ::/0 Serial 0/0/0
B
ipv6 route 0.0.0.0 0.0.0.0 Serial 0/0/0
C
ipv6 route ::/0 Serial 0/0/1
D
ipv6 route::/0 2000::2

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 66

Drag and drop the characteristic from the left onto the IPv6 address type on the right.

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 67

A Cisco engineer is configuring a factory-default router with these three passwords:

  • The user EXEC password for console access is p4ssw0rd1.
  • The user EXEC password for Telnet access is s3cr3t2.
  • The password for privileged EXEC mode is priv4t3p4ss.

Which command sequence must the engineer configure?

A
enable secret priv4t3p4ss ! line con 0 password p4ssw0rd1 ! line vty 0 15 password s3cr3t2
B
enable secret priv4t3p4ss ! line con 0 password p4ssw0rd1 login ! line vty 0 15 password s3cr3t2 login
C
enable secret priv4t3p4ss ! line con 0 password login p4ssw0rd1 ! line vty 0 15 password login s3cr3t2 login
D
enable secret privilege 15 priv4t3p4ss ! line con 0 password p4ssw0rd1 login ! line vty 0 15 password s3cr3t2 login

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 68

What is another title for the 802.11 primary name associated with a WLAN?

A
Wi-Fi
B
RSSI
C
PCN
D
SSID

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 69

An engineer is updating the configuration on a switch. To meet updated security standards, Telnet must be replaced with encrypted connections, and the modulus size must be increased to 2048 bits Which two commands must the engineer configure on the switch? (Choose two.)

A
transport input ssh
B
crypto key generate rsa usage-keys
C
crypto key generate rsa general-keys modulus 1024
D
transport input all
E
crypto key generate rsa modulus 2048

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 70

What is a characteristic of frame switching?

A
overwrites the known source MAC address in the address table
B
sends the frame back to the source to verify availability
C
sends a retransmission request when a new frame is received
D
forwards known destinations to the destination port

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 71

Drag and drop the statements about networking from the left onto the corresponding networking types on the right.
Select and Place:
 

 

Technical Scenario Diagram
Interactive Canvas Locked

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 72


Refer to the exhibit. Which prefix does Router1 use for traffic to Host A?

A
10.10.10.0/28
B
10.10.13.0/25
C
10.10.13.144/28
D
10.10.13.208/29

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 73

Which WAN topology has the highest degree of reliability?

A
point-to-point
B
full mesh
C
hub-and-spoke
D
router-on-a-stick

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 74



Refer to the exhibit. What is the next-hop IP address for R2 so that PC2 reaches the application server via EIGRP?

A
192.168.30.1
B
10.10.10.6
C
10.10.10.5
D
192.168.20.1

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 75

What is a characteristic of a Layer 2 switch?

A
responsible for sending data in a particular sequence
B
uses the data link layer for communications
C
uses routers to create collision domains
D
limits MAC address learning for faster transmission

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 76

Refer to the exhibit. Which interface does a packet take to reach the destination address of 10.10.10.14?

A
Serial 0/0
B
FastEthernet 0/0
C
FastEthernet 0/1
D
FastEthernet 0/2

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 77

Which two values or settings must be entered when configuring a new WLAN in the Cisco Wireless LAN Controller GUI? (Choose two.)

A
profile name
B
SSID
C
IP address of one or more access points
D
management interface settings QoS settings

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 78

 

 

Refer to the exhibit. With a reference bandwidth of 100 Gb on all routers, which path does router Y use to get to network 192.168.1.0/24?

A
router C > D > A > F
B
router E > B > F
C
router E > F
D
router C > D > A > B > F

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 79

Which IPsec mode provides encapsulation and encryption of the entire original IP packet on a site-to site VPN?

A
IPsec tunnel mode with AH
B
IPsec tunnel mode with ESP
C
IPsec transport mode with AH
D
IPsec transport mode with ESP

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 80

 



Refer to the exhibit. Which entry is the longest prefix match for host IP address 192.168.10.5?

 

A
1
B
2
C
3
D
4

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 81

How do generative Al models support network design testing?

A
They enhance data packet delivery speeds.
B
They adapt network configurations based on test results.
C
They compute optimal data storage solutions.
D
They deploy network firmware updates

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 82


Refer to the exhibit. The image server and client A are running an application that transfers an extremely high volume of data between the two. An engineer is configuring a dedicated circuit between R1 and R2. Which set of commands must the engineer apply to the routers so that only traffic between the image server and client A is forces to use the new circuit?

A
R1(config)#ip route 10.10.13.10 255.255.255.255 10.10.10.6 R2(config)#ip route 192.168.0.100 255.255.255.255 10.10.10.5
B
R1(config)#ip route 10.10.13.10 255.255.255.128 10.10.10.6 R2(config)#lp route 192.168.0.100 255.255.255.0 10.10.10.5
C
R1(config)#ip route 10.10.13.10 255.255.255.252 10.10.10.6 R2(config)#tp route 192.168.0.100 255.255.255.252 10.10.10.5
D
R1(config)#ip route 10.10.13.10 255.255.255.255 10.10.10.2 R2(config)#ip route 192.168.0.100 255.255.255.255 10.10.10.1

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 83

Refer to the exhibit. Which address will the client contact to renew their IP address when the current lease expires?

A
192.168.25.103
B
192.168.25.100
C
192.168.25.254
D
192.168.25.1

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 84

Which two tasks support the physical access control element of a security program? (Choose two.)

A
Implement badge access to critical locations.
B
Develop slideshows about new security regulations.
C
Run a workshop on corporate security policies.
D
Deploy a video surveillance system.
E
Disperse information about how to protect the organizationโ€™s confidential data.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 85

How must a switch interface be configured when an AP is in FlexConnect mode?

A
PoE port
B
access port
C
trunk port
D
EtherChannel

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 86

What is a characteristic of RSA?

A
It is a private-key encryption algorithm.
B
It is a public-key cryptosystem.
C
It requires both sides to have identical keys.
D
It uses preshared keys for encryption.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 87



Refer to the exhibit. An engineer booted a new switch and applied this configuration via the console port. Which additional configuration must be applied to allow administrators to authenticate directly to global configuration mode via Telnet using a local username and password?

A
R1(config)#username admin -R1(config-if)#line vty 0 4 -R1(config-line)#password p@ss1234R1(config-line)#transport input telnet
B
R1(config)#username admin privilege 15 secret p@ss1234R1(config-if)#line vty 0 4 -R1(config-line)#login local
C
R1(config)#username admin secret p@ss1234R1(config-if)#line vty 0 4 -R1(config-line)#login local -R1(config)#enable secret p@ss1234
D
R1(config)#username admin -R1(config-if)#line vty 0 4 -R1(config-line)#password p@ss1234

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 88

Which factor must be considered during the implementation of an IPsec VPN?

A
In |Psec tunnel mode, only the IP payload is encrypted.
B
In IPsec tunnel mode, the entire original IP datagram is encrypted.
C
|Psec transport mode leaves the Layer 4 header unencrypted for inspection.
D
|Psec transport mode increases GRE tunnel security over tunnel mode.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 89

Refer to the exhibit. What are the two steps an engineer must take to provide the highest encryption and authentication using domain credentials from LDAP? (Choose two.)

A
Select Static-WEP + 802.1X on Layer 2 Security.
B
Select PSK under Authentication Key Management.
C
Select WPA Policy with TKIP Encryption.
D
Select 802.1X from under Authentication Key Management.
E
Select WPA+WPA2 on Layer 2 Security.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 90

What is the function of a northbound API?

A
It supports distributed processing for configuration.
B
It relies on global provisioning and configuration.
C
It upgrades software and restores files.
D
It provides a path between an SDN controller and network applications.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 91

What is the function of a northbound API in a network architecture that separates the control and application layers?

A
It provides a path between an SDN controller and network applications.
B
It relies on global provisioning and configuration.
C
It supports distributed processing for configuration.
D
It upgrades software and restores files.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 92

How does machine learning improve the detection of unauthorized network access?

A
It dictates security policy updates.
B
It monitors for outdated software.
C
It assigns security clearance levels.
D
It identifies patterns indicating intrusions.

Premium Solution Locked

Unlock all 462 answers & explanations

QUESTION 93

Which HTTP status code is returned after a successful REST API request?

A
200
B
301
C
404
D
500

Premium Solution Locked

Unlock all 462 answers & explanations

Full Question Bank Locked

You have reached the end of the free study guide preview. Upgrade now to unlock all 462 questions and the full simulation engine.

Customer Reviews

5 / 5
(15,000+ verified)
5
100%
4
0%
3
0%
2
0%
1
0%

Global Community Feedback

DM

David M.

Verified Student

"The practice engine is incredible. It feels exactly like the real testing environment and helped me build so much confidence."

SJ

Sarah J.

Premium Member

"The PDF is very well organized and the explanations for the answers are actually helpful, not just random text."

MC

Michael C.

Verified Buyer

"I was skeptical, but the content is high quality and definitely worth the price. I passed on my first try!"

Need Assistance?

Our expert support team is available to assist you with any inquiries about our exam materials.

Contact Support
Average response: < 24 Hours

Get Exam Updates

Subscribe to receive instant notifications on new questions and exclusive flash sales.

* Join 5,000+ students getting weekly updates

Support Chat โ— Active Now

๐Ÿ‘‹ Hi! How can we help you pass your exam?

Enter email to start chatting