<?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>configuration &#8211; Hasil Pileg Terkini</title>
	<atom:link href="https://hasilpileg.com/tag/configuration/feed/" rel="self" type="application/rss+xml" />
	<link>https://hasilpileg.com</link>
	<description>Hasil Pileg Terkini</description>
	<lastBuildDate>Wed, 21 May 2025 09:57:34 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.8.1</generator>
	<item>
		<title>Guide complet de l&#8217;installation et de la configuration du serveur DNS avec Bind9 sur Debian 10</title>
		<link>https://hasilpileg.com/guide-complet-de-linstallation-et-de-la-configuration-du-serveur-dns-avec-bind9-sur-debian-10/</link>
					<comments>https://hasilpileg.com/guide-complet-de-linstallation-et-de-la-configuration-du-serveur-dns-avec-bind9-sur-debian-10/#respond</comments>
		
		<dc:creator><![CDATA[Hasil Pileg]]></dc:creator>
		<pubDate>Wed, 21 May 2025 09:57:34 +0000</pubDate>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[avec]]></category>
		<category><![CDATA[Bind9]]></category>
		<category><![CDATA[complet]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[DNS]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[linstallation]]></category>
		<category><![CDATA[serveur]]></category>
		<category><![CDATA[sur]]></category>
		<guid isPermaLink="false">https://hasilpileg.com/guide-complet-de-linstallation-et-de-la-configuration-du-serveur-dns-avec-bind9-sur-debian-10/</guid>

					<description><![CDATA[Introduction: Qu&#8217;est-ce que Bind9? Bind9 (Domaine de nom Internet de Berkeley) Le logiciel open source est-il utilisé pour créer et gérer Serveur DNS. DNS&#46;&#46;&#46;]]></description>
										<content:encoded><![CDATA[<p> <br />
</p>
<div>
<h2 class="wp-block-heading"><strong>Introduction: Qu&#8217;est-ce que Bind9?</strong></h2>
<p><strong>Bind9 (Domaine de nom Internet de Berkeley)</strong> Le logiciel open source est-il utilisé pour créer et gérer <strong>Serveur DNS</strong>. DNS (système de noms de domaine) sert de traducteur <strong>nom de domaine</strong> (Exemple: <code>tjktkel8.org</code>) devenir <strong>L&#8217;adresse de l&#8217;IP</strong> (Exemple: <code>192.168.78.116</code>), facilitant ainsi la communication sur Internet.</p>
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<h2 class="wp-block-heading"><strong>Étapes d&#8217;installation et de configuration du serveur DNS dans Debian 10</strong></h2>
<h3 class="wp-block-heading"><strong>1. Mettre à jour le système d&#8217;exploitation</strong></h3>
<p>Avant l&#8217;installation, assurez-vous que le package système est mis à jour.</p>
<pre class="wp-block-preformatted"><code>sudo apt update &amp;&amp; sudo apt upgrade -y<br/></code></pre>
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<h3 class="wp-block-heading"><strong>2. Install Bind9</strong></h3>
<p>Installez Bind9 avec les aides nécessaires.</p>
<pre class="wp-block-preformatted"><code>sudo apt install bind9 bind9utils bind9-doc -y<br/></code></pre>
<p>Vérifiez si le service Bind9 est en cours d&#8217;exécution:</p>
<pre class="wp-block-preformatted"><code>sudo systemctl status bind9<br/></code></pre>
<p>S&#8217;il n&#8217;a pas été exécuté, activez et démarrez le service:</p>
<pre class="wp-block-preformatted"><code>sudo systemctl enable bind9<br/>sudo systemctl start bind9<br/></code></pre>
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<h3 class="wp-block-heading"><strong>3. Configuration de Bind9 en tant que serveur DNS</strong></h3>
<h4 class="wp-block-heading">3.1 <strong>Modifier la configuration principale Bind9</strong></h4>
<p>La configuration du fichier principal Bind9 est activée <code>/etc/bind/named.conf.options</code>. Modifiez le fichier:</p>
<pre class="wp-block-preformatted"><code>sudo nano /etc/bind/named.conf.options<br/></code></pre>
<p>Trouvez et modifiez les blocs suivants pour définir le transfert DNS (facultatif):</p>
<pre class="wp-block-preformatted"><code>options {<br/>directory "/var/cache/bind";<p>recursion yes;      // Aktifkan rekursi untuk DNS resolver.<br/>allow-query { any; };</p><p>forwarders {<br/>8.8.8.8;        // DNS Google sebagai resolver cadangan.<br/>8.8.4.4;<br/>};</p><p>dnssec-validation auto;<br/>};<br/></p></code></pre>
<p>Enregistrez et quittez l&#8217;éditeur.</p>
<h4 class="wp-block-heading">3.2 <strong>Créer une zone pour un domaine</strong></h4>
<p>Ajoutez la zone à votre domaine dans le fichier <code>/etc/bind/named.conf.local</code>.</p>
<pre class="wp-block-preformatted"><code>sudo nano /etc/bind/named.conf.local<br/></code></pre>
<p>Ajouter la configuration suivante:</p>
<pre class="wp-block-preformatted"><code>zone "tjktkel8.org" {<br/>type master;<br/>file "/etc/bind/db.tjkt1";<br/>};<p>zone "78.168.192.in-addr.arpa" {<br/>type master;<br/>file "/etc/bind/db.tjkt2";<br/>};<br/></p></code></pre>
<p>Le fichier ci-dessus définit deux zones:</p>
<ul class="wp-block-list">
<li><strong>Zona Forward:</strong> Pour mapper le domaine sur l&#8217;IP.</li>
<li><strong>Zone inversée:</strong> Pour mapper l&#8217;IP au domaine.</li>
</ul>
<h4 class="wp-block-heading">3.3 <strong>Configuration des fichiers de zone avant</strong></h4>
<p>Créer un fichier de zone pour <code>db.tjkt1</code>.</p>
<pre class="wp-block-preformatted"><code>sudo nano /etc/bind/db.tjkt1.com<br/></code></pre>
<p>DÉPOSER:</p>
<pre class="wp-block-preformatted"><code>$TTL    604800<br/>@       IN      SOA     ns1.tjktkel8.org. root.tjktkel8.org. (<br/>2         ; Serial<br/>604800         ; Refresh<br/>86400         ; Retry<br/>2419200         ; Expire<br/>604800 )       ; Negative Cache TTL<p>@       IN      NS      ns1.tjktkel8.org.<br/>@       IN      A       192.168.78.116<br/>ns1     IN      A       192.168.78.116<br/>www     IN      A       192.168.78.116<br/></p></code></pre>
<h4 class="wp-block-heading">3.4 <strong>Configuration des fichiers de zone inverse</strong></h4>
<p>Créer un fichier de zone inverse pour IP <code>192.168.78.0/24</code>.</p>
<pre class="wp-block-preformatted"><code>sudo nano /etc/bind/db.tjkt2<br/></code></pre>
<p>DÉPOSER:</p>
<pre class="wp-block-preformatted"><code>$TTL    604800<br/>@       IN      SOA     ns1.tjktkel8.org. root.tjktkel8.org. (<br/>2         ; Serial<br/>604800         ; Refresh<br/>86400         ; Retry<br/>2419200         ; Expire<br/>604800 )       ; Negative Cache TTL<p>@       IN      NS      ns1.tjktkel8.org.<br/>116     IN      PTR     tjktkel8.org.<br/>116     IN      PTR     www.tjktkel8.org.<br/></p></code></pre>
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<h3 class="wp-block-heading"><strong>4. Vérification et redémarrage Bind9</strong></h3>
<h4 class="wp-block-heading">4.1 <strong>Vérification de la configuration</strong></h4>
<p>Vérifiez si la configuration Bind9 est correcte:</p>
<pre class="wp-block-preformatted"><code>sudo named-checkconf<br/></code></pre>
<p>Vérifiez le fichier de zone:</p>
<pre class="wp-block-preformatted"><code>sudo named-checkzone example.com /etc/bind/db.tjkt1<br/>sudo named-checkzone 1.168.192.in-addr.arpa /etc/bind/db.tjkt1<br/></code></pre>
<p>S&#8217;il n&#8217;y a pas d&#8217;erreurs, continuez.</p>
<h4 class="wp-block-heading">4.2 <strong>Redémarrer les services Bind9</strong></h4>
<p>Redémarrez Bind9 pour appliquer les modifications:</p>
<pre class="wp-block-preformatted"><code>sudo systemctl restart bind9<br/></code></pre>
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<h3 class="wp-block-heading"><strong>5. Buka Port DNS di Firewall (UFW)</strong></h3>
<p>Bind9 en utilisant <strong>port 53</strong> Pour DNS. Assurez-vous que le port est ouvert dans le pare-feu.</p>
<pre class="wp-block-preformatted"><code>sudo ufw allow 53/tcp<br/>sudo ufw allow 53/udp<br/></code></pre>
<p>Vérifiez le statut de pare-feu:</p>
<pre class="wp-block-preformatted"><code>sudo ufw status<br/></code></pre>
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<h3 class="wp-block-heading"><strong>6. Configuration des clients pour utiliser le serveur DNS</strong></h3>
<p>Chez les clients (par exemple d&#8217;autres ordinateurs), modifiez les paramètres <strong>DNS</strong> Afin d&#8217;utiliser l&#8217;IP de Debian Server comme <strong>Resolver DNS</strong>.</p>
<ul class="wp-block-list">
<li>Sur <strong>Linux</strong>: Modifier le fichier <code>/etc/resolv.conf</code>: Copier le code<code>nameserver 192.168.1.10</code></li>
<li>Sur <strong>Fenêtre</strong>:
<ol class="wp-block-list">
<li>Ouvrir <strong>Panneau de contrôle</strong> > <strong>Réseau et Internet</strong> > <strong>Connexions réseau</strong>.</li>
<li>Droite-cliquez sur le réseau, sélectionnez <strong>Propriétés</strong>.</li>
<li>Choisir <strong>Protocole Internet version 4 (TCP / IPv4)</strong>faire un clic <strong>Propriétés</strong>.</li>
<li>Entrez l&#8217;IP de Debian Server dans la colonne <strong>Serveur DNS préféré</strong>.</li>
</ol>
</li>
</ul>
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<h3 class="wp-block-heading"><strong>7. Tester le serveur DNS</strong></h3>
<h4 class="wp-block-heading">7.1 <strong>Test de résolution du nom de domaine</strong></h4>
<p>Sur les serveurs ou les clients qui utilisent le serveur DNS, exécutez la commande:</p>
<pre class="wp-block-preformatted"><code>nslookup tjktkel8.org 192.168.78.116<span style="text-wrap: wrap; background-color: rgb(255, 255, 255); color: initial; font-family: -apple-system, BlinkMacSystemFont, &quot;Segoe UI&quot;, Roboto, Oxygen-Sans, Ubuntu, Cantarell, &quot;Helvetica Neue&quot;, sans-serif; font-size: 18px;"/></code></pre>
<p>Sortie attendue:</p>
<pre class="wp-block-preformatted"><code>Server:  192.168.78.116<br/>Address: 192.168.78.116#53<p>Name:    tjktkel8.org.com<br/>Address: 192.168.78.116<br/></p></code></pre>
<h4 class="wp-block-heading">7.2 <strong>Test de résolution IP (recherche inversée)</strong></h4>
<p>Exécutez les commandes suivantes:</p>
<pre class="wp-block-preformatted"><code>nslookup 192.168.78.116<br/></code></pre>
<p>Sortie attendue:</p>
<pre class="wp-block-preformatted"><code>116.78.168.192.in-addr.arpa  name = tjktkel8.org.<br/></code></pre>
<hr class="wp-block-separator has-alpha-channel-opacity"/>
<h3 class="wp-block-heading"><strong>8. Dépannage</strong></h3>
<ul class="wp-block-list">
<li><strong>CEK Log Bind9:</strong><br />S&#8217;il y a un problème, vérifiez la connexion <code>/var/log/syslog</code>: code bashcopy<code>sudo tail -f /var/log/syslog</code></li>
<li><strong>Vérifier l&#8217;état du service:</strong><br />Assurez-vous que le service s&#8217;exécute correctement: code bashcopy<code>sudo systemctl status bind9</code></li>
</ul>
</div>
<p><br />
<br /><a href="https://hasilpileg.com/">Hasil pileg</a><br />
<br /><a href="https://gentongfilm.com">Review Film</a><br />
<a href="https://usearch.id">Berita Terkini</a><br />
<a href="https://daftarsoal.com">Berita Terkini</a><br />
<a href="https://forbir.com">Berita Terkini</a><br />
<a href="https://gdrivenime.com">review anime</a><br />
</p>
<h3><a href="https://ufabetexpress.biz/">Gaming Center</a></h3>
<p><a href="https://sportstoca.com/">Berita Olahraga</a><br />
<br /><a href="https://lokerdemak.com/">Lowongan Kerja</a><br />
<br /><a href="https://gladoil.com/">Berita Terkini</a><br />
<br /><a href="https://edinnotes.com/">Berita Terbaru</a><br />
<br /><a href="https://jsmpromo.com/">Berita Teknologi</a><br />
<br /><a href="https://mainelystories.com/">Seputar Teknologi</a><br />
<br /><a href="https://mitsubishipurwodadi.com">Berita Politik</a><br />
<br /><a href="https://bumbulapis.com/">Resep Masakan</a><br />
<br /><a href="https://uniboobbuster.com/">Pendidikan</a></p>
]]></content:encoded>
					
					<wfw:commentRss>https://hasilpileg.com/guide-complet-de-linstallation-et-de-la-configuration-du-serveur-dns-avec-bind9-sur-debian-10/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
