惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

U
Unit 42
Vercel News
Vercel News
博客园 - 叶小钗
大猫的无限游戏
大猫的无限游戏
MyScale Blog
MyScale Blog
P
Proofpoint News Feed
量子位
Engineering at Meta
Engineering at Meta
B
Blog RSS Feed
博客园 - 【当耐特】
Recent Announcements
Recent Announcements
Google DeepMind News
Google DeepMind News
D
DataBreaches.Net
Stack Overflow Blog
Stack Overflow Blog
博客园 - 聂微东
小众软件
小众软件
Hugging Face - Blog
Hugging Face - Blog
人人都是产品经理
人人都是产品经理
IT之家
IT之家
T
The Blog of Author Tim Ferriss
Last Week in AI
Last Week in AI
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
博客园 - 三生石上(FineUI控件)

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Internal vs External Load Balancer: Key Differences Expla...
Kashaf Abdul · 2026-05-19 · via DEV Community

Kashaf Abdullah


---

## The Core Difference in One Sentence

**External (Internet facing) Load Balancer:** Balances traffic coming from the public internet to resources inside your private network.

**Internal (Private) Load Balancer:** Balances traffic coming from inside your private network to other resources also inside your private network.

![ ](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/hoyv2w8bjpnv92pv231o.png)


---

## External (Internet Facing) Load Balancer

### How it works

It has a public IP address and is accessible from the internet. Clients (users, mobile apps, external APIs) send requests to this public IP, and the load balancer distributes those requests to backend servers (like web servers or application servers) inside your Virtual Private Cloud (VPC).

### Common Use Cases

- Hosting a public website or e-commerce site
- Exposing a public REST API to external developers
- Serving a mobile app's backend

### Example

Users in different countries typing `https://yourapp.com` → DNS resolves to a public load balancer IP → Load balancer forwards requests to healthy web servers in your VPC.

### Security Note

External load balancers often sit at the "edge" and are paired with security groups, Web Application Firewalls (WAF), and SSL/TLS termination.

---

## Internal (Private) Load Balancer

### How it works

It has only a private IP address (no public internet access). It routes traffic within your VPC or data center. Clients are typically other internal services, databases, or application components.

### Common Use Cases

- **Microservices communication:** Service A calls Service B internally
- **Database load balancing:** Distributing read queries across database replicas
- **Internal API gateways:** Exposing APIs only to other internal apps
- **Tiered architectures:** Web tier (external LB) → App tier (internal LB) → Database tier

### Example

Your internal order processing service needs to call the inventory service. An internal load balancer sits in front of three inventory service instances, distributing requests and hiding failures — all without ever being reachable from the internet.

---

## Side by Side Comparison

| Feature | External Load Balancer | Internal Load Balancer |
|---------|------------------------|------------------------|
| **IP Address** | Public IP | Private IP only |
| **Internet Access** | Yes, accessible from internet | No, not accessible from internet |
| **Traffic Source** | External users, mobile apps, third-party APIs | Internal services, microservices, databases |
| **Typical Use** | Public websites, external APIs | Internal microservices, database clustering |
| **Security** | Requires WAF, SSL/TLS, DDoS protection | Only internal security groups needed |
| **DNS** | Public DNS name | Private DNS name |
| **Subnet** | Public subnet | Private subnet |

---

## Real World Architecture Example

Enter fullscreen mode Exit fullscreen mode

    Internet user
          │
          ▼
┌─────────────────────┐
│ External Load       │  (public IP, in public subnet)
│ Balancer            │
└─────────────────────┘
          │
          ▼
┌─────────────────────┐
│ Web servers         │  (in private subnet)
└─────────────────────┘
          │
          ▼
┌─────────────────────┐
│ Internal Load       │  (private IP only, in private subnet)
│ Balancer            │
└─────────────────────┘
          │
          ▼
┌─────────────────────┐
│ Application servers │  (in private subnet)
│ + Database replicas │
└─────────────────────┘

Enter fullscreen mode Exit fullscreen mode


- The **External LB** handles raw HTTPS from users
- The **Internal LB** distributes API calls from web servers to app servers  never exposed to the internet

---

## Code Example: AWS Load Balancers

### External Load Balancer (Public)

Enter fullscreen mode Exit fullscreen mode


javascript
// AWS CDK - External Application Load Balancer
import * as elbv2 from 'aws-cdk-lib/aws-elasticloadbalancingv2';

const externalLB = new elbv2.ApplicationLoadBalancer(this, 'ExternalLB', {
vpc: vpc,
internetFacing: true, // External - public IP
loadBalancerName: 'public-web-lb'
});

// Add listener for HTTPS traffic
externalLB.addListener('HTTPS', {
port: 443,
certificates: [certificate],
defaultAction: elbv2.ListenerAction.forward([webTargetGroup])
});


### Internal Load Balancer (Private)

Enter fullscreen mode Exit fullscreen mode


javascript
// AWS CDK - Internal Application Load Balancer
const internalLB = new elbv2.ApplicationLoadBalancer(this, 'InternalLB', {
vpc: vpc,
internetFacing: false, // Internal - private IP only
loadBalancerName: 'internal-api-lb'
});

// Add listener for internal traffic
internalLB.addListener('HTTP', {
port: 8080,
defaultAction: elbv2.ListenerAction.forward([appTargetGroup])
});




---

## When to Use Which?

### Choose External Load Balancer when:

- Your users are on the public internet
- You're hosting a public website or API
- Mobile apps need to connect to your backend
- You need SSL/TLS termination for external traffic

### Choose Internal Load Balancer when:

- Services within your network need to communicate
- You're implementing microservices architecture
- You need database read replica distribution
- You want to keep internal traffic private and secure

---

## Common Cloud Provider Names

| Provider | External LB Name | Internal LB Name |
|----------|------------------|------------------|
| **AWS** | Internet-facing ALB/NLB | Internal ALB/NLB |
| **Azure** | Public Load Balancer | Internal Load Balancer |
| **GCP** | External HTTP(S) LB | Internal TCP/UDP LB |

---

## Key Takeaway

| Type | Traffic Source | Accessibility |
|------|----------------|---------------|
| **External** | Public traffic from outside your network | Internet accessible |
| **Internal** | Private traffic from inside your network | Only within VPC |

> **Choose External** when your users are on the internet.
>
> **Choose Internal** when services within your network need to talk to each other reliably at scale.

---

**Written by Kashaf Abdullah**

*Software Engineer | MERN Stack | Web Development*

---

Enter fullscreen mode Exit fullscreen mode