HSR Sector 6 · Bangalore +91 96110 27980 Mon–Sat · 09:30–20:30
Chapter 3 of 20 — Network Design & Architecture
intermediate Chapter 3 of 20

WAN Network Design — MPLS, Internet & Hybrid WAN Architecture

By Vikas Swami, CCIE #22239 | Updated Mar 2026 | Free Course

WAN Design Requirements — Bandwidth, Latency & Reliability

Effective WAN network design begins with a clear understanding of the core requirements: bandwidth, latency, and reliability. Each enterprise has unique operational needs, making it essential to tailor WAN architectures accordingly. High bandwidth ensures data flows smoothly across sites, supporting bandwidth-intensive applications like video conferencing, cloud backups, and ERP systems. Latency, the delay in data transmission, influences user experience and application performance; low latency is critical for real-time services such as VoIP and financial trading platforms.

Reliability encompasses not only hardware and link redundancy but also the network’s ability to maintain service during outages or failures. For instance, a multinational corporation operating across multiple geographic locations must ensure that its WAN can sustain business-critical applications without interruption. This involves designing for fault tolerance through redundant links, diverse routing paths, and proactive monitoring.

From a technical perspective, bandwidth planning involves analyzing current and projected data loads, considering peak usage times, and provisioning links with sufficient capacity. Latency considerations include choosing geographically optimal data centers, deploying edge computing where applicable, and selecting transport technologies that minimize delay. Reliability strategies involve implementing link aggregation, dynamic routing protocols like OSPF or BGP, and leveraging SD-WAN solutions for intelligent path selection.

In practice, network engineers often use tools like Cisco Prime, SolarWinds Network Performance Monitor, or PRTG Network Monitor to assess network performance metrics, identify bottlenecks, and simulate capacity planning. Balancing these factors ensures a WAN design that supports enterprise growth, maintains high availability, and delivers optimal user experience.

WAN Connectivity Options — MPLS, Internet VPN, Leased Lines & LTE

Selecting the right WAN connectivity options is fundamental to developing a resilient and cost-effective WAN network design. The primary options include MPLS, Internet VPNs, leased lines, and LTE/4G/5G cellular connections. Each solution offers distinct advantages and trade-offs, making their understanding critical for network architects.

MPLS (Multiprotocol Label Switching) remains a staple in enterprise WAN design for its ability to provide reliable, secure, and scalable connections. MPLS WAN design enables traffic prioritization through Quality of Service (QoS), ensuring latency-sensitive applications receive appropriate bandwidth. For example, Cisco routers configured with MPLS might use the following command to enable MPLS on interfaces:

mpls ip
interface GigabitEthernet0/0
 ip address 10.1.1.1 255.255.255.0
 mpls ip

This solution suits large organizations with multiple sites requiring predictable performance, albeit at higher costs due to dedicated service levels.

Internet VPNs (Virtual Private Networks) leverage public internet infrastructure to establish secure, encrypted tunnels between sites. Technologies like IPsec VPNs or SSL VPNs are popular for remote workers and branch offices. OpenVPN, for instance, can be configured on Linux-based firewalls with straightforward CLI commands, providing flexible and cost-effective connectivity.

Leased Lines offer dedicated point-to-point links, such as T1 or fiber connections, providing high reliability and consistent bandwidth. These are typically used by enterprises requiring guaranteed performance for mission-critical applications. However, their high costs limit widespread deployment, especially in geographically dispersed networks.

LTE/5G Cellular Connectivity introduces mobility and rapid deployment options. LTE-based WAN links are ideal for remote or temporary sites, backup links, or scenarios where wired options are impractical. Example: configuring a LTE router with APN settings to establish connectivity involves commands like:

apn internet
dialer enable

Choosing among these options depends on factors such as cost, performance requirements, geographic location, and scalability. Often, a hybrid approach combining these technologies delivers the best balance of performance and cost-efficiency, as discussed in subsequent sections.

Hub-and-Spoke vs Full Mesh vs Partial Mesh Topologies

Designing the WAN topology significantly impacts performance, scalability, and manageability. The three primary topologies are hub-and-spoke, full mesh, and partial mesh, each suited to different organizational needs.

Hub-and-Spoke Topology

This topology features a central hub, typically a data center or main branch, connected directly to multiple remote sites. Communications between spokes are routed through the hub, simplifying management and reducing the number of required links. For example, a regional office connects to the central headquarters via MPLS, while remote sites connect through VPN over the internet.

Advantages include simplicity, centralized control, and easier security policy enforcement. However, it can create bottlenecks at the hub and increase latency for inter-spoke communication.

Full Mesh Topology

In a full mesh, each site connects directly to every other site, providing the lowest latency and highest redundancy. For N sites, the number of links is N(N-1)/2, which becomes impractical as the network scales. For example, a 5-site network requires 10 links, while 10 sites need 45 links.

Full mesh offers robust fault tolerance and optimal performance for critical applications but incurs high costs and complex configuration management.

Partial Mesh Topology

This approach balances the benefits of full mesh and hub-and-spoke by establishing direct links between selected sites based on traffic patterns and criticality. For example, the headquarters and main data center may have direct links, while less critical branch offices connect via the hub.

Partial mesh reduces costs and complexity while maintaining adequate redundancy and performance for most scenarios. It is often implemented with dynamic routing protocols like OSPF or BGP to adapt to network changes.

Comparison Table

Topology Scalability Cost Redundancy Complexity
Hub-and-Spoke Low to Moderate Low Moderate (single point of failure at hub) Low
Full Mesh High (scales poorly) High High High
Partial Mesh Moderate to High Moderate High Moderate

Choosing the appropriate topology depends on the organization's size, budget, performance requirements, and growth plans. Networkers Home offers expert guidance in selecting and implementing optimal WAN topologies, as detailed in their network design courses.

Hybrid WAN Design — Combining MPLS with Internet Backup

Hybrid WAN design integrates multiple connectivity technologies to balance performance, cost, and resilience. A common approach involves deploying MPLS for primary, latency-sensitive applications while using the internet as a backup or for less critical traffic. This setup ensures high availability and cost efficiency.

For example, an enterprise might configure a primary MPLS link for VoIP, ERP, and real-time data, with an internet VPN as a secondary path. SD-WAN solutions facilitate dynamic path selection, enabling traffic to switch seamlessly based on link health, bandwidth, or application priority.

Implementing hybrid WAN requires careful planning of routing policies, security considerations, and performance monitoring. Using BGP or OSPF with route policies helps in directing traffic appropriately. For example, Cisco SD-WAN configurations can be used to define policies such as:

policy
  rule 10
    match
      route-source internet
    then
      prefer 2
  rule 20
    match
      route-source mpls
    then
      prefer 1

This setup ensures that traffic uses MPLS as the primary path, with internet backup when MPLS links degrade or fail. Cost savings are achieved by offloading non-critical traffic to cheaper internet links, freeing up MPLS bandwidth for essential services.

Hybrid WAN architectures support scalability, agility, and disaster recovery, making them ideal for organizations embracing cloud services and remote work trends. Networkers Home provides comprehensive training on designing such complex architectures, see their courses for in-depth knowledge.

WAN Optimization — Compression, Caching & Protocol Acceleration

WAN optimization techniques improve application performance over the WAN, addressing challenges like high latency, limited bandwidth, and packet loss. Key methods include data compression, caching, and protocol acceleration.

Data Compression

Compression reduces the size of data transmitted over the network, decreasing bandwidth consumption and improving transfer times. Cisco WAAS (Wide Area Application Services) appliances, for example, implement real-time compression algorithms to optimize traffic such as email, file transfers, and backups.

Caching & Content Delivery

Local caching stores frequently accessed data closer to users, reducing the need for repeated WAN traffic. Solutions like Riverbed SteelHead cache web content and application data at branch offices. For example, a branch office accessing a shared file server benefits from local cache, significantly reducing latency and bandwidth usage.

Protocol Acceleration

Protocols like TCP, HTTP, and CIFS are optimized through techniques such as TCP window scaling, selective acknowledgments, and application-specific enhancements. Cisco’s protocol acceleration employs techniques like TCP optimization, reducing retransmissions and improving throughput.

Deploying WAN optimization appliances requires careful placement within the network and configuration of policies tailored to organizational needs. Performance metrics from tools such as Wireshark or SolarWinds can help assess improvements and fine-tune configurations.

Overall, WAN optimization significantly enhances user experience and application responsiveness, especially in multi-site enterprise environments. For specialized training, Networkers Home offers courses that cover these techniques in detail.

WAN Redundancy and Failover Design Patterns

Ensuring continuous connectivity in WAN design involves implementing redundancy and failover strategies. These patterns minimize downtime and maintain critical services during link failures or outages.

Active-Active Redundancy

In an active-active setup, multiple links are active simultaneously, sharing traffic loads. Protocols like BGP or ECMP (Equal-Cost Multi-Path) facilitate load balancing and redundancy. For instance, configuring BGP with multiple provider connections enables traffic to be distributed and rerouted seamlessly if one link fails:

router bgp 65001
neighbor 192.168.1.1 remote-as 65002
neighbor 192.168.1.1 ebgp-multihop 2
neighbor 192.168.1.1 update-source Loopback0

Active-Passive Redundancy

This pattern involves a primary link active at all times, with a secondary link on standby. Routing protocols or SD-WAN solutions detect failures and switch traffic to the backup link automatically. For example, Cisco IOS devices can use IP SLA and Hot Standby Router Protocol (HSRP) to achieve this:

ip sla 1
 icmp-echo 8.8.8.8
 frequency 30
ip sla schedule 1 life forever start-time now

track 1 ip sla 1 reachability
!
interface GigabitEthernet0/1
 ip address 10.0.0.1 255.255.255.0
 standby 1 ip 10.0.0.254
 standby 1 track 1 decrement 20

Design Best Practices

  • Implement multiple physical links with diverse routing paths.
  • Use dynamic routing protocols that support fast convergence.
  • Deploy SD-WAN solutions for intelligent path management.
  • Regularly test failover scenarios to validate redundancy mechanisms.

Redundancy design ensures high availability, minimizes downtime, and secures business continuity. Networkers Home's courses teach these patterns with practical configurations.

Cost Analysis — Comparing WAN Provider Options

Choosing the right WAN provider involves comparing costs, service levels, and scalability. Major options include MPLS, Internet VPNs, leased lines, and LTE, each with distinct financial implications.

Cost Factors

  • Initial setup costs: hardware, installation, and configuration.
  • Recurring charges: service fees, usage-based charges, and maintenance.
  • Bandwidth: higher capacity links cost more but support greater data loads.
  • Redundancy: multiple links or backup solutions increase expenses but improve availability.

Comparison Table

Provider Type Cost Performance Scalability Security
MPLS High High, predictable Moderate to high, with provider upgrades Secure, managed by provider
Internet VPN Low to Moderate Variable, depends on ISP quality High, with SD-WAN Encrypted, but shared infrastructure
Leased Lines Very High Consistent, low latency High High, dedicated connection
LTE/5G Variable Dependent on signal quality Moderate, mobile flexibility Encrypted, carrier-managed

Ultimately, a hybrid approach often balances cost and performance effectively. For instance, leveraging affordable internet links for non-critical traffic while reserving MPLS for core applications optimizes expenses. Networkers Home offers detailed guidance in evaluating provider options tailored to enterprise needs, as outlined in their blog.

WAN Design Case Study — Multi-Site Enterprise with Remote Workers

An enterprise with 20 branch offices, a main data center, and a remote workforce presents complex WAN design challenges. The primary goals include ensuring reliable connectivity, supporting cloud applications, and maintaining security.

Scenario Overview

  • Headquarters and data center located in Bangalore with high-capacity MPLS links.
  • Branch offices connected via Internet VPNs with SD-WAN management for dynamic path selection.
  • Remote workers access enterprise resources via VPN over broadband or LTE.
  • Applications include VoIP, ERP, video conferencing, and cloud services like AWS and Azure.

Proposed WAN Architecture

  • Core connectivity: MPLS links between headquarters, data center, and critical branches.
  • Branch connectivity: Internet VPNs with SD-WAN appliances for optimized traffic routing and failover.
  • Remote access: VPN client solutions integrated with MFA for security, leveraging LTE as backup connectivity.
  • Security: Centralized firewall and intrusion detection systems, plus segmentation to isolate sensitive data.

Implementation Highlights

  1. Deploy SD-WAN devices like Cisco Viptela or VMware SD-WAN Edge at each site for intelligent path control.
  2. Configure BGP and route policies to prioritize MPLS links while dynamically switching to internet links during outages.
  3. Implement QoS policies to prioritize voice and video traffic, ensuring quality of service.
  4. Set up centralized monitoring with SolarWinds or PRTG, enabling proactive issue detection and performance tuning.

Outcome & Benefits

This design enhances network resilience, reduces operational costs by leveraging internet backups, and improves application performance. Regular testing and updates ensure the WAN remains aligned with evolving enterprise demands. For comprehensive training and certification in advanced WAN design, visit Networkers Home.

Key Takeaways

  • WAN network design must balance bandwidth, latency, and reliability based on organizational needs.
  • Choosing the right connectivity options—MPLS, internet VPN, leased lines, LTE—is critical for performance and cost-efficiency.
  • Topology selection (hub-and-spoke, full mesh, partial mesh) impacts scalability, redundancy, and complexity.
  • Hybrid WAN architectures combining MPLS with internet backup enhance resilience and optimize costs.
  • WAN optimization techniques significantly improve application responsiveness over long distances.
  • Redundancy and failover patterns ensure high availability, minimizing business disruption.
  • Cost comparison across WAN providers aids in strategic decision-making aligned with enterprise budgets.

Frequently Asked Questions

What is the primary difference between MPLS WAN design and Internet VPNs?

MPLS WAN design offers dedicated, managed, and predictable performance with Quality of Service (QoS) features, making it suitable for latency-sensitive applications. In contrast, Internet VPNs utilize public internet infrastructure, providing encrypted, flexible connectivity at a lower cost but with variable performance depending on network conditions. MPLS is often preferred for core enterprise applications, while VPNs are ideal for remote access and less critical traffic.

How does SD-WAN enhance hybrid WAN architectures?

SD-WAN enables centralized management and intelligent path selection across multiple links—MPLS, internet, LTE—based on real-time performance metrics. It dynamically steers traffic away from degraded links, prioritizes critical applications, and simplifies configuration. This results in improved application performance, increased resilience, and cost savings by utilizing cheaper internet links for non-critical traffic, making SD-WAN a vital component in hybrid WAN design.

What are the key considerations when designing WAN redundancy?

Key considerations include deploying diverse physical links to prevent single points of failure, implementing rapid failover mechanisms like BGP or SD-WAN, and ensuring network devices support fast convergence protocols. Regular testing of failover scenarios, security policies during failover, and monitoring link health are also essential. Proper planning ensures high availability and minimizes business disruption during outages.

Ready to Master Network Design & Architecture?

Join 45,000+ students at Networkers Home. CCIE-certified trainers, 24x7 real lab access, and 100% placement support.

Explore Course