Courseiva

ENCOR 350-401 (350-401) — Questions 751825

1175 questions total · 16pages · All types, answers revealed

Page 10

Page 11 of 16

Page 12
751
Multi-Selectmedium

Which two statements about using Python for network automation with Cisco devices are true? (Choose two.)

Select 2 answers
A.Netmiko is a Python library that simplifies SSH connections to network devices by handling authentication and session establishment.
B.NAPALM can be used to retrieve operational state data from network devices using a vendor-agnostic API.
C.Python scripts for network automation are compiled into native machine code for faster execution.
D.The netmiko library can only be used with Cisco IOS devices.
E.Paramiko is a higher-level library than Netmiko and provides additional automation features.
AnswersA, B

Correct because Netmiko is built on Paramiko and provides a higher-level interface for SSH connections, including automatic handling of device prompts and authentication.

Why this answer

The correct answers highlight key aspects of Python automation: Netmiko simplifies SSH management by handling authentication and connection, and NAPALM provides a vendor-agnostic API for retrieving operational data. The incorrect options misrepresent Python's role: Python does not compile to native machine code (it is interpreted), netmiko is not limited to Cisco (it supports many vendors), and paramiko is lower-level than Netmiko, not the other way around.

752
Matchingmedium

Drag and drop each IGMP version on the left to its matching feature on the right.

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

Concepts
Matches

No leave message; querier elected by lowest IP address on subnet; Membership report suppression used to reduce traffic

Supports explicit leave message and querier election using lowest IP address; Leave group message triggers group-specific query

Supports source-specific group membership (include/exclude lists) and SSM

Why these pairings

IGMPv1 has no leave message and uses a querier election based on IP address; IGMPv2 adds explicit leave and querier election using lowest IP; IGMPv3 adds source filtering (include/exclude) and supports SSM.

753
Multi-Selecteasy

Which two statements about OSPF neighbor states are true? (Choose two.)

Select 2 answers
A.The 2-Way state indicates that both routers have seen their own router ID in the neighbor's hello packet.
B.The Full state indicates that the routers have synchronized their LSDBs and are fully adjacent.
C.In the ExStart state, routers exchange Database Description packets containing LSA headers.
D.In the Exchange state, routers send Link State Requests and receive Link State Updates.
E.The Down state is the final state when a neighbor is unreachable.
AnswersA, B

Correct because 2-Way confirms bidirectional communication, which is required before proceeding to database synchronization.

Why this answer

The 2-Way state indicates that both routers have received each other's hello packets, confirming bidirectional communication. Option B is correct because the Full state means that the routers have exchanged all LSAs and their databases are synchronized. Option C is incorrect because the ExStart state is where the master/slave relationship is established, not where LSAs are exchanged.

Option D is incorrect because the Loading state is where LSRs and LSUs are exchanged, not the Exchange state. Option E is incorrect because the Down state is the initial state before any hello packets are received.

754
Matchingmedium

Drag and drop each ERSPAN version on the left to its correct header format on the right.

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

Concepts
Matches

GRE header with 6-byte header containing session ID.

GRE header with 8-byte header containing session ID and timestamp.

4-byte field identifying the ERSPAN session.

4-byte field providing precise packet arrival time.

4-byte field used for packet ordering and deduplication.

Why these pairings

ERSPAN Type II (v1) uses a 6-byte GRE header with a 4-byte session ID; ERSPAN Type III (v2) uses an 8-byte GRE header with a 4-byte session ID and a 4-byte timestamp/index.

755
Multi-Selectmedium

Which two statements about Cisco TrustSec security group tags (SGTs) are true? (Choose two.)

Select 2 answers
A.Security group tags are 16-bit values used to identify groups of users or devices.
B.Security group tags are equivalent to VLAN IDs and are used for Layer 2 segmentation.
C.Security group tags are assigned to endpoints by the RADIUS server during 802.1X authentication.
D.Security group tags can be propagated between network devices using the SXP protocol.
E.Security group tags are used to encrypt traffic between endpoints in the same group.
AnswersA, D

Correct because SGTs are 16-bit identifiers in Cisco TrustSec.

Why this answer

SGTs are 16-bit values used to classify traffic for policy enforcement, and they can be propagated via SXP or inline tagging. Option A is correct because SGTs are indeed 16-bit. Option D is correct because SXP is a common method for SGT propagation without hardware modification.

Option B is incorrect because SGTs are not VLAN IDs (VLANs use 12-bit IDs). Option C is incorrect because SGTs are not assigned by RADIUS during 802.1X authentication (that is for dACLs or VLAN assignment). Option E is incorrect because SGTs are not used for encryption; they are for policy enforcement.

756
Drag & Dropmedium

Drag and drop the steps of YANG push periodic vs on-change subscription into the correct order, from first to last.

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

Why this order

The correct order starts with defining the subscription parameters, then configuring the push method (periodic or on-change), followed by establishing the telemetry session, sending updates, and finally the collector processing the data.

757
Matchingmedium

Drag and drop each IPsec mode on the left to its matching header usage on the right.

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

Concepts
Matches

New IP header + ESP header + original IP packet + ESP trailer

Original IP header + ESP header + payload + ESP trailer

New IP header + AH header + original IP packet

Original IP header + AH header + payload

UDP encapsulation of ESP packet

Why these pairings

Tunnel mode encrypts original IP header and adds new IP header; transport mode encrypts only payload; ESP tunnel adds ESP header between new and original IP; AH transport authenticates payload and original header; AH tunnel authenticates entire new packet.

758
MCQmedium

An architect is designing an SD-Access fabric for a campus that requires high availability. The design must ensure that if one fabric edge node fails, endpoints can be re-homed to another edge node without manual intervention. Which feature should be implemented?

A.Anycast Layer 2 gateway
B.HSRP
C.VRRP
D.GLBP
AnswerA

Anycast L2 gateway provides high availability by allowing multiple edge nodes to serve the same gateway.

Why this answer

Anycast Layer 2 gateway is the correct feature because it allows multiple fabric edge nodes to share the same anycast IP and MAC address for a given VLAN. If one edge node fails, endpoints simply continue using the same gateway address, and their traffic is automatically forwarded to a surviving edge node via the fabric's underlay routing, requiring no manual intervention or protocol convergence.

Exam trap

Cisco often tests the misconception that traditional FHRPs like HSRP or VRRP are sufficient for high availability in SD-Access, but the trap is that these protocols introduce failover delays and active/standby limitations, whereas SD-Access requires anycast Layer 2 gateway for instantaneous, protocol-free re-homing across multiple active edge nodes.

How to eliminate wrong answers

Option B (HSRP) is wrong because HSRP is a First Hop Redundancy Protocol that relies on a single active/standby pair with a virtual IP and MAC; failure of the active node triggers a failover that can take seconds and requires endpoints to wait for ARP updates or gratuitous ARP, which is not automatic re-homing without manual intervention in an SD-Access fabric. Option C (VRRP) is wrong for the same reason as HSRP—it is an open-standard FHRP with similar active/standby behavior and failover delays, not designed for the anycast-based, seamless mobility of SD-Access. Option D (GLBP) is wrong because GLBP provides load balancing across multiple gateways but still uses a virtual IP and MAC per group; it does not provide the anycast Layer 2 gateway functionality that allows endpoints to be re-homed to any edge node without address changes or protocol state transitions.

759
Drag & Dropmedium

Drag and drop the steps of using a Python REST API call to retrieve device configuration via Cisco DNA Center into the correct order, from first to last.

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

Why this order

The process begins with authenticating to the DNA Center API to obtain a token. Then, the device UUID is retrieved using a GET request to the device list endpoint. Next, a GET request is sent to fetch the running configuration for that device.

The JSON response is parsed to extract the configuration text. Finally, the configuration is saved to a local file.

760
Drag & Dropmedium

Drag and drop the steps of 802.11r Fast BSS Transition (FT) roaming steps into the correct order, from first to last.

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

Why this order

802.11r FT roaming uses a key hierarchy to reduce latency. The client first discovers the target AP via scanning. The client sends an FT Authentication request containing a Mobility Domain Identifier (MDIE) and R0KH-ID.

The target AP responds with an FT Authentication response with key data. The client then sends an FT Association request, and the AP completes the process with an FT Association response.

761
Drag & Dropmedium

Drag and drop the steps of using Ansible to push a new VLAN configuration to a Cisco IOS switch into the correct order, from first to last.

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

Why this order

First, define the VLAN ID and name in a variable file. Then, write a playbook task using ios_vlan module. Next, specify the connection parameters (ansible_network_os, ansible_user, etc.) in the inventory.

After that, run the playbook to apply the configuration. Finally, verify the VLAN on the switch using show vlan.

762
Multi-Selecthard

Which three statements about QoS trust boundaries and marking are true? (Choose three.)

Select 3 answers
A.By default, Cisco Catalyst switches trust the CoS value received from connected devices.
B.The 'mls qos trust cos' command configures the switch to trust the CoS marking on incoming packets.
C.The trust boundary can be extended to an IP phone using CDP, allowing the phone to mark traffic.
D.Marking at Layer 2 uses DSCP values in the IP header.
E.A switch can re-mark packets by using a policy map with the 'set' command applied to an interface.
AnswersB, C, E

Correct because this command sets the trust state to CoS on a switch port.

Why this answer

The trust boundary defines where the device trusts or re-marks QoS markings. Typically, the boundary is at the access layer switch. The 'mls qos trust' command sets trust.

By default, Cisco switches do not trust CoS or DSCP; they must be configured. Trust can be extended to IP phones via CDP. Marking can be done at Layer 2 (CoS) or Layer 3 (DSCP).

763
Drag & Dropmedium

Drag and drop the steps of SD-WAN policy creation and push via vManage into the correct order, from first to last.

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

Why this order

Policy creation starts with defining the policy in vManage GUI, then attaching it to a specific topology or group, committing the configuration, which triggers vManage to push the policy to vSmart, and finally vSmart distributes the policy to the edge devices.

764
Matchingmedium

Drag and drop each infrastructure hardening technique on the left to its matching configuration command on the right.

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

Concepts
Matches

interface range GigabitEthernet0/1-24 ; shutdown

banner login ^C Authorized access only ^C

ip ssh version 2

no cdp run

service password-encryption

Why these pairings

Disable unused ports with 'interface range ... shutdown'; set login banner with 'banner login'; enable SSH with 'ip ssh version 2'; disable CDP with 'no cdp run'; set password encryption with 'service password-encryption'.

765
Drag & Dropmedium

Drag and drop the steps of OpenConfig interface counters subscription and decode into the correct order, from first to last.

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

Why this order

The process begins by subscribing to the OpenConfig path, receiving the encoded data, decoding it using the YANG model, extracting counters, and then analyzing the results.

766
Drag & Dropmedium

Drag and drop the steps of SPAN session on EtherChannel member ports into the correct order, from first to last.

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

Why this order

SPAN on EtherChannel requires configuring the session, specifying source ports (member or port-channel), setting destination, and enabling.

767
Drag & Dropmedium

Drag and drop the steps of IP SLA HTTP operation for application monitoring into the correct order, from first to last.

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

Why this order

First, the HTTP operation is defined with the target URL. Then optional parameters like HTTP method or version are set. The operation is configured to monitor HTTP response.

Next, the operation is scheduled. Finally, verification is done to confirm the operation is active.

768
Matchingmedium

Match each network device to its primary function.

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

Concepts
Matches

Forwards packets between different networks

Forwards frames within the same network

Controls traffic based on security policies

Manages access points centrally

Distributes traffic across multiple servers

Why these pairings

Correct matches: Router forwards packets between networks, Switch forwards frames within a network, Firewall filters traffic. Common confusions include swapping these roles.

769
Matchingmedium

Match each Cisco switch security feature to its function.

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

Concepts
Matches

Limits MAC addresses on a port

Filters untrusted DHCP messages

Validates ARP packets

Prevents IP spoofing

Limits broadcast/multicast traffic

Why these pairings

Port Security limits MAC addresses per port to prevent MAC flooding. DHCP Snooping filters DHCP messages to block rogue servers. Dynamic ARP Inspection validates ARP packets using DHCP snooping entries to prevent spoofing.

IP Source Guard filters IP traffic based on the binding table to prevent IP spoofing. Common confusions include swapping these functions, e.g., assigning ARP spoofing prevention to Port Security or MAC flooding prevention to DHCP Snooping.

770
Multi-Selecthard

Which three statements about IP SLA UDP jitter operation are true? (Choose three.)

Select 3 answers
A.UDP jitter operation measures one-way delay, jitter, and packet loss between source and destination.
B.The IP SLA responder must be enabled on the destination device for UDP jitter to function correctly.
C.The UDP jitter operation can be configured with a codec type (e.g., G.711) to simulate specific voice traffic patterns.
D.The 'num-packets' command in UDP jitter configuration sets the total number of probes to be sent over the entire operation lifetime.
E.UDP jitter operation can measure TCP window scaling and throughput.
AnswersA, B, C

Correct because the UDP jitter operation calculates these metrics using timestamps in the probe packets.

Why this answer

UDP jitter operation measures one-way delay, jitter, and packet loss by sending timestamped UDP packets. It requires the IP SLA responder on the destination. The operation can be configured with a codec type to simulate voice traffic.

The 'num-packets' command sets the number of packets in each probe. The operation does not measure TCP throughput.

771
Drag & Dropmedium

Drag and drop the steps of CoPP class-map match criteria and rate-limit application into the correct order, from first to last.

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

Why this order

CoPP configuration requires defining class-maps first, then policy-map with police statements, then applying to control-plane. The order ensures proper traffic classification and rate-limiting.

772
Drag & Dropmedium

Drag and drop the steps of Docker container networking with bridge mode into the correct order, from first to last.

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

Why this order

The order reflects the default bridge network creation, container attachment, IP assignment, and then communication with the outside world via NAT.

773
Multi-Selectmedium

Which two statements about SD-WAN control plane components are true? (Choose two.)

Select 2 answers
A.The vSmart controller is responsible for distributing OMP routes and policies to all edge devices in the SD-WAN fabric.
B.The vBond orchestrator is responsible for authenticating and onboarding vEdge and cEdge routers into the SD-WAN overlay.
C.The vManage controller is the primary control plane component that establishes OMP sessions with all edge routers.
D.vEdge and cEdge routers are both control plane devices that participate in OMP route exchange.
E.The OMP protocol runs between vManage and vSmart to exchange routing information and policy updates.
AnswersA, B

Correct because vSmart is the centralized control plane that uses OMP to advertise routes and apply policies.

Why this answer

The vSmart controller is the centralized control plane that distributes OMP routes and policies, while the vBond orchestrator handles authentication and NAT traversal. vManage is the management plane, not a control plane component. vEdge and cEdge are data plane devices. The OMP protocol runs between vSmart and edge devices, not between vManage and vSmart.

774
Drag & Dropmedium

Drag and drop the steps of IP SLA DNS lookup operation setup into the correct order, from first to last.

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

Why this order

First, define the IP SLA operation with type dns. Then specify the target DNS server and the domain name to resolve. Optionally set the DNS source interface or timeout.

Next, schedule the operation. Finally, verify the DNS resolution success and response time.

775
MCQhard

A network engineer runs the following command on Router R1: R1# show ip eigrp neighbors detail EIGRP-IPv4 Neighbors for AS(100) H Address Interface Hold Uptime SRTT RTO Q Seq (sec) (ms) Cnt Num 0 192.168.1.2 Gi0/0 13 00:12:34 12 100 0 45 Version 2.0/2.0, Retrans: 0, Retry: 0, Maxseq: 0 Prefixes: 3 Topology ids: 0 Authentication: None Topology: base (0x0) Based on this output, what can be concluded?

A.The neighbor is using EIGRP version 1.
B.The neighbor has advertised 3 prefixes to R1.
C.There is a high number of retransmissions indicating packet loss.
D.The neighbor is using MD5 authentication.
AnswerB

The 'Prefixes: 3' field indicates the number of prefixes learned from this neighbor.

Why this answer

The output shows 'Prefixes: 3' under the neighbor details, which indicates that the neighbor has advertised exactly three prefixes to R1. This is a direct interpretation of the 'show ip eigrp neighbors detail' command, where the 'Prefixes' field lists the number of routes learned from that neighbor.

Exam trap

Cisco often tests the ability to read the 'show ip eigrp neighbors detail' output carefully, where candidates may confuse the 'Prefixes' field with the number of interfaces or ignore the 'Retrans' and 'Authentication' fields, leading them to select incorrect options based on assumptions rather than the explicit data shown.

How to eliminate wrong answers

Option A is wrong because the output shows 'Version 2.0/2.0', meaning both R1 and the neighbor are running EIGRP version 2, not version 1. Option C is wrong because the 'Retrans: 0' and 'Retry: 0' fields indicate zero retransmissions and retries, which means no packet loss is occurring. Option D is wrong because the output explicitly states 'Authentication: None', so MD5 authentication is not configured.

776
Drag & Dropmedium

Drag and drop the steps of QoS policing with two-rate three-color marker (RFC 2698) into the correct order, from first to last.

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

Why this order

RFC 2698 two-rate three-color marker uses committed and peak token buckets. The correct order is: first check the committed bucket (A). If tokens are available, mark the packet green (B).

If not, check the peak bucket (C). If tokens are available, mark the packet yellow (D). If no tokens are available, mark the packet red and drop (E).

This sequence ensures proper conformance classification.

777
MCQmedium

An enterprise is deploying a virtual router (vRouter) as part of its NFV infrastructure. The engineer needs to ensure that the vRouter can handle a sudden spike in traffic without dropping packets. The vRouter is running on a KVM hypervisor. What should the engineer configure to guarantee CPU resources for the vRouter during peak demand?

A.Enable memory ballooning on the vRouter VM.
B.Configure CPU pinning and CPU reservation for the vRouter VM.
C.Enable DPDK on the vRouter's virtual NICs.
D.Set the vRouter VM to use NUMA node pinning.
AnswerB

Correct because CPU pinning dedicates specific cores to the VM and reservation guarantees minimum CPU, preventing contention.

Why this answer

CPU pinning binds the vRouter's virtual CPUs to specific physical cores, preventing other processes from using them, while CPU reservation guarantees a minimum amount of CPU capacity. Together, they ensure deterministic CPU availability during traffic spikes, preventing packet drops due to resource contention on the KVM hypervisor.

Exam trap

Cisco often tests the distinction between resource optimization (DPDK, NUMA) and resource guarantee (pinning, reservation), leading candidates to pick DPDK because it is associated with high performance, even though it does not guarantee CPU availability under contention.

How to eliminate wrong answers

Option A is wrong because memory ballooning adjusts VM memory dynamically, not CPU resources, and can actually degrade performance by reclaiming memory under pressure. Option C is wrong because DPDK accelerates packet processing by bypassing the kernel network stack, but it does not guarantee CPU resources; it requires CPU isolation (like pinning) to work effectively. Option D is wrong because NUMA node pinning optimizes memory locality and latency but does not guarantee CPU capacity; it is a topology-aware placement, not a resource reservation mechanism.

778
Multi-Selecthard

Which two statements about IP Source Guard are true? (Choose two.)

Select 2 answers
A.IP Source Guard uses the DHCP snooping binding table to validate the source IP address of packets received on a port.
B.IP Source Guard can be configured with port security to provide additional MAC address filtering.
C.IP Source Guard only works with DHCP-assigned IP addresses, not static IP addresses.
D.IP Source Guard filters traffic based on the destination MAC address.
E.IP Source Guard requires 802.1X authentication to be enabled on the port.
AnswersA, B

Correct because IPSG relies on the DHCP snooping database to determine allowed source IPs.

Why this answer

IP Source Guard (IPSG) is a security feature that filters IP traffic on untrusted Layer 2 ports based on the DHCP snooping binding table or static IP source bindings. It can be configured with or without port security. IPSG is typically applied on access ports facing end devices.

Option C is incorrect because IPSG can be used with both static and DHCP-assigned IP addresses. Option D is incorrect because IPSG filters traffic at Layer 3 (IP), not Layer 2. Option E is incorrect because IPSG does not require 802.1X authentication; it can operate independently.

779
Matchingmedium

Drag and drop each PPDIOO phase on the left to its matching activity on the right.

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

Concepts
Matches

Establish organizational requirements and high-level architecture

Assess existing network and identify gaps for new requirements

Create detailed network design and configuration templates

Deploy the design using change management and verification

Maintain network health through monitoring and troubleshooting

Why these pairings

Prepare establishes requirements; Plan identifies network needs; Design creates the detailed design; Implement deploys the design; Operate manages day-to-day; Optimize improves performance.

780
Drag & Dropmedium

Drag and drop the steps of micro-segmentation via SGT policy application into the correct order, from first to last.

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

Why this order

Micro-segmentation starts with classifying endpoints into SGTs based on identity, then defining SGT-to-SGT policies (permit/deny). The policies are enforced at the fabric edge, where the SGT is propagated in the VXLAN header, and traffic is filtered accordingly. Finally, monitoring ensures compliance.

781
Matchingmedium

Drag and drop each SNMPv3 security level on the left to its matching protection description on the right.

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

Concepts
Matches

No authentication, no encryption

Authentication, no encryption

Authentication and encryption

Authentication using SHA, no encryption

Authentication and AES encryption

Why these pairings

noAuthNoPriv uses no authentication or encryption; authNoPriv uses authentication but no encryption; authPriv uses both.

782
Matchingmedium

Drag and drop each gRPC method on the left to its matching subscription type on the right.

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

Concepts
Matches

stream telemetry data from device

list supported gRPC services and methods

retrieve a single snapshot of data

create, update, or delete configuration data

retrieve a single snapshot via subscription

Why these pairings

Subscribe is used for streaming telemetry subscriptions, Capabilities retrieves supported RPCs, Get retrieves data, and Set modifies data.

783
Drag & Dropmedium

Drag and drop the steps of the SD-Access fabric deployment sequence into the correct order, from first to last.

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

Why this order

SD-Access deployment begins with underlay configuration for physical connectivity, then overlay setup with LISP/VXLAN, followed by policy definition and integration with DNA Center for automation and assurance.

784
Matchingmedium

Match each First Hop Redundancy Protocol (FHRP) to its description.

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

Concepts
Matches

Cisco proprietary, active/standby

Open standard, active/standby

Cisco proprietary, active/active load balancing

Obsolete, uses ICMP advertisements

Another name for ICMP Router Discovery

Why these pairings

FHRPs provide default gateway redundancy. HSRP is Cisco proprietary, active/standby, preemption disabled by default. VRRP is open standard, preemption enabled.

GLBP allows load balancing among multiple routers.

785
Drag & Dropmedium

Drag and drop the steps of EIGRP named mode configuration steps into the correct order, from first to last.

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

Why this order

Named mode starts with the router eigrp <virtual-name> command, then enters address-family configuration, configures the network, and optionally adjusts timers or other parameters. Finally, the configuration is verified.

786
MCQmedium

An enterprise is migrating from a traditional MPLS WAN to Cisco SD-WAN. The network team has deployed vEdge routers at all branch offices and a vSmart controller in the data center. The engineer configures a centralized control policy to influence path selection based on cost and latency. After the policy is activated, the engineer notices that some branches are not receiving the updated policy and are still using the default best-path selection. The vSmart is reachable from all branches, and the vEdge routers show that they are connected to the vSmart. What is the most likely reason for this issue?

A.The vEdge routers have not been rebooted after the policy change.
B.The control policy is not attached to the appropriate site list or VPN list.
C.The OMP graceful restart timer has expired, causing the vEdge to ignore the policy.
D.The BFD sessions between vEdge and vSmart are flapping.
AnswerB

Correct because a control policy must be associated with a list to be applied; otherwise, it is not enforced.

Why this answer

In Cisco SD-WAN, centralized control policies must be explicitly attached to a site list or VPN list to define which devices or traffic the policy applies to. If the policy is not attached to the appropriate list, the vSmart controller will not push the policy to the targeted vEdge routers, causing them to continue using the default OMP best-path selection (based on administrative distance and cost). The fact that the vEdge routers are connected to the vSmart confirms the issue is with policy application, not reachability.

Exam trap

Cisco often tests the concept that a control policy must be attached to a site list or VPN list to be effective, and candidates mistakenly assume that simply configuring the policy on the vSmart is sufficient for it to apply to all devices.

How to eliminate wrong answers

Option A is wrong because vEdge routers do not require a reboot to apply control policy changes; policies are pushed dynamically via OMP from the vSmart and take effect immediately upon activation. Option C is wrong because the OMP graceful restart timer affects route convergence during a vSmart failure, not the application of a control policy; a vEdge will not ignore a policy due to this timer expiring. Option D is wrong because BFD sessions are used for data-plane path liveliness detection between vEdge routers, not for control-plane communication between vEdge and vSmart; flapping BFD sessions would not prevent policy receipt.

787
Drag & Dropmedium

Drag and drop the steps of SD-Access underlay provisioning via LAN Automation into the correct order, from first to last.

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

Why this order

LAN Automation begins with the seed device discovering new switches via CDP, then the new switches are automatically configured with the underlay template, including PnP and DHCP. After configuration, the switches join the fabric underlay, and finally, the automation process verifies connectivity and updates the inventory.

788
Drag & Dropmedium

Drag and drop the steps of KVM VM provisioning via virsh CLI into the correct order, from first to last.

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

Why this order

KVM provisioning via virsh begins with defining the VM XML configuration. Then, the VM is started using virsh start. Next, the VM's console is accessed to complete OS installation.

After that, the VM is shut down gracefully. Finally, the VM is restarted for production use.

789
Drag & Drophard

Drag and drop the steps of troubleshooting a failed EtherChannel bundle into the correct order, from first to last.

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

Why this order

First, verify that the port-channel interface exists. Then check that physical ports are in the same VLAN and have matching configurations. Next, confirm that the channel-group mode is compatible on all ports.

After that, inspect LACP or PAgP counters for errors. Finally, check for hardware or cabling issues if all else fails. This systematic approach isolates configuration errors before hardware faults.

790
Drag & Dropmedium

Drag and drop the steps of OSPF neighbor adjacency formation into the correct order, from first to last.

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

Why this order

OSPF neighbors transition through Down, Init, 2-Way, ExStart, Exchange, Loading, and Full states. The correct order begins with the router sending Hello packets (Down to Init), then receiving a Hello reply (Init to 2-Way), electing DR/BDR if needed (2-Way to ExStart), exchanging database description packets (ExStart to Exchange), and finally synchronizing databases (Loading to Full).

791
MCQmedium

A network engineer is using the Cisco IOS-XE REST API to configure a static route. The engineer sends a PATCH request to 'https://device/restconf/data/Cisco-IOS-XE-native:native/ip/route/ip-route-interface-forwarding-list=192.168.1.0,255.255.255.0,GigabitEthernet1' with a JSON payload containing the route details. The device responds with a 204 No Content status. What does this response indicate?

A.The request was successful, and the static route has been configured.
B.The request failed because the route already exists; the engineer must use PUT instead.
C.The device does not support PATCH; the engineer must use POST to update the route.
D.The payload was empty; the engineer must include the route parameters in the body.
AnswerA

Correct because 204 No Content indicates success with no response body; the route is configured.

Why this answer

A 204 No Content response indicates that the request was successful, but there is no content to return. In RESTCONF, a successful PATCH request that updates an existing resource typically returns 204 No Content. The engineer should verify that the route was applied by retrieving the configuration.

792
MCQeasy

What is the maximum hop count for EIGRP?

A.100
B.255
C.15
D.Unlimited
AnswerB

EIGRP uses a maximum hop count of 255, which is encoded as a single octet in the route metric field, with 255 specifically reserved to indicate an unreachable route. This satisfies the constraint of limiting routing loops within an autonomous system, as EIGRP’s feasible successor logic and Diffusing Update Algorithm (DUAL) prevent counting to infinity beyond this hard limit.

Why this answer

EIGRP uses a maximum hop count of 255 to prevent routing loops, though in practice it relies on its DUAL algorithm and feasible successor logic rather than hop count as a primary loop-prevention mechanism. This value is hard-coded in the protocol and cannot be changed, unlike RIP's 15-hop limit.

Exam trap

Cisco often tests the EIGRP hop count limit of 255 to catch candidates who confuse it with RIP's 15-hop limit or mistakenly think EIGRP has no hop count restriction due to its advanced metric-based loop prevention.

How to eliminate wrong answers

Option A is wrong because 100 is not a hop count limit used by any dynamic routing protocol; it may be confused with the administrative distance of EIGRP internal routes (which is 90). Option C is wrong because 15 is the maximum hop count for RIP (RIPv1 and RIPv2), not EIGRP. Option D is wrong because EIGRP does have a finite hop count limit of 255; it is not unlimited, even though the protocol primarily uses composite metrics and DUAL for loop-free path selection.

793
Drag & Dropmedium

Drag and drop the steps of named ACL modification using sequence numbers into the correct order, from first to last.

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

Why this order

Sequence numbers allow editing named ACLs without re-entering all entries. The correct order is: view current entries, insert a new entry at a specific sequence, then verify the updated ACL.

794
Drag & Dropmedium

Drag and drop the steps of IP SLA scheduling with frequency and lifetime into the correct order, from first to last.

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

Why this order

First, the IP SLA operation is created. Then the frequency (how often to run) is configured. The lifetime (how long to run) is set.

The operation is scheduled to start. Finally, the schedule is verified.

795
MCQhard

A network team is using Ansible with the iosxr_config module to push configuration changes to a Cisco IOS-XR router. The playbook uses the REST API via the 'ansible_connection: restconf' setting. The engineer notices that the changes are applied but the playbook reports 'changed: false' even when changes were made. What is the most likely reason for this behavior?

A.The REST API on the router does not return a proper response, so Ansible cannot determine if a change occurred.
B.The engineer should use the 'uri' module with the REST API instead of the 'iosxr_config' module.
C.The playbook is missing the 'gather_facts: no' directive, causing Ansible to skip change detection.
D.The router requires a commit operation after configuration changes, and Ansible does not perform that.
AnswerB

Correct because 'iosxr_config' is for CLI-based connections; for RESTCONF, the 'uri' module or a dedicated RESTCONF module should be used.

Why this answer

When using RESTCONF, the Ansible module may not detect changes if the module does not properly parse the response from the device. However, in this scenario, the issue is that the 'iosxr_config' module is designed for CLI-based connections, not RESTCONF. The correct approach is to use a module like 'iosxr_restconf' or a generic 'uri' module.

The 'ansible_connection: restconf' is not a valid connection type for Ansible; Ansible uses 'network_cli' or 'ansible.netcommon.restconf' connection plugin. The engineer should use the 'uri' module or a dedicated RESTCONF module.

796
Multi-Selecthard

Which three statements about NFV and its relationship with SDN are true? (Choose three.)

Select 3 answers
A.NFV can leverage SDN to dynamically create and manage network paths between VNFs.
B.SDN can provide the network abstraction that allows NFV to decouple network functions from underlying hardware.
C.NFV and SDN are independent technologies that can be deployed separately or together.
D.SDN is a prerequisite for implementing NFV in any network environment.
E.NFV requires SDN to perform service function chaining.
AnswersA, B, C

Correct because SDN provides programmable network control, enabling automated connectivity between VNFs.

Why this answer

NFV and SDN are complementary but independent technologies. NFV focuses on virtualizing network functions, while SDN separates the control and data planes for centralized network control. They can be used together to enhance flexibility and automation.

Option A is correct because NFV can use SDN to provide dynamic network connectivity between VNFs. Option B is correct because SDN can provide the network abstraction needed for NFV. Option C is correct because they are independent; one can be deployed without the other.

Option D is incorrect because SDN is not a requirement for NFV; NFV can work with traditional networking. Option E is incorrect because NFV does not require SDN for service chaining; it can use other methods like policy-based routing.

797
MCQhard

A network engineer configures SNMPv3 on a Cisco router with the following: 'snmp-server group GRP v3 priv', 'snmp-server user usr GRP v3 auth sha pass1 priv aes 128 pass2'. The NMS is configured with the same credentials. However, the NMS cannot perform SNMP walks. The engineer notices that the router's SNMP agent is responding to queries from other devices. What is the most likely cause?

A.The user's authentication key is too short.
B.The group 'GRP' is not associated with a view that allows read access to the MIB tree.
C.The NMS is using SNMPv2c community strings instead of SNMPv3.
D.The router's SNMP engine ID has changed since the user was created.
AnswerB

Correct because without a view, the group may have no access; 'snmp-server group GRP v3 priv read VIEW' is needed.

Why this answer

The 'snmp-server group GRP v3 priv' command creates an SNMPv3 group with privacy (encryption) but does not associate it with any view. By default, SNMPv3 groups have no read, write, or notify access unless a view is explicitly configured. Without a view that permits read access to the MIB tree, the NMS cannot perform SNMP walks, even though the router responds to other queries (e.g., from different groups or versions).

Exam trap

Cisco often tests the misconception that configuring SNMPv3 with authentication and privacy alone is sufficient for access, when in fact a view must be explicitly assigned to the group to allow read operations.

How to eliminate wrong answers

Option A is wrong because the authentication key length is not the issue; SHA keys can be any length, and Cisco truncates or hashes them to the required size. Option C is wrong because the NMS is configured with the same SNMPv3 credentials, and the router is responding to other devices, indicating SNMPv3 is functional; the problem is access control, not version mismatch. Option D is wrong because an engine ID change would cause authentication failures (the user's credentials would be invalidated), but the router is still responding to queries, so the engine ID is consistent.

798
Multi-Selectmedium

Which three statements about FlexVPN are true? (Choose three.)

Select 3 answers
A.FlexVPN uses IKEv2 as its underlying key exchange protocol.
B.FlexVPN supports both site-to-site and remote access VPN topologies.
C.FlexVPN requires a dedicated AAA server for all authentication functions.
D.FlexVPN can use digital certificates or pre-shared keys for authentication.
E.FlexVPN uses NHRP to dynamically discover spoke routers and establish direct tunnels.
AnswersA, B, D

Correct because FlexVPN is built on IKEv2, leveraging its features like EAP, mobility, and NAT traversal.

Why this answer

FlexVPN is a Cisco implementation based on IKEv2, supporting hub-and-spoke, spoke-to-spoke, and remote access VPNs with centralized key management.

799
Matchingmedium

Drag and drop each Layer 2 attack on the left to its matching mitigation feature on the right.

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

Concepts
Matches

Port security

DHCP snooping

Dynamic ARP Inspection

BPDU guard

Disable Dynamic Trunking Protocol

Why these pairings

MAC flooding is mitigated by port security; DHCP starvation by DHCP snooping; ARP spoofing by DAI; STP manipulation by BPDU guard; VLAN hopping by disabling DTP.

800
Matchingmedium

Drag and drop each Ansible connection type on the left to its matching protocol on the right.

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

Concepts
Matches

SSH-based CLI connection to network devices

SSH-based NETCONF session for XML configuration

HTTP/HTTPS-based API connection (e.g., NX-API, RESTCONF)

Runs modules on the Ansible control node without SSH to target

Pure Python SSH implementation (fallback when native SSH is unavailable)

Why these pairings

network_cli uses SSH for CLI commands, netconf uses SSH for NETCONF XML, httpapi uses HTTP/HTTPS for REST APIs (e.g., NX-API).

801
Drag & Dropmedium

Drag and drop the steps of DNA Center network discovery and device sync into the correct order, from first to last.

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

Why this order

Discovery starts with defining the discovery scope, running the discovery, adding discovered devices to inventory, syncing device details, and finally assigning devices to a site.

802
MCQeasy

A network engineer executes the following command on Router R2: R2# show ip sla configuration 1 IP SLAs Infrastructure Engine-II Entry number: 1 Owner: admin Tag: Type of operation to perform: icmp-echo Target address: 192.168.2.10 Source address: 192.168.2.1 Type Of Service parameter: 0x0 Request size (ARR data portion): 28 Operation timeout (milliseconds): 5000 Frequency (seconds): 60 Next Scheduled Start Time: Start Time already passed Group Scheduled : FALSE Life (seconds): Forever Entry Ageout (seconds): never Recurring (Starting Everyday, Starting Time: 00:00:01) Status of entry (SNMP RowStatus): Active Threshold (milliseconds): 5000 Distribution Statistics: Number of statistic hours kept: 2 Number of statistic distribution buckets kept: 1 Statistic distribution interval (milliseconds): 20 Enhanced History: Based on this output, what is the frequency of the IP SLA operation?

A.30 seconds
B.60 seconds
C.120 seconds
D.5000 milliseconds
AnswerB

The output shows 'Frequency (seconds): 60'.

Why this answer

The command output shows 'Frequency (seconds): 60', which directly indicates that the IP SLA operation repeats every 60 seconds. This is the correct answer because the frequency parameter defines the time interval between successive probe executions.

Exam trap

Cisco often tests the distinction between 'frequency' and 'timeout' values, as candidates may confuse the 5000-millisecond timeout with the 60-second frequency.

How to eliminate wrong answers

Option A is wrong because the output explicitly states 'Frequency (seconds): 60', not 30 seconds; a frequency of 30 seconds would require a different configuration. Option C is wrong because 120 seconds is not shown in the output; the frequency is clearly 60 seconds, not double that value. Option D is wrong because 5000 milliseconds is the operation timeout (5 seconds), not the frequency; the frequency is measured in seconds and is set to 60.

803
Drag & Dropmedium

Drag and drop the steps of OSPF virtual link configuration across area 0 into the correct order, from first to last.

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

Why this order

First, ensure the transit area (non-backbone) has full connectivity and at least one ABR. Then, identify the router IDs of the two ABRs that will form the virtual link. On each ABR, configure the virtual link using the 'area transit-area-id virtual-link router-id' command.

Verify the virtual link state using 'show ip ospf virtual-links'. Finally, confirm that routes from the backbone area are now reachable across the virtual link.

804
Matchinghard

Drag and drop each AAA method list type on the left to its correct fallback order (from first to last) on the right.

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

Concepts
Matches

local, line

enable, none

local, none

local, if-authenticated

local, none

Why these pairings

The default method list for login authentication tries local first, then fallback to line password. The default for enable authentication uses enable password, then none. The default for PPP authentication uses local, then none.

The default for command authorization uses local, then if-authenticated. The default for exec authorization uses local, then none.

805
MCQmedium

Consider the following configuration snippet from a Cisco IOS-XE router: router eigrp 100 network 10.0.0.0 network 192.168.1.0 passive-interface default no passive-interface GigabitEthernet0/0 What is the effect of the passive-interface commands?

A.EIGRP hellos are suppressed on all interfaces except GigabitEthernet0/0.
B.EIGRP hellos are sent on all interfaces, but updates are blocked.
C.EIGRP adjacency is formed on all interfaces except GigabitEthernet0/0.
D.EIGRP is disabled on all interfaces.
AnswerA

The default passive suppresses hellos on all interfaces, and the no passive allows them on G0/0.

Why this answer

The command 'passive-interface default' makes all interfaces passive by default, meaning they will not send or receive EIGRP hellos. The subsequent 'no passive-interface GigabitEthernet0/0' overrides this for that specific interface, allowing EIGRP adjacency formation on it.

806
Matchingmedium

Drag and drop each EIGRP timer on the left to its matching default value on the right.

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

Concepts
Matches

5 seconds

15 seconds

3 minutes

60 seconds

180 seconds

Why these pairings

Hello timer default is 5 seconds on LAN; Hold timer default is 15 seconds; Active timer default is 3 minutes.

807
Drag & Dropmedium

Drag and drop the steps of SNMPv3 authentication and privacy negotiation into the correct order, from first to last.

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

Why this order

SNMPv3 first discovers the engine ID, then the manager and agent agree on security parameters, authenticate, and finally encrypt the payload.

808
Multi-Selectmedium

Which two statements about MPLS VPN (Layer 3 VPN) are true? (Choose two.)

Select 2 answers
A.PE routers maintain separate VRF tables for each VPN customer.
B.P routers must maintain a full routing table for each VPN customer.
C.MP-BGP is used to exchange VPNv4 routes between PE routers.
D.CE routers run MPLS and participate in label distribution with the PE.
E.The VPN label is used by P routers to forward traffic across the MPLS core.
AnswersA, C

Correct because VRF (Virtual Routing and Forwarding) instances isolate customer routes on the PE.

Why this answer

In MPLS Layer 3 VPNs, the PE router maintains separate VRF tables per customer and uses MP-BGP to exchange VPNv4 routes (including the route distinguisher and VPN label). The P router does not need to know customer routes; it only swaps labels. The CE router does not participate in MPLS; it runs standard IP routing with the PE.

809
MCQmedium

An Ansible playbook uses the cisco.dnac.site module to create a new building site. The playbook is: - name: Create building site cisco.dnac.site: host: "{{ dnac_host }}" username: "{{ dnac_username }}" password: "{{ dnac_password }}" validate_certs: no state: present site: name: Building-B type: building parentName: Area-1 address: "123 Main St" latitude: 37.7749 longitude: -122.4194 register: result What is the purpose of the 'parentName' parameter?

A.It specifies the name of the building's parent in the hierarchy, such as an area or global site.
B.It defines the DNS domain name for the building.
C.It sets the name of the network profile associated with the building.
D.It is used to specify the building's primary IP address.
AnswerA

Correct. The parentName defines where in the site hierarchy the building is placed.

Why this answer

The 'parentName' parameter specifies the name of the parent site (area or global) under which the building is created. This is necessary for building the site hierarchy.

810
Matchingmedium

Drag and drop each IP SLA reaction action on the left to its corresponding behavior on the right.

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

Concepts
Matches

Send a log message

Send an SNMP notification

Start another IP SLA operation

Disable reaction

Trigger on probe timeout

Why these pairings

Syslog sends a log message; SNMP trap sends an SNMP notification; trigger starts another IP SLA operation; none disables reaction; timeout triggers on probe timeout.

811
Drag & Dropmedium

Drag and drop the steps of RSPAN VLAN propagation across trunk links into the correct order, from first to last.

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

Why this order

The RSPAN VLAN must be created, allowed on trunks, and then used in sessions to propagate traffic across switches.

812
MCQeasy

What is the maximum hop count for EIGRP?

A.15
B.255
C.16
D.100
AnswerB

Correct. EIGRP has a maximum hop count of 255.

Why this answer

EIGRP uses a maximum hop count of 255, which is a hard limit encoded in the protocol's metric field. This allows EIGRP to scale to much larger networks than distance-vector protocols like RIP, which have a hop count limit of 15. The hop count is not used as a primary metric in EIGRP but serves as a loop-prevention mechanism, and routes with a hop count exceeding 255 are considered unreachable.

Exam trap

Cisco often tests the difference between RIP's 15-hop limit and EIGRP's 255-hop limit, and the trap here is that candidates confuse the hop count limit with the administrative distance (100) or the RIP unreachable metric (16).

How to eliminate wrong answers

Option A is wrong because 15 is the maximum hop count for RIP (Routing Information Protocol), not EIGRP; this is a classic confusion between distance-vector protocols. Option C is wrong because 16 is the 'unreachable' metric in RIP, not a valid EIGRP hop count limit. Option D is wrong because 100 is the default administrative distance for EIGRP internal routes, not the maximum hop count.

813
Drag & Dropmedium

Drag and drop the steps of the DiffServ traffic classification and marking pipeline into the correct order, from first to last.

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

Why this order

In the DiffServ QoS pipeline, traffic must first be classified using class maps, then marked with a policy map, and finally applied to an interface using a service policy. The order ensures that packets are identified, marked, and then enforced on the egress interface.

814
Matchingmedium

Drag and drop each VLAN range on the left to its matching type on the right.

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

Concepts
Matches

Normal range VLANs

Extended range VLANs

Reserved VLANs (cannot be used)

Default FDDI and Token Ring VLANs

Default Ethernet VLAN

Why these pairings

VLANs 1–1005 are normal range, 1006–4094 extended, 0 and 4095 reserved, 1002–1005 are default token ring/FDDI VLANs, and 1 is the default Ethernet VLAN.

815
Multi-Selecthard

Which three statements about telemetry data collection methods are true? (Choose three.)

Select 3 answers
A.SNMP is a push-based telemetry method where agents send traps to the NMS.
B.Syslog messages can be used as a form of telemetry to report events and state changes.
C.Model-driven telemetry supports both periodic and event-driven subscriptions.
D.gNMI is a protocol used to retrieve and manipulate configuration state, and it also supports telemetry subscriptions.
E.Telemetry data can only be encoded in XML format.
AnswersB, C, D

Syslog sends event-driven data from devices to a collector, fitting the telemetry definition.

Why this answer

Telemetry can be collected via SNMP (pull), Syslog (push), and model-driven telemetry (push). SNMP polling is a classic pull method, while Syslog and MDT are push-based. MDT offers higher scale and flexibility compared to SNMP.

816
Drag & Dropmedium

Drag and drop the steps of multicast RP discovery using Auto-RP into the correct order, from first to last.

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

Why this order

Auto-RP uses a mapping agent that listens for RP announcements, then advertises the RP mapping via a well-known group; all routers learn the RP and use it for group-to-RP mapping.

817
Multi-Selectmedium

Which two statements about NAT configuration on Cisco IOS routers are true? (Choose two.)

Select 2 answers
A.The ip nat inside source list command translates traffic from the inside interface to the outside interface.
B.Static NAT requires both ip nat inside and ip nat outside commands on the same interface.
C.The ip nat outside source list command translates the source IP of packets entering the inside interface.
D.Dynamic NAT uses a pool of public IP addresses assigned on a first-come, first-served basis.
E.NAT overload (PAT) uses a single public IP address by mapping multiple inside hosts to different TCP/UDP ports.
AnswersA, E

Correct. The 'ip nat inside source list' command translates source addresses for traffic from inside to outside.

Why this answer

A is correct because the 'ip nat inside source list' command translates inside local addresses to inside global addresses for traffic exiting the inside interface. E is correct because NAT overload (PAT) typically uses a single public IP address and differentiates flows using TCP/UDP port numbers. B is incorrect: static NAT requires 'ip nat inside' on one interface and 'ip nat outside' on a different interface, not both on the same interface.

C is incorrect: 'ip nat outside source list' translates the source IP of packets entering the outside interface, not the inside. D is incorrect: dynamic NAT uses a pool of public IP addresses but does not assign them on a true 'first-come, first-served' basis; it allocates from the pool as needed, but the phrase is misleading in the context of NAT behavior.

818
Drag & Dropmedium

Drag and drop the steps of VNF life cycle management into the correct order, from first to last.

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

Why this order

The correct order follows the ETSI NFV lifecycle: first onboard the VNF package, then instantiate the VNF, configure the VNF, scale the VNF as needed, and finally terminate the VNF when no longer required.

819
Drag & Dropmedium

Drag and drop the steps of ISE RADIUS policy evaluation order into the correct order, from first to last.

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

Why this order

Cisco ISE evaluates RADIUS policies in a specific order: first it checks authentication policies, then authorization policies (including exception policies), and finally applies the matched authorization profile. If no match, the default deny policy applies.

820
Matchingmedium

Drag and drop each telemetry protocol on the left to its matching transport on the right.

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

Concepts
Matches

HTTP/2

gRPC

SSH

HTTPS

Not a standard telemetry transport

Why these pairings

gRPC uses HTTP/2, gNMI uses gRPC, NETCONF uses SSH, RESTCONF uses HTTPS, and HTTP is not a standard telemetry transport.

821
Multi-Selectmedium

Which two statements about EIGRP feasible successors are true? (Choose two.)

Select 2 answers
A.A feasible successor must have a reported distance less than the feasible distance.
B.A feasible successor is immediately used when the successor fails, without any query process.
C.The feasible distance is the metric of the feasible successor route.
D.EIGRP will always have at least one feasible successor for every route.
E.The feasible successor is stored in the routing table as a backup route.
AnswersA, B

Correct because the feasibility condition requires the reported distance (neighbor's metric) to be strictly less than the feasible distance (the current best metric).

Why this answer

A feasible successor is a backup route that meets the feasibility condition (reported distance < feasible distance). It is stored in the topology table and can be used immediately if the successor fails, without querying neighbors. The feasible distance is the lowest metric to a destination; the successor is the route with that metric.

The reported distance is the neighbor's metric to the destination.

822
Matchingmedium

Drag and drop each SD-WAN plane on the left to its matching function on the right.

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

Concepts
Matches

Distributes OMP routes, TLOCs, and policy information between vSmart and WAN edges

Forwards user traffic over IPsec tunnels between WAN edge routers

Provides REST API, CLI, and web GUI for configuring and monitoring the fabric

Automates initial authentication, NAT detection, and vBond discovery

(Not a standard SD-WAN plane; used as a distractor) Handles application-level services

Why these pairings

The control plane handles routing and signaling; the data plane forwards packets; the management plane provides GUI/API access; the orchestration plane automates device onboarding and certificate management.

823
Matchingmedium

Drag and drop each streaming telemetry mode on the left to its matching trigger on the right.

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

Concepts
Matches

data is sent at a fixed interval

data is sent when a monitored value changes

device determines when to send updates

skip sending if value unchanged

periodic keep-alive even if no change

Why these pairings

Periodic sends data at fixed intervals, on-change sends data when a value changes, and target-defined uses the device's own update policy.

824
Matchingmedium

Drag and drop each telemetry protocol on the left to its matching transport on the right.

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

Concepts
Matches

HTTP/2

gRPC (HTTP/2)

SSH

HTTPS

UDP

Why these pairings

gRPC uses HTTP/2, gNMI uses gRPC (HTTP/2), NETCONF uses SSH, and RESTCONF uses HTTPS.

825
Drag & Dropmedium

Drag and drop the steps of MP-BGP VPNv4 route advertisement between PE routers into the correct order, from first to last.

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

Why this order

The correct order starts with the local PE learning the customer route via IGP or static, then redistributing it into MP-BGP with a route distinguisher, advertising the VPNv4 route to the remote PE, which receives and installs it into the VRF, and finally the remote PE redistributes the route into the customer-facing IGP.

Page 10

Page 11 of 16

Page 12