AZ-104 // Infra Foundations
Recall 0/0
Before Azure, there was a server closet

Enterprise Infrastructure,
from Peer-to-Peer to Azure

Every AZ-104 service is a cloud-shaped answer to a problem that on-prem infrastructure solved first with a box, a cable, or a role installed on Windows Server. This tracker walks the timeline, then drills into the pieces that keep showing up on the exam.

Peer-to-Peer 1980s File / SQL / Exchange 1990s AD · VPN · DMZ · Virtualization 2000s Cloud Computing 2010+ Azure
01Component Cheat Sheet

Filter by cluster. For every row, ask: is this a role, a protocol, an appliance, or a network design? That distinction is most of what the exam is testing.

ConceptWhat it actually isRuns where
02Deep Dive

The four problems on-prem infrastructure had to solve, in the order companies actually hit them.

On-Prem Stack: everything, owned by you

The starting point every other diagram reacts against.

COMPANY BUILDING File Server SQL Server Exchange SharePoint Domain Controller (AD DS)

Each service above is a separate physical machine, bought, racked, powered, cooled, and patched by the company itself. No sharing of hardware between them — that constraint is what virtualization eventually removes.

Remote Access: getting employees in without opening the doors

VPN · VPN Tunnel · RAS · VPN Concentrator

Laptop Client ENCRYPTED VPN TUNNEL unreadable to anyone in between RAS Company

VPN is not a server or an app — it's a networking technology that wraps traffic in an encrypted tunnel across the public internet. To terminate that tunnel, Windows Server offers RAS (Routing and Remote Access Service), installed as a role exactly like AD DS. At scale, companies swap RAS for a dedicated VPN Concentrator appliance (Cisco, Fortinet, Palo Alto) built to terminate thousands of tunnels at once.

Same shape as AD DS: a Windows Server role you install to turn a general-purpose server into a specific kind of server.

Security Perimeter: don't let one hacked box become the whole network

Firewall · DMZ · Reverse Proxy · Pivoting

Internet FW1 DMZ / PERIMETER NETWORK Web Server Reverse Proxy Public DNS FW2 INTERNAL NETWORK AD DS SQL File Server

A DMZ isn't hardware or software — it's a network design: a buffer zone sandwiched between two firewalls. Only public-facing pieces (web server, reverse proxy, public DNS) live there. Domain Controllers, SQL, and file servers never do. A reverse proxy sits in front of internal web apps so clients never talk to them directly — same job as a receptionist screening visitors.

If a DMZ box gets compromised, the attacker only has a foothold in the DMZ, not the internal network. If it were exposed directly inside the internal network instead, one hacked web server lets an attacker pivot straight to AD and SQL.

Virtualization: turning four physical servers into one

Hypervisor · Hyper-V / VMware ESXi · Virtual Machine · Checkpoint · Elasticity

BEFORE File SQL Exchange SharePoint 4 physical boxes AFTER ONE PHYSICAL SERVER — HYPERVISOR VM: File VM: SQL VM: Exch. VM: SP shared CPU / RAM pool — reallocated on demand (this pool → Elasticity)

A hypervisor (Hyper-V on Windows Server, VMware ESXi bare-metal) carves one physical machine into several virtual machines, each behaving like its own computer. A checkpoint is a save-state you can roll back to after a bad update. Elasticity is what falls out of pooling resources: RAM and CPU move to whichever VM needs them instead of being locked to one box — the exact property cloud providers later scaled across entire data centers.

03Mental Model

Six problems, solved in order. Each layer exists because the one before it created a new problem.

Physical servers

Company owns a machine per service — no sharing.

Centralized services

AD, DNS, SQL, Exchange give the company one source of truth instead of scattered files.

Secure remote access

VPN + RAS let employees reach that source of truth from anywhere, encrypted.

Network segmentation

Firewalls + DMZ stop a compromised public-facing box from becoming a compromised company.

Virtualization

Hypervisors let many of those servers share one physical machine and a flexible resource pool.

Cloud computing

Azure scales virtualization's resource pool across thousands of physical servers you never have to rack.

04Recall Check

Click a card to flip it. Be honest with yourself before marking it known — that's what actually builds recall.

Card 1 of 14
Term
click to flip
Definition
Deck cleared. Everything you marked "review again" has been requeued — click Reset deck to run it again, or come back tomorrow for real spaced repetition.
05On-Prem → Azure

The exam rarely tests the on-prem concept directly — it tests whether you can recognize its cloud descendant.