The Cisco PE switch must be configured with Unicast Reverse Path Forwarding (uRPF) loose mode enabled on all CE-facing interfaces.
Severity | Group ID | Group Title | Version | Rule ID | Date | STIG Version |
|---|---|---|---|---|---|---|
| medium | V-221127 | SRG-NET-000205-RTR-000008 | CISC-RT-000740 | SV-221127r999736_rule | 2026-03-04 | 3 |
Description
The uRPF feature is a defense against spoofing and denial-of-service (DoS) attacks by verifying if the source address of any ingress packet is reachable. To mitigate attacks that rely on forged source addresses, all provider edge switches must enable uRPF loose mode to guarantee that all packets received from a CE switch contain source addresses that are in the route table.
ℹ️ Check
Review the switch configuration to determine if uRPF loose mode is enabled on all CE-facing interfaces.
interface Ethernet1/2
ip address x.1.12.2/30
ip access-group BLOCK_TO_CORE in
ip verify unicast source reachable-via any
If uRPF loose mode is not enabled on all CE-facing interfaces, this is a finding.
✔️ Fix
Configure uRPF loose mode on all CE-facing interfaces as shown in the example below:
SW1(config)# int e1/2
SW1(config-if)# ip verify unicast source reachable-via any
SW1(config-if)# end