What Does FQDN Mean?
An FQDN (Fully Qualified Domain Name) represents the complete address of a device or resource on the internet.
- It includes both the hostname and the domain name, ending with a top-level domain (TLD).
- FQDNs are written in this exact format:
[hostname].[domain].[tld]
.
The term “qualified” refers to how fully specified the name is, ensuring no ambiguity in identifying a system’s location within the Domain Name System (DNS).
- If a domain name lacks this full specification, it’s known as a Partially Qualified Domain Name (PQDN).
An FQDN may also be called an absolute domain name, as it defines the complete DNS path to the host.
FQDN Examples
FQDNs always follow a consistent pattern: [hostname].[domain].[tld]
.
- For instance, the mail server of example.com would use
mail.example.com
as its FQDN. - This tells DNS exactly which host to locate on the internet.
Other examples include:
www.microsoft.com
: hostname is www, domain is microsoft, TLD is com.en.wikipedia.org
: hostname is en, domain is wikipedia, TLD is org.p301srv03.timandtombreadco.us
: hostname is p301srv03, and the FQDN covers the full path.
These formats allow precise routing of traffic to web pages, email servers, and network devices.
More Information on FQDN
Technically, an FQDN ends with a dot, like www.microsoft.com.
—this represents the DNS root level.
- Most systems automatically omit the final period, but it is still implied by DNS protocols.
- While some web browsers support the trailing period, it’s rarely necessary to enter it manually.
A name like p301srv03
alone isn’t an FQDN because it lacks a domain context.
- It could belong to any number of domains, such as
p301srv03.microsoft.com
orp301srv03.wikipedia.com
. - Similarly, even
microsoft.com
is not fully qualified unless the hostname (e.g., www) is specified.
Without a full structure, domain names lack uniqueness, which is why FQDNs are critical for accurate identification.
Partially Qualified Domain Name (PQDN)
A PQDN (Partially Qualified Domain Name) provides only part of the full domain path.
- This includes just a hostname or a hostname with a partial domain, often used when context fills in the rest.
In certain environments, using a PQDN is acceptable for convenience.
- For example,
p301srv03
is usable in a controlled network where the domain is known to bewikipedia.com
. - A DNS administrator might configure a system where
en
refers directly toen.wikipedia.org
.
These names are often used in:
- DNS configuration files, where the domain context is defined once.
- Local networks, where devices share the same domain and only hostnames are required.
It’s important to distinguish between the two:
- An FQDN gives the absolute address, while a PQDN is contextual and may vary depending on the environment.