The /32 Host Route Explained
Understand the /32 host route in networking. A /32 CIDR identifies a single IP address with no host bits, commonly used in routing tables and ACLs.
192.168.1.1/32IPv4Detailed Explanation
The /32 Host Route Explained
A /32 subnet means all 32 bits of the IPv4 address are used for the network portion, leaving zero bits for hosts. This identifies exactly one IP address.
Key Details
- Subnet Mask: 255.255.255.255
- Total Addresses: 1
- Usable Host Addresses: 1 (the address itself)
- No network or broadcast distinction — it is a single host
How It Works
The notation 192.168.1.1/32 refers specifically and exclusively to the address 192.168.1.1. There is no range of addresses — it is a point route to a single host.
Binary Breakdown
11111111.11111111.11111111.11111111
Every bit is a network bit. This is the most specific route possible in IPv4 routing.
Common Uses
1. Routing Tables: Routers use /32 entries to direct traffic to a specific host rather than a network. This is common in point-to-point links and loopback interfaces.
2. Firewall Rules and ACLs: When you need to permit or deny traffic to a single IP, you specify it with /32 to be maximally precise.
3. BGP Announcements: Service providers may announce /32 routes for anycast services like DNS servers (e.g., 8.8.8.8/32).
4. Cloud Elastic IPs: In cloud environments, elastic or floating IPs are often assigned as /32 routes that can move between instances.
/32 vs. No Mask
Writing 192.168.1.1 without a mask is ambiguous in some contexts. Specifying 192.168.1.1/32 explicitly communicates that you mean exactly that one address. This precision is critical in routing configurations and security policies.
Loopback Interfaces
On routers and servers, the loopback interface is typically assigned a /32 address. This address is always reachable as long as the device is running, making it ideal for management access and BGP router IDs.
Use Case
A network engineer adds a /32 static route to direct traffic for a specific server through a particular gateway for traffic engineering purposes.
Try It — Subnet Calculator
Related Topics
The /0 Default Route (0.0.0.0/0)
0.0.0.0/0 · IPv4
/24 Subnet (255.255.255.0)
192.168.1.0/24 · IPv4
Loopback Address: 127.0.0.0/8 Explained
127.0.0.0/8 · IPv4
How to Calculate a Broadcast Address
192.168.1.0/24 · Calculation
CIDR Notation Explained: How IP Addressing Works
10.0.0.0/16 · Concept
Wildcard Masks in Networking Explained
0.0.0.255 · Calculation