<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Control WebPanel Wiki &#187; DNS</title>
	<atom:link href="https://wiki.centos-webpanel.com/category/dns/feed" rel="self" type="application/rss+xml" />
	<link>https://wiki.centos-webpanel.com</link>
	<description>CentOS WebPanel Wiki</description>
	<lastBuildDate>Wed, 12 Feb 2025 20:38:16 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.1.1</generator>
	<item>
		<title>Custom DNS Zone Template</title>
		<link>https://wiki.centos-webpanel.com/custom-dns-zone-template</link>
		<comments>https://wiki.centos-webpanel.com/custom-dns-zone-template#comments</comments>
		<pubDate>Fri, 26 Jul 2019 09:52:21 +0000</pubDate>
		<dc:creator><![CDATA[publisher]]></dc:creator>
				<category><![CDATA[DNS]]></category>
		<category><![CDATA[Custom DNS Zone Template]]></category>

		<guid isPermaLink="false">http://wiki.centos-webpanel.com/?p=1231</guid>
		<description><![CDATA[Custom Default DNS Zone Template You can change a default DNS Zone template which is used when creating a new-account or domain. By default, cwp is using default.tpl for all new accounts and domains. If you need to change it please note that you need to make a file as default.tpl is overwritten on every [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>Custom Default DNS Zone Template</strong></p>
<p>You can change a default DNS Zone template which is used when creating a new-account or domain.<br />
By default, cwp is using default.tpl for all new accounts and domains.</p>
<p>If you need to change it please note that you need to make a file as default.tpl is overwritten on every cwp update.<br />
Default DNS Zone template files are in this folder: /usr/local/cwpsrv/htdocs/resources/conf/dns/bind/zones/</p>
<p>When you create a new file then you can activate it as a default from cwp.admin -> CWP Settings -> Edit Settings</p>
<p><strong>Options that are replaced:</strong></p>
<p>%domain% = new domain<br />
%dns-email% = email of domain owner<br />
%ns1% = nameserver 1<br />
%ns2% = nameserver 2<br />
%ip% = account/domain IP address</p>
]]></content:encoded>
			<wfw:commentRss>https://wiki.centos-webpanel.com/custom-dns-zone-template/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slave2 DNS Server</title>
		<link>https://wiki.centos-webpanel.com/slave2-dns-server</link>
		<comments>https://wiki.centos-webpanel.com/slave2-dns-server#comments</comments>
		<pubDate>Thu, 11 Jul 2019 00:02:21 +0000</pubDate>
		<dc:creator><![CDATA[publisher]]></dc:creator>
				<category><![CDATA[DNS]]></category>
		<category><![CDATA[Slave2 DNS Server]]></category>

		<guid isPermaLink="false">http://wiki.centos-webpanel.com/?p=1205</guid>
		<description><![CDATA[Slave2 DNS Server - Cluster Setup If you need to have multiple DNS servers then you can have them connected to the slave dns manager. Slave2 DNS Server requires that you have previously installed Slave DNS Server &#038; Manager. Please read more detailed info here. Create configuration file: /root/dns_sync_slave2.conf USERNAME="slave" SERVER="121.122.123.124" SSHPORT="22" SOURCESYNCLOCATION="/var/named/slave" CHECKMAINDNS="centos-webpanel.com" LOCALSYNCLOCATION="/var/named/slave" [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>Slave2 DNS Server - Cluster Setup</strong><br />
If you need to have multiple DNS servers then you can have them connected to the slave dns manager.<br />
Slave2 DNS Server requires that you have previously installed Slave DNS Server &#038; Manager.</p>
<p>Please read more detailed info <a href="/slave-dns-server-manager-dns-cluster" title="Slave DNS Server &#038; Manager – DNS Cluster">here</a>.</p>
<p>Create configuration file: /root/dns_sync_slave2.conf</p>
<pre>USERNAME="slave"
SERVER="121.122.123.124"
SSHPORT="22"
SOURCESYNCLOCATION="/var/named/slave"
CHECKMAINDNS="centos-webpanel.com"
LOCALSYNCLOCATION="/var/named/slave"
LOCALCONFFILE="/etc/named/slave_additional.conf"</pre>
<p>* SERVER = IP of Slave DNS Server &#038; Manager.<br />
* SSHPORT = SSH-Port of Slave DNS Server &#038; Manager.<br />
* SOURCESYNCLOCATION = Location of DNS zone files on Slave DNS Server &#038; Manager.<br />
* CHECKMAINDNS = This is a domain used for testing Slave DNS Server &#038; Manager, it can be any and it doesn't need to be on the server.<br />
* LOCALSYNCLOCATION = Location for DNS zone files on this local server.<br />
* LOCALCONFFILE = Configuration files which contains the list of all zone files on this local server.</p>
<p>Setup cron how often you want to check for changes</p>
<pre>crontab -e</pre>
<p>* On servers with many clients and domains 100+ we recommend 5min cron.<br />
* For servers with 1000+ you can go even with every 1-2 minutes.<br />
example every 1 minute</p>
<pre>* * * * * sh /scripts/dns_sync_slave2</pre>
<p>In file /etc/named.conf after last include add:</p>
<pre>include "/etc/named/slave_additional.conf";</pre>
<p>Prepare config files</p>
<pre>touch /etc/named/slave_additional.conf
chown named.named /etc/named/slave_additional.conf</pre>
<p>go in cwp.admin -> Server Settings -> SSH Key Generator<br />
there you need to generate new Keys</p>
<p>Go to Slave DNS Server &#038; Manager<br />
add key to the Slave DNS Server &#038; Manager user you are using as "slave"</p>
<pre>mkdir /home/slave/.ssh
nano /home/slave/.ssh/authorized_keys</pre>
<p><em>** paste your key here which you had generated on the Slave2 DNS Server</em></p>
<pre>chown -R slave.slave /home/slave/.ssh
chmod 600 /home/slave/.ssh/authorized_keys
chmod 700 /home/slave/.ssh/</pre>
<p>You will also need to enable bash shell for that user so rsync could work</p>
<pre>chsh -s /bin/bash slave</pre>
<p>You can now test ssh connection like this from Slave2 DNS Server to Slave DNS Server &#038; Manager<br />
ssh slave@SERVER-IP -p SSH-PORT<br />
If your connection goes ok without asking for the password then you are fully set.</p>
]]></content:encoded>
			<wfw:commentRss>https://wiki.centos-webpanel.com/slave2-dns-server/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slave DNS Server &amp; Manager download version</title>
		<link>https://wiki.centos-webpanel.com/slave-dns-server-manager-download-version</link>
		<comments>https://wiki.centos-webpanel.com/slave-dns-server-manager-download-version#comments</comments>
		<pubDate>Wed, 10 Jul 2019 23:42:15 +0000</pubDate>
		<dc:creator><![CDATA[publisher]]></dc:creator>
				<category><![CDATA[DNS]]></category>
		<category><![CDATA[Slave DNS Manager Download]]></category>

		<guid isPermaLink="false">http://wiki.centos-webpanel.com/?p=1199</guid>
		<description><![CDATA[Slave DNS Server &#038; Manager download version - installation instructions Please read more detailed info here. Latest Update: March 7, 2021 For Slave DNS Manager is recommended that you have a clean server with CWP which will be used as Slave DNS (ns2). Create a New Account on the CWPpro Server * This is the [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><strong>Slave DNS Server &#038; Manager download version - installation instructions</strong><br />
Please read more detailed info <a href="/slave-dns-server-manager-dns-cluster" title="Slave DNS Server &#038; Manager – DNS Cluster">here</a>.</p>
<p><strong>Latest Update:</strong> March 7, 2021</p>
<p><em>For Slave DNS Manager is recommended that you have a clean server with CWP which will be used as Slave DNS (ns2).</em></p>
<p><strong>Create a New Account on the CWPpro Server</strong><br />
<em>* This is the server you plan to use as Slave DNS Server &#038; Manager</em><br />
username: recommended is slave (as it will be used in the tutorial)<br />
domain: domain which you plan to use for slave dns manager gui and API access</p>
<p><strong>Download Slave DNS Manage and upload it to public_html folder on your cwp account</strong><br />
Latest update: July 20, 2019. (manual update required by overwriting files)</p>
<pre>cd /home/USERNAME/public_html
wget http://dl1.centos-webpanel.com/files/cwp/addons/cwp-slave_dns.zip
unzip cwp-slave_dns.zip
mv slave_dns/* .
rm -f index.html</pre>
<p><strong>Fix file permissions (you can do that also from cwp)</strong></p>
<pre>chown -R USERNAME.USERNAME /home/USERNAME/public_html/*</pre>
<p><strong>MySQL: Create User and Database</strong><br />
Go to CWP module: MySQL Manager --> Create Database and User </p>
<p>Edit file /home/USERNAME/public_html/inc/db_conn.php.sample and enter your database connection details<br />
Rename sample file to get DB connection into production</p>
<pre>mv inc/db_conn.php.sample inc/db_conn.php</pre>
<p>Import database by using PhpMyAdmin or with MySQL command</p>
<pre>mysql DATABASENAME < sql/slave_dns.sql</pre>
<p>Create permissions for the user to be able to control the bind DNS.<br />
Replace USERNAME with the user of the account you had created in cwp</p>
<p>FILENAME: /etc/sudoers.d/USERNAME</p>
<pre>
%USERNAME  ALL= NOPASSWD: /bin/systemctl start named
%USERNAME  ALL= NOPASSWD: /bin/systemctl stop named
%USERNAME  ALL= NOPASSWD: /bin/systemctl restart named
%USERNAME  ALL= NOPASSWD: /bin/systemctl reload named
%USERNAME  ALL= NOPASSWD: /bin/systemctl status named
%USERNAME  ALL= NOPASSWD: /bin/systemctl is-active named
</pre>
<pre>touch /etc/named/slave.conf
chmod 771 /etc/named
usermod -a -G named USERNAME
chown USERNAME.named /etc/named/slave.conf

mkdir /var/named/slave
chown named.named /var/named/slave</pre>
<p>Edit File: /etc/named.conf and add this in options section before closing }</p>
<pre>masterfile-format text;</pre>
<p>Add after options{} where other include lines are specifed</p>
<pre>//Slave dns configuration
include "/etc/named/slave.conf";</pre>
<p>Now you can login to DNS Manager GUI by using a domain link of the account you have created</p>
<p><strong>Default login for DNS Manager GUI admin/root</strong><br />
Username: root<br />
Password: FX8QKxvQ<br />
<em>* Please change the default password after the first login</em></p>
<p><strong>Adding WebServers to DNS</strong><br />
- On dns manager GUI create a new user for each server or use a single for all webservers if you plan to transfer accounts from one to another webserver.<br />
- On CWP WebServer go to DNS Functions -> Slave DNS Manager</p>
<p>For Slave Host you need to use the same URL you are accessing DNS Manager GUI, example</p>
<p>http://slave-dns.manager.domain.com</p>
<p>* You can also add this as an addon domain to the account later.</p>
<h1>CWPpro WebServer configuration</h1>
<p>Edit File: /etc/named.conf and add this in options section before closing }</p>
<pre>//Slave dns configuration
allow-transfer {111.112.113.114;};
allow-recursion {111.112.113.114;};
also-notify {111.112.113.114;};
masterfile-format text;
</pre>
<p><strong>Mostly know issues</strong><br />
issue: domain/zone not deleted from /etc/named/slave.conf<br />
apache logs file: /usr/local/apache/domlogs/DOMAIN.error.log<br />
apache logs line: sed: couldn't open temporary file /etc/named/sedzizIXw: Permission denied<br />
solution: chmod 771 /etc/named</p>
<p>issue: Slave BIND/DNS not showing changes<br />
solution: try to restart named and check if the service has some errors in the /var/log/messages</p>
]]></content:encoded>
			<wfw:commentRss>https://wiki.centos-webpanel.com/slave-dns-server-manager-download-version/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Slave DNS Server &amp; Manager - DNS Cluster</title>
		<link>https://wiki.centos-webpanel.com/slave-dns-server-manager-dns-cluster</link>
		<comments>https://wiki.centos-webpanel.com/slave-dns-server-manager-dns-cluster#comments</comments>
		<pubDate>Wed, 10 Jul 2019 23:06:54 +0000</pubDate>
		<dc:creator><![CDATA[publisher]]></dc:creator>
				<category><![CDATA[Clusters]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Slave DNS Server]]></category>

		<guid isPermaLink="false">http://wiki.centos-webpanel.com/?p=1197</guid>
		<description><![CDATA[CWP SLAVE DNS and DNS Clusters Please note that we have two options of slave DNS: - Slave DNS Server on our hosted server (you get an account with domain limit you need) - Slave DNS Server download version (a full and FREE Slave DNS Manager where you can add/remove users, set domain limits and [&#8230;]]]></description>
				<content:encoded><![CDATA[<h1>CWP SLAVE DNS and DNS Clusters</h1>
<p>Please note that we have two options of slave DNS:<br />
- Slave DNS Server on our hosted server (you get an account with domain limit you need)<br />
- Slave DNS Server download version (a full and FREE Slave DNS Manager where you can add/remove users, set domain limits and manage domains)<br />
<em>* The only requirement is to have a CWPpro license.</em></p>
<p><a href="http://wiki.centos-webpanel.com/wp-content/uploads/2019/07/CWP_DNS_Cluster1.png"><img src="/wp-content/uploads/2019/07/CWP_DNS_Cluster-e1562804855974.png" alt="CWP_DNS_Cluster" class="alignnone size-medium wp-image-1211" /></a></p>
<p><strong>Slave DNS Server &#038; Manager on our hosted server</strong><br />
For those having only a single VPS or dedicated server and with a need additional remote DNS server as ns2 they can order a slave DNS from our website.</p>
<p>Features of CWP Slave DNS server hosted by us:<br />
- Automatic sync DNS zones from a master server (your CWPpro) on serial change.<br />
- Automatic sync DNS zones on add/remove.<br />
- Manage DNS zones/domains from your CWP or our Website GUI.<br />
- You get an account on our Slave DNS Manager where you have a limited number of domains based on the package you order.<br />
- You don't need to buy an additional server and manually setup DNS on it.</p>
<p>You can order it <a href="https://support.centos-webpanel.com/cart.php?a=add&#038;pid=13" title="CWP - Slave DNS Server" target="_blank">here</a>.</p>
<p><strong>Slave DNS Server &#038; Manager download version</strong><br />
A Full and FREE Slave DNS Server &#038; Manager where you can add/remove users, set domain limits and manage domains.<br />
The most important part is that this is a completely FREE and scalable for bigger hosting providers with many domains.</p>
<p>Features of CWP Slave DNS Server &#038; Manager download version:<br />
- Completely FREE, The only requirement is to have CWPpro to be able to sync zones.<br />
- Automatic sync DNS zones from a master server (your CWPpro) on serial change.<br />
- Automatic sync DNS zones on add/remove.<br />
- Unlimited number of accounts.<br />
- Option to limit the number of domains per account (if you sell/offer DNS cluster to other clients).<br />
- Ability to connect multiple Slave2 DNS Servers (used as DNS Cluster).<br />
- Ability to connect multiple CWPpro WebServers on a single account.<br />
- Ability to connect multiple CWPpro WebServers on separate accounts.</p>
<p>You can check the installation instructions <a href="/slave-dns-server-manager-download-version" title="CWP - Slave DNS Server &#038; Manager download" target="_blank">here</a>.</p>
<p>Possible scenarios:<br />
You can connect multiple CWPpro WebServers to single Slave DNS Manager and make it as ns2 for all of the CWPpro Webservers.<br />
You can also use it as ns1 and then add multiple additional Slave2 DNS Servers as ns2, ns3, ns4....</p>
<p><strong>Slave DNS Server &#038; Manager - How it works:</strong><br />
In CWPpro WebServer on dns zone serial change, new account/domain/subdomain add/remove/edit it syncs DNS zone to the Slave DNS Manager.<br />
DNS Zone is added to Slave DNS Manager from CWPpro WebServer via API on the Slave DNS Manager then Bind dns server (on the slave) transfers zone to itself acting as a slave dns server.</p>
<p><strong>Slave2 DNS Server - How it works:</strong><br />
Big providers mostly have a custom DNS Cluster which handles all dns domains they have on multiple webservers to reduce resource usage by dns on the webservers.<br />
Slave2 DNS Server is designed to be an additional DNS Server for big providers which need to have stability if some DNS servers get overloaded or unavailable.</p>
<p>It's using rsync running via cron which checks for changes on the Slave DNS Manager and based on the changes from rsync it will add or remove dns zone from itself.<br />
It also has the ability to check if Slave DNS Manage is responding on dns queries before accepting new changes to prevent multiple DNS servers to be down at the same time.</p>
<p>Slave DNS Servers can be located in different data centers worldwide.</p>
<p>You can check the installation instructions for Slave2 DNS Servere <a href="/slave2-dns-server" title="CWP - Slave2 DNS Server" target="_blank">here</a>.</p>
<p><strong>INFO</strong><br />
<em>* Only WebServers need to have CWPpro, DNS servers don't need to have it.</em></p>
]]></content:encoded>
			<wfw:commentRss>https://wiki.centos-webpanel.com/slave-dns-server-manager-dns-cluster/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>FreeDNS (Free DNS Cluster)</title>
		<link>https://wiki.centos-webpanel.com/freedns-free-dns-cluster</link>
		<comments>https://wiki.centos-webpanel.com/freedns-free-dns-cluster#comments</comments>
		<pubDate>Sat, 11 Jul 2015 01:06:56 +0000</pubDate>
		<dc:creator><![CDATA[publisher]]></dc:creator>
				<category><![CDATA[DNS]]></category>

		<guid isPermaLink="false">http://wiki.centos-webpanel.com/?p=367</guid>
		<description><![CDATA[FreeDNS is a free DNS Cluster with DDoS protection for serving your website dns records. Cluster DNS is using servers in North America and Europe. You can register and start using FreeDNS here http://freedns.centos-webpanel.com To start using FreeDNS you need to set following Name-Servers for your domain with your domain registrar: ns1.centos-webpanel.com ns2.centos-webpanel.com]]></description>
				<content:encoded><![CDATA[<p>FreeDNS is a free DNS Cluster with DDoS protection for serving your website dns records.<br />
Cluster DNS is using servers in North America and Europe.</p>
<p>You can register and start using FreeDNS here<br />
<a href="http://freedns.centos-webpanel.com" title="FreeDNS (Free Cluster DNS)" target="_blank">http://freedns.centos-webpanel.com</a></p>
<p>To start using FreeDNS you need to set following Name-Servers for your domain with your domain registrar:</p>
<pre>ns1.centos-webpanel.com
ns2.centos-webpanel.com</pre>
]]></content:encoded>
			<wfw:commentRss>https://wiki.centos-webpanel.com/freedns-free-dns-cluster/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DNS/BIND Errors</title>
		<link>https://wiki.centos-webpanel.com/dnsbind-errors</link>
		<comments>https://wiki.centos-webpanel.com/dnsbind-errors#comments</comments>
		<pubDate>Mon, 15 Jun 2015 05:14:19 +0000</pubDate>
		<dc:creator><![CDATA[publisher]]></dc:creator>
				<category><![CDATA[DNS]]></category>
		<category><![CDATA[DNS Errors]]></category>

		<guid isPermaLink="false">http://wiki.centos-webpanel.com/?p=287</guid>
		<description><![CDATA[Few most seen errors with bind/DNS and instruction on how to fix them Starting named: Error in named configuration: /etc/named.conf:57: zone 'ns1.web.co.uk': already exists previous definition: /etc/named.conf:46 /etc/named.conf:58: zone 'ns2.web.co.uk': already exists previous definition: /etc/named.conf:47 [FAILED] Edit file /etc/named.conf with your favorite file editor or from CWP and remove duplicated entries for above specified zones.]]></description>
				<content:encoded><![CDATA[<p><strong>Few most seen errors with bind/DNS and instruction on how to fix them</strong></p>
<p><code>Starting named:<br />
Error in named configuration:<br />
/etc/named.conf:57: zone 'ns1.web.co.uk': already exists previous definition: /etc/named.conf:46<br />
/etc/named.conf:58: zone 'ns2.web.co.uk': already exists previous definition: /etc/named.conf:47<br />
[FAILED]</code></p>
<p>Edit file <strong>/etc/named.conf</strong> with your favorite file editor or from CWP and remove duplicated entries for above specified zones.</p>
<hr />
]]></content:encoded>
			<wfw:commentRss>https://wiki.centos-webpanel.com/dnsbind-errors/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to setup Name Servers ?</title>
		<link>https://wiki.centos-webpanel.com/how-to-setup-name-servers</link>
		<comments>https://wiki.centos-webpanel.com/how-to-setup-name-servers#comments</comments>
		<pubDate>Mon, 23 Feb 2015 19:53:39 +0000</pubDate>
		<dc:creator><![CDATA[publisher]]></dc:creator>
				<category><![CDATA[DNS]]></category>

		<guid isPermaLink="false">http://wiki.centos-webpanel.com/?p=23</guid>
		<description><![CDATA[It's required that you have installed CentOS WebPanel and at least one public IP address. ** Please note that some domain providers will require that you have IP from two different IP ranges. Settings CWP.admin - DNS Functions --> Edit NameServers IPs Add here add your subdomains you want to use for the NameServers and [&#8230;]]]></description>
				<content:encoded><![CDATA[<p><object width="700" height="425"><param name="movie" value="https://www.youtube.com/v/U-U0AdO5YZU?version=3&amp;showinfo=0&amp;theme=light&amp;fs=1&amp;rel=0&amp;iv_load_policy=3&amp;modestbranding=1"></param><param name="allowScriptAccess" value="always"></param><param name="allowFullScreen" value="true"></param><embed src="https://www.youtube.com/v/U-U0AdO5YZU?version=3&amp;showinfo=0&amp;theme=light&amp;fs=1&amp;rel=0&amp;iv_load_policy=3&amp;modestbranding=1" type="application/x-shockwave-flash" allowScriptAccess="always" allowfullscreen="true" width="700" height="425"></embed></object></p>
<p>It's required that you have installed CentOS WebPanel and at least one public IP address.<br />
** Please note that some domain providers will require that you have IP from two different IP ranges.</p>
<p><strong>Settings</strong><br />
CWP.admin - DNS Functions --> Edit NameServers IPs</p>
<p>Add here add your subdomains you want to use for the NameServers and one IP for each nameserver eg.<br />
<code>ns1.centos-webpanel.com --> 185.4.149.83<br />
ns2.centos-webpanel.com --> 185.4.149.90</code></p>
<p>If you are using one IP then it should looks like:<br />
<code>ns1.demo.com --> 185.4.149.83<br />
ns2.demo.com --> 185.4.149.83</code></p>
<blockquote><p>Don't forget that this NameServer must be registered with your domain registrar or they will not work!!!</p>
<p>Changing DNS records can take up to 24-48 hours!!!</p></blockquote>
<p>Please use this website for quicker/live DNS testing: <a href="http://leafdns.com/" title="DNS testing" target="_blank">http://leafdns.com/</a></p>
<hr />
<strong>How to Register your Nameservers with Domain Registrars</strong></p>
<p>Enom Instructions: <a href="http://www.enom.com/help/faq_dns.asp" title="Enom" target="_blank">http://www.enom.com/help/faq_dns.asp</a><br />
Godaddy Instructions: <a href="https://uk.godaddy.com/help/add-my-own-host-names-as-nameservers-12320" title="Godaddy" target="_blank">https://uk.godaddy.com/help/add-my-own-host-names-as-nameservers-12320</a><br />
NameCheap: <a href="https://www.namecheap.com/support/knowledgebase/article.aspx/768/10/how-do-i-register-personal-nameservers-for-my-domain" title="NameCheap" target="_blank">https://www.namecheap.com/support/knowledgebase/article.aspx/768/10/how-do-i-register-personal-nameservers-for-my-domain</a></p>
]]></content:encoded>
			<wfw:commentRss>https://wiki.centos-webpanel.com/how-to-setup-name-servers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
