Skip to content
Study CCNP

Configure And Verify

5.2 Configure and verify infrastructure security features

2 min read ENCOR 350-401 v1.2 Updated

Aligned to Cisco's 350-401 ENCOR v1.2 exam topics.

On this page

What this section tests

Section 5.2 tests two configure and verify tools. Access Control Lists (ACLs) filter traffic. Control Plane Policing (CoPP) protects the device CPU. Both protect the network, but they protect different planes.

Articles

The three planes

PlaneWhat it carriesProtection tool
Data planeUser and application traffic forwarded through the deviceInterface ACLs
Control planeRouting protocols, STP, ARP, ICMP to the deviceCoPP
Management planeSSH, SNMP, NETCONF, RESTCONF to the deviceACLs on lines, CoPP

A router forwards packets in hardware. Traffic destined to the device itself goes to the CPU. An interface ACL cannot stop all of that traffic. CoPP rate-limits what reaches the CPU.

Transit packet:
  enters interface -> interface ACL -> forwarded in hardware

Packet to the device:
  enters interface -> punted to CPU -> CoPP polices the rate

Topic map

TopicControl pointProof command
Standard ACLsSource address only, near the destinationshow access-lists
Extended ACLsSource, destination, protocol, ports, near the sourceshow access-lists
ACL directionThe interface, inbound or outboundshow ip interface
CoPP classesClass maps matching CPU-bound trafficshow policy-map control-plane
CoPP ratesThe police action per classClass counters increase

Study plan

  1. Read 5.2.a ACLs. Practice wildcard masks until they are fast.
  2. Apply an ACL in a lab. Prove it with match counters, not with the configuration text.
  3. Read 5.2.b CoPP. Build a small policy with routing, SSH, and ICMP classes.
  4. Learn to read show policy-map control-plane before you change any rate.

Exam traps

  • A wildcard mask is inverted from a subnet mask. 0.0.0.255 matches a /24.
  • Inbound and outbound are from the interface point of view.
  • Every ACL ends with an implicit deny any.
  • A permit in a CoPP class-map ACL means match for classification. The policy action decides the result.
  • CoPP protects the CPU. It does not filter transit traffic.

Pass check

You are ready for Section 5.2 when you can do these things:

  • Write an extended ACL for a concrete source, destination, and port from memory.
  • Prove an ACL works by reading its match counters.
  • Explain what traffic is punted to the CPU.
  • Explain the difference between a class-map ACL and an interface ACL in CoPP.

Objectives

  1. 5.2.a ACLs
  2. 5.2.b CoPP

Related objectives