IAM, MFA, SSO, Directory Services, and AAA
Key Takeaways
- IAM identifies users, devices, and services, authenticates them, and feeds authorization decisions.
- MFA must combine different factor types (know, have, are, do, somewhere); two passwords are not MFA.
- SSO centralizes login through an identity provider, which raises the value of protecting that IdP with MFA and break-glass plans.
- SAML carries XML assertions for browser-based enterprise SSO; LDAP queries directory users and groups over TCP 389/636.
- RADIUS (UDP) handles network access AAA; TACACS+ (TCP 49) handles granular device administration; 802.1X uses supplicant, authenticator, and authentication server.
Identity and Access Management
Identity and Access Management (IAM) is the combined set of processes and technologies used to establish who or what is requesting access and what that identity may do. Network+ keeps the focus operational: how identities are checked, how network devices make access decisions, and which protocol fits a given scenario.
Authentication, Authorization, and Accounting
The AAA triad is the backbone of Domain 4 access control.
| AAA function | Question answered | Example |
|---|---|---|
| Authentication | Who are you? | Username/password plus an MFA push |
| Authorization | What may you do? | Permit VPN access but deny firewall admin |
| Accounting | What did you do? | Log every config command on a router |
AAA applies to people, devices, services, and administrators alike. A Wi-Fi user joining an SSID, a switch port running 802.1X, and an engineer logging into a router can all flow through one AAA server.
MFA Factors
Multi-factor authentication (MFA) requires two or more different factor categories.
| Factor | Meaning | Example |
|---|---|---|
| Something you know | Knowledge | Password, PIN |
| Something you have | Possession | Hardware token, phone authenticator, smart card |
| Something you are | Biometric | Fingerprint, face recognition |
| Somewhere you are | Location | On the corporate network or in an approved country |
| Something you do | Behavior | Typing cadence, gesture pattern |
Two passwords are not MFA because both are the know factor. A password plus an authenticator approval is MFA because it joins know and have. For high-risk access, phishing-resistant MFA such as FIDO2/WebAuthn security keys or smart cards beats SMS one-time codes, which are vulnerable to SIM swapping and interception.
SSO and Federation
Single sign-on (SSO) lets a user authenticate once to an identity provider (IdP) and then reach many applications without re-entering credentials. Federation extends trust between an IdP and a relying service, often across companies or clouds.
| Term | Network+ meaning | Cue |
|---|---|---|
| SSO | One login reused across services | User signs in once, launches several apps |
| SAML | XML assertions for enterprise browser SSO | IdP posts an assertion to a service provider |
| OAuth 2.0 | Delegated authorization framework | An app gains permission to a resource |
| OpenID Connect | Identity layer atop OAuth 2.0 | An ID token proves the user authenticated |
| LDAP | Directory access protocol (TCP 389; LDAPS 636) | App queries directory users and groups |
SSO improves usability and centralizes control, but it concentrates risk: if the IdP is compromised or offline, every connected app is affected. Strong MFA on the IdP, conditional access, thorough logging, and a break-glass emergency account are core to the design.
RADIUS, TACACS+, and 802.1X
| Technology | Use | Key detail |
|---|---|---|
| RADIUS | VPN, wireless, 802.1X, network-access AAA | Bundles authN and authZ; uses UDP (1812/1813) |
| TACACS+ | Network device administration AAA | Separates authN, authZ, accounting; uses TCP 49; Cisco-originated |
| 802.1X | Port-based network access control | Three roles: supplicant, authenticator, auth server |
| EAP | Authentication framework for 802.1X | Methods include EAP-TLS (certs) and PEAP (credentials) |
In 802.1X, the supplicant is the client device or software requesting access, the authenticator is the switch port or wireless access point gatekeeping the connection, and the authentication server is usually a RADIUS server validating credentials or certificates. Until the supplicant authenticates, the port passes only EAP traffic and blocks everything else. Memorize those three roles in order, because exam stems often hand you one piece ("the switch acts as the...") and expect you to name the role.
The switch or access point is always the authenticator; it never makes the credential decision itself, it merely relays EAP between the supplicant and the RADIUS server.
Directory services tie this together. Most organizations store users and groups in a directory such as Active Directory and expose it over LDAP. RADIUS, SSO portals, and applications all query that single directory so that disabling one account removes access everywhere. That central directory is also why an offline or compromised directory becomes a single point of failure, reinforcing the need for redundancy and monitoring.
Scenario: Secure Wired Access
A company wants conference-room ports to block unknown devices: managed laptops get normal access, contractor laptops land on a restricted network, and failed attempts are logged. A solid design is 802.1X on access switches, RADIUS as the authentication server, EAP-TLS certificates for managed laptops, dynamic VLAN assignment to steer devices into the correct VLAN based on the RADIUS reply, and accounting logs for audit. A guest or remediation VLAN catches devices that fail authentication without giving them internal reach.
If a device cannot do 802.1X at all - such as a printer or IP camera - MAC Authentication Bypass (MAB) lets the switch authorize it by its hardware address as a fallback, which the exam may contrast with full 802.1X.
Common Traps
- SSO does not remove the need for MFA; it raises the stakes for protecting the IdP.
- LDAP queries a directory; it does not encrypt a VPN tunnel.
- RADIUS fits network access; TACACS+ is preferred for command-level device administration.
- 802.1X is not a firewall; it only decides whether a device joins the network at the edge.
- Accounting logs are worthless without reliable timestamps, identities, and synchronized clocks (NTP).
A company wants switch ports to authenticate devices before granting access to the production VLAN. Which technology best fits?
Administrators need granular command-level authorization and separate accounting when they log into routers and switches. Which protocol is the best fit?
Which login design actually qualifies as multi-factor authentication?