What is fqdn
Last updated: April 1, 2026
Key Facts
- FQDN stands for Fully Qualified Domain Name and is the complete address of a resource on the internet
- An FQDN includes all domain labels separated by dots, from the subdomain through the top-level domain
- FQDNs are resolved to IP addresses through the Domain Name System (DNS) hierarchy
- The maximum length of an FQDN is 253 characters, with individual labels limited to 63 characters
- FQDNs are case-insensitive and always end with a dot (root domain) in technical notation, though the trailing dot is often omitted in practice
Understanding FQDNs
A Fully Qualified Domain Name (FQDN) is the complete address used to identify a specific computer or service on the internet. Unlike a simple domain name, an FQDN provides the absolute location of a resource within the global DNS hierarchy, leaving no ambiguity about which system you're referring to.
Components of an FQDN
An FQDN consists of several parts working together. The leftmost label is typically the hostname (such as 'mail' or 'www'), followed by the domain name (like 'google'), and finally the top-level domain (TLD) such as 'com', 'org', or 'edu'. Each label is separated by a period (dot). For example, in the FQDN mail.google.com, 'mail' is the hostname, 'google' is the domain, and 'com' is the TLD.
How FQDNs Work
When you enter an FQDN into your browser or use it in an application, the system queries DNS servers to translate it into an IP address. This process involves contacting recursive resolvers that follow the DNS hierarchy from root servers down through authoritative nameservers until the IP address is found. Because FQDNs are globally unique, this lookup always produces the correct result regardless of network context.
FQDN vs. Hostname vs. Domain Name
It's important to understand the differences between related terms. A hostname is just the local name of a computer (like 'mail'). A domain name is the registered name (like 'google.com'). An FQDN is the complete name that combines them (like 'mail.google.com'). The FQDN is the only one that uniquely identifies a specific resource across the entire internet.
Common Uses of FQDNs
FQDNs are used extensively in modern internet infrastructure. Web servers use them in SSL certificates to secure connections. Email systems use them to route messages correctly. Network administrators use them in DNS records, firewall rules, and access control lists. System administrators use them when configuring services and managing distributed systems. FQDNs ensure that services can be reliably accessed from anywhere on the internet.
Technical Specifications
According to DNS standards, an FQDN can be up to 253 characters long, with each individual label (the parts between dots) limited to 63 characters. FQDNs are case-insensitive, meaning 'Google.COM' and 'google.com' refer to the same resource. In formal DNS notation, FQDNs end with a trailing dot representing the root domain, though this is often omitted in everyday usage.
Related Questions
What is the difference between FQDN and domain name?
A domain name is the registered name like 'google.com', while an FQDN includes the full path to a specific resource like 'mail.google.com'. The FQDN is more complete and uniquely identifies a particular service or computer within that domain.
How is an FQDN resolved to an IP address?
When an FQDN is entered, the system queries DNS recursive resolvers that traverse the DNS hierarchy. Starting from root nameservers, they follow referrals through authoritative nameservers until reaching the server holding the DNS record that contains the corresponding IP address.
Can an FQDN have multiple IP addresses?
Yes, an FQDN can resolve to multiple IP addresses through DNS round-robin or load balancing. This allows services to distribute traffic across multiple servers while maintaining a single, easy-to-remember FQDN address.
More What Is in Daily Life
Also in Daily Life
More "What Is" Questions
Trending on WhatAnswers
Browse by Topic
Browse by Question Type
Sources
- Wikipedia - Fully Qualified Domain NameCC-BY-SA-4.0
- RFC 1035 - Domain Names - Implementation and SpecificationPublic Domain