CCNP ENCOR reference
AAA & Device Access Quick Reference
Method lists, fallback behavior, and TACACS+ vs. RADIUS — tested in ENCOR objectives 5.1–5.3.
The three AAA functions
Authentication: who are you. Authorization: what are you allowed to do (a genuinely separate question from identity). Accounting: what did you actually do.
Method lists and fallback
A method list is an ordered sequence of authentication methods. Fallback to the next method triggers only when a method is genuinely UNREACHABLE — a legitimate denial from a reachable server is final, not a trigger to try the next method.
Always include a local fallback in a server-based method list. Without one, a AAA server outage locks out every administrator from every device relying on that method list simultaneously.
'aaa new-model' must be enabled globally, or method lists are defined but have no effect.
TACACS+ vs. RADIUS
TACACS+: encrypts the entire packet body, uses TCP, cleanly separates authentication/authorization/accounting — preferred for device administration needing granular per-command authorization.
RADIUS: encrypts only the password field, uses UDP, combines authentication and authorization into one step — preferred for network access (802.1X) given its broad multi-vendor support.
At a glance
| TACACS+ | RADIUS | |
|---|---|---|
| Encryption scope | Entire packet body | Password field only |
| Transport | TCP | UDP |
| AAA function separation | Fully separate | Auth + authz combined |
| Best fit | Device administration | Network access (802.1X) |