Skip to main content
Your first session is free. Claim mine
PacketMentor logo
Open menu
Home
Training
CCNA Library (74)
Browse all CCNA topics →
Network (13)
Device Operations (5)
Network Access (12)
Wireless (6)
IP Connectivity (10)
IP Services (11)
Security (10)
Automation (7)
CCNP Library (15)
LabsPricing
Contact 📞 +1 (860) 556-3010 Book a Call
← All topics
Network Fundamentals Foundational

WAN Connection Types

The connection types you'll actually meet at branch sites — leased lines, Metro Ethernet, MPLS L3VPN, broadband (cable / DSL / FTTH), wireless (LTE/5G), and how SD-WAN ties them together.

TL;DR
  • WANs connect sites across distances larger than a campus — over carriers you don't own.
  • Six categories: dedicated leased line (T1/E1/SONET), Metro Ethernet, MPLS L3VPN, broadband (cable/DSL/FTTH), wireless (LTE/5G), and satellite. Each has its own SLA and cost profile.
  • Modern branches mix two or three of these and let SD-WAN steer traffic across them — paid bandwidth becomes a commodity.

Mental model

A WAN is anything that connects sites farther apart than you can run your own cable. You rent from a carrier — and the rental terms shape everything else: bandwidth, SLA, predictability, cost, security.

Every WAN choice trades off three things:

  1. Bandwidth + symmetry — how many Mbps each way, and is upload as fast as download?
  2. SLA + jitter — guaranteed latency / packet loss / uptime, or best-effort?
  3. Cost per Mbps — leased lines bill by dedicated capacity; broadband bills by tier; LTE bills by data usage.

CCNA blueprint covers the major categories at a recognition level — you should know which is which and when each fits.

The six categories

1. Dedicated leased lines (T1 / E1 / SONET / DS3)

The old guard. Point-to-point copper or fiber from carrier between two of your sites. Dedicated bandwidth, end-to-end SLA.

TypeBandwidthRegion
T11.544 MbpsN. America
E12.048 MbpsEurope / RoW
T3 / DS344.736 MbpsN. America
OC-3155 MbpsSONET
OC-12622 MbpsSONET
OC-482.5 GbpsSONET
  • Pros: Hard SLA, predictable latency, fully private.
  • Cons: Expensive, fixed bandwidth, slow to provision (weeks).
  • 2026 reality: Mostly being retired in favor of Metro Ethernet. You’ll still find T1/E1 at small branches, remote sites, and in legacy industries.

2. Metro Ethernet (MetroE)

Ethernet handoff from a carrier. Looks like a regular RJ45/SFP port, but the other end is hundreds of km away.

Three flavors (MEF specifications):

ServiceWhat it provides
E-LinePoint-to-point. Like a wire between two sites.
E-LANMultipoint-to-multipoint. Like a bridged LAN across cities.
E-TreeHub-and-spoke (root + leaves).
  • Pros: Easy — your edge switch just plugs in. SLA from carrier. Faster to provision than T1.
  • Cons: More expensive than broadband, requires single carrier across your footprint.
  • 2026 reality: Default WAN choice for mid-sized enterprises that want SLA but don’t want MPLS complexity.

3. MPLS L3VPN

Covered fully in MPLS Basics. The carrier runs MPLS internally; you peer with their PE routers from each of your sites. Carrier provides VRF-isolated routing across all your sites.

  • Pros: Multi-site any-to-any without you running BGP. SLA. QoS. Mature.
  • Cons: Expensive ($/Mbps), single-carrier lock-in, slow to add new sites.
  • 2026 reality: Still common in large enterprises, but losing share to SD-WAN-over-broadband.

4. Broadband (Cable / DSL / FTTH)

Consumer-style internet. You buy a connection like a residential user, but you’re sharing infrastructure with neighbors.

TypeTypical speedsHow it works
Cable (DOCSIS)100 Mbps – 2 Gbps down / 20-200 Mbps upCoax shared in neighborhood
DSL (ADSL / VDSL)5-100 Mbps / 1-20 MbpsCopper telephone pair
FTTH (fiber to home)100 Mbps – 10 Gbps symmetricFiber to your premises
  • Pros: Cheap, fast to install, often symmetric (fiber) at high speeds.
  • Cons: Best-effort — no SLA. Asymmetric on cable/DSL (download fast, upload slow). Shared bandwidth.
  • 2026 reality: The hidden backbone of SD-WAN deployments. Two cable modems + LTE backup = cheaper and faster than one MPLS at most branches.

5. Wireless WAN (LTE / 5G / fixed wireless)

Carrier cellular as the transport.

TypeTypical speedsLatency
LTE / 4G20-150 Mbps down / 10-50 Mbps up40-80 ms
5G (sub-6)100 Mbps – 1 Gbps20-40 ms
5G (mmWave)1-3 Gbps5-20 ms
Fixed Wireless50 Mbps – 1 Gbps20-40 ms
  • Pros: No cabling. Fast to deploy (just bring up a SIM). Geographic flexibility.
  • Cons: Data caps. Coverage variability. Often expensive per GB.
  • 2026 reality: Used as backup links, pop-up sites, temporary deployments, vehicle fleets, and where wired isn’t feasible.

6. Satellite

The last-resort tier — Starlink (LEO), Viasat / HughesNet (GEO).

TypeTypical speedsLatency
LEO (Starlink)100-300 Mbps30-60 ms
GEO25-100 Mbps600+ ms
  • Pros: Works literally anywhere.
  • Cons: GEO latency is brutal. LEO (Starlink) much better but still subject to weather and limited capacity.
  • 2026 reality: Maritime, offshore oil/gas, polar research, disaster recovery — anywhere wired isn’t an option.

Several WAN technologies use PPP (Point-to-Point Protocol) at Layer 2:

  • Leased lines (T1/E1) commonly use PPP or HDLC.
  • DSL uses PPPoE (PPP over Ethernet) — wraps PPP inside Ethernet so the DSL modem can authenticate to the ISP.

A typical PPPoE setup on Cisco IOS:

R1(config)# interface Dialer0
R1(config-if)# encapsulation ppp
R1(config-if)# ip address negotiated
R1(config-if)# dialer pool 1
R1(config-if)# ppp authentication chap callin
R1(config-if)# ppp chap hostname acme123@isp.com
R1(config-if)# ppp chap password 7 SecretPwd

R1(config)# interface Gi0/1
R1(config-if)# pppoe-client dial-pool-number 1

For CCNA, you should recognize the PPPoE concept and the basic config — full PPP tuning is beyond CCNA scope.

SD-WAN — making the choice flexible

If you read SD-WAN Concepts, you’ll recognize the pattern: instead of picking one WAN type, you pick several and let SD-WAN do app-aware path selection.

Common 2026 branch pattern:

  • One MPLS (for SLA-bound voice/video)
  • One broadband (cheap bulk, SaaS direct break-out)
  • One LTE (backup, never-down)

SD-WAN treats all three as fungible transports for the overlay tunnels. Voice goes over MPLS. SaaS goes direct over broadband. If MPLS dies, voice falls over to broadband (with QoS degradation but no outage). If broadband dies too, everything fails over to LTE.

This is the why of modern SD-WAN — diverse WAN transports become a feature, not a complication.

Quick comparison

TypeBandwidth rangeSLACost/MbpsProvisioning timeUse case
Leased line1.5 Mbps – 2.5 GbpsYesHighestWeeksLegacy, regulated, small branches
Metro Ethernet10 Mbps – 100 GbpsYesHighDays-weeksDefault enterprise mid-tier
MPLS L3VPN1 Mbps – 100 Gbps+YesHighWeeksLarge enterprise multi-site
Broadband5 Mbps – 10 GbpsNo (best effort)LowDaysSD-WAN underlay, SaaS direct
Wireless (LTE/5G)10 Mbps – 1 GbpsLimitedMediumHoursBackup, pop-up, mobility
Satellite (LEO)50-300 MbpsLimitedMedium-highDaysRemote / maritime

Selecting a WAN — questions to ask

  1. How much bandwidth do I need? Real measurement, not vendor wishful thinking.
  2. What apps run on this link? Latency-sensitive (voice, real-time trading) needs an SLA-backed link.
  3. What’s my tolerance for downtime? Need 99.99%? Get two transports from two different carriers.
  4. What’s the budget? MPLS is 5-15× more expensive per Mbps than broadband.
  5. How fast must I deploy? New site opening in 2 weeks → broadband + LTE backup, not MPLS.
  6. Will I use SD-WAN? If yes, pick diverse cheaper transports. If no, pick one premium link.

Common mistakes

  1. Single transport, no backup. One link, no failover. Eventually it goes down for hours. Always have a second path — even if it’s an LTE modem.

  2. Assuming broadband upload = broadband download. Cable / DSL are asymmetric. A “1 Gbps cable” might only upload at 30 Mbps. Matters a lot for backups, video calls, cloud uploads.

  3. Buying “MPLS” thinking it’s encrypted. It’s not. MPLS provides traffic separation, not confidentiality. If you need encryption, layer IPsec on top.

  4. Ignoring jitter when picking broadband for voice. Bandwidth might be fine, but if your cable modem occasionally has 50ms jitter spikes, voice quality tanks. Test before deploying.

  5. Putting LTE on a billable data plan with no monitoring. A misbehaving WAN backup chewing through 50 GB/day will produce surprise bills. Configure SD-WAN to use LTE only on failover.

  6. Single carrier across all sites. That carrier has one regional outage and every site is down at once. Diversify.

  7. Forgetting cabling at the new site. Telco hands you a 100 Mbps Metro-E. Your IDF doesn’t have a fiber patch. Bring a real installer to survey.

Lab to try tonight

This is a hard topic to lab directly — most folks don’t have leased lines in their garage. But you can:

  1. Look up your own internet connection in traceroute and note the first 3-4 hops — that’s your ISP’s edge network.
  2. Compare mtr results between cable, LTE-tethered phone, and Wi-Fi. Note jitter differences.
  3. In GNS3/CML, build a PPPoE client/server pair — practice the config until it’s muscle memory.
  4. Configure two routers as if they were a small enterprise + branch: one router speaks PPP/HDLC to the other. Bring up the link, watch CHAP authentication.
  5. Use a public looking glass (e.g., lg.he.net) to traceroute between cities — see real-world carrier paths.
  6. Compare cost per Mbps of your home internet vs a public quote for MPLS in your area — eye-opening.

Cheat strip

TypeOne-line characterization
Leased line (T1/E1/SONET)Dedicated copper/fiber, fixed bandwidth, SLA. Legacy default.
Metro EthernetCarrier hands you Ethernet across cities. E-Line / E-LAN / E-Tree
MPLS L3VPNCarrier-managed VRF mesh. SLA + any-to-any.
BroadbandCable / DSL / FTTH. Cheap, no SLA. SD-WAN’s favorite.
Wireless (LTE/5G)No cabling. Backup or pop-up. Watch data caps.
Satellite (LEO/GEO)Anywhere on Earth. LEO finally usable; GEO has 600ms latency.
PPP / PPPoELayer 2 framing for leased lines and DSL respectively
SD-WAN’s valueCombine multiple cheap transports into one resilient logical WAN
CCNA depthRecognize each, know SLA vs best-effort, know when each fits
Master this on a real network

Want this drilled into reflex?

1:1 weekly sessions, live feedback on your labs, and US interview prep — built around the CCNA® exam blueprint. Free first session. No card on file until you decide.

Claim my free session →

One topic per email, every fortnight

VLANs, OSPF, ACLs, subnetting, automation — written like this. Unsubscribe in one click.

We respect your inbox. One email per week, max. Unsubscribe any time.

Start typing — or browse popular topics below.

↑↓ navigate open Searches topics · labs · programs · pages