Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
159 changes: 115 additions & 44 deletions src/content/docs/dns/nameservers/index.mdx
Original file line number Diff line number Diff line change
@@ -1,45 +1,116 @@
---
pcx_content_type: concept
title: Nameservers
sidebar:
order: 5
label: About
---
<!DOCTYPE html>
<html>
<head>
<title> Nable Shop </title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
nav {
display: flex;
justify-content: center;
background-color: #444;
}
nav a {
color: #fff;
padding: 14px 20px;
text-decoration: none;
text-align: center;
}
nav a:hover {
background-color: #555;
}
main {
padding: 20px;
}
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
</style>
</head>
<body>
<header>
<h1> Willkommen in Nable Shop </h1>
</header>
<nav>
<a href="#home">Home</a>
<a href="#about">Über mich</a>
<a href="#contact">Kontakt</a>
</nav>
<main>
<h2>Home</h2>
<p>Dies ist eine einfache Webseite, die mit HTML und CSS erstellt wurde.</p>
</main>
<footer>
<p>&copy; 2024 Meine Webseite</p>
</footer>
</body>
</html>

<!DOCTYPE html>
<html>
<head>
<title>Download-Seite</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
}
header {
background-color: #333;
color: #fff;
padding: 10px 0;
text-align: center;
}
main {
padding: 20px;
text-align: center;
}
.download-link {
display: inline-block;
margin: 10px;
padding: 10px 20px;
background-color: #444;
color: #fff;
text-decoration: none;
border-radius: 5px;
}
.download-link:hover {
background-color: #555;
}
</style>
</head>
<body>
<header>
<h1>Download-Seite</h1>
</header>
<main>
<h2>Verfügbare Downloads</h2>
<a href="datei1.zip" class="download-link" download>Datei 1 herunterladen</a>
<a href="datei2.zip" class="download-link" download>Datei 2 herunterladen</a>
<a href="datei3.zip" class="download-link" download>Datei 3 herunterladen</a>
</main>
</body>
</html>

import { Render } from "~/components"

As explained in [How DNS works](https://www.cloudflare.com/learning/dns/what-is-dns/), from the moment a user types an address (`www.example.com`) into their web browser, the resolution of a DNS query takes place. Also, the process behind DNS resolution involves different computers (or servers).

In the context of Cloudflare DNS, nameservers refer to authoritative nameservers, which are the last stop in the DNS query resolution. When a nameserver is authoritative for `example.com`, it means that DNS resolvers will consider responses from this nameserver when a user tries to access `example.com`.

## Authoritative nameservers offering

Within Cloudflare, and depending on your plan, you can choose between using Cloudflare-branded nameservers or setting up your own custom nameservers. The names for Cloudflare-branded nameservers are automatically assigned and cannot be changed.

Regardless of the type you choose, for these nameservers to be authoritative for your domain, you need to [update your domain nameservers](/dns/nameservers/update-nameservers/). Updating your nameservers is required to activate your domain on Cloudflare and use most of our [application services](/fundamentals/concepts/how-cloudflare-works/#application-services).

### Standard nameservers

When you add a domain on a [primary (full)](/dns/zone-setups/full-setup/) DNS setup, Cloudflare automatically assigns two standard nameservers for your zone.

Standard nameservers are hosted on `ns.cloudflare.com` and follow the pattern `<proper_name>.ns.cloudflare.com`.

To know the reason behind these nameserver names, refer to [our blog](https://blog.cloudflare.com/whats-the-story-behind-the-names-of-cloudflares-name-servers/).

### Advanced nameservers

Enterprise accounts on [Foundation DNS](/dns/foundation-dns/) have access to advanced nameservers.

[Advanced nameservers](/dns/foundation-dns/advanced-nameservers/) are hosted on `foundationdns.com`, `foundationdns.net`, and `foundationdns.org`.

Each zone that uses advanced nameservers is assigned a set of three nameservers names: `<color>.foundationdns.com`, `<color>.foundationdns.net`, and `<color>.foundationdns.org`.

### Custom nameservers

With [custom nameservers](/dns/nameservers/custom-nameservers/), your nameservers are hosted on your own domain (or domains) and, in this sense, are not Cloudflare branded.

You provide fully qualified domain names (`ns1.mydomain.com`) for your nameservers, and Cloudflare assigns one IPv4 and one IPv6 to each of your custom nameservers.

:::caution
<Render file="ns-advanced-vs-custom" />
:::