<?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>Batou.FR &#187; Réseau</title>
	<atom:link href="http://www.batou.fr/categorie/reseau/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.batou.fr</link>
	<description>Open, Share &#38; Free Culture</description>
	<lastBuildDate>Sun, 04 Dec 2011 19:26:06 +0000</lastBuildDate>
	<language>fr</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Configurer SSH sous Debian (VirtualBox) et Putty (Windows)</title>
		<link>http://www.batou.fr/2010/09/10/configurer-ssh-sous-debian-virtualbox-et-putty-windows/</link>
		<comments>http://www.batou.fr/2010/09/10/configurer-ssh-sous-debian-virtualbox-et-putty-windows/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 09:27:22 +0000</pubDate>
		<dc:creator>Batou</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Réseau]]></category>
		<category><![CDATA[Sécurité]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Virtualisation]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[cles]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[putty]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[virtualbox]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.batou.fr/?p=2583</guid>
		<description><![CDATA[[by bohman - CC-BY] Introduction Si vous souhaitez vous authentifier localement via SSH à votre serveur Debian depuis votre terminal Putty sous Windows, ce tutorial est fait pour vous. Je me suis intéressé à faire fonctionner cet accès sécurisé à distance dans un réseau local avec un PC hôte et une machine virtuelle mais vous [...]]]></description>
			<content:encoded><![CDATA[<h3 style="text-align: justify;"><a class="vt-p" href="http://www.batou.fr/wp-content/uploads/2010/09/keys.png"><img class="alignnone size-full wp-image-2618" title="keys" src="http://www.batou.fr/wp-content/uploads/2010/09/keys.png" alt="" width="440" height="132" /></a></h3>
<p><em>[by <a class="vt-p" title="keys - FlcikR" href="http://www.flickr.com/photos/bohman/210977249/" target="_blank">bohman </a>- CC-BY]</em></p>
<h3 style="text-align: justify;">Introduction</h3>
<p style="text-align: justify;">Si vous souhaitez vous authentifier localement via SSH à votre serveur Debian depuis votre terminal Putty sous Windows, ce tutorial est fait pour vous. Je me suis intéressé à faire fonctionner cet accès sécurisé à distance dans un réseau local avec un PC hôte et une machine virtuelle mais vous pouvez l'adapter en fonction de votre environnement.</p>
<p><span id="more-2583"></span></p>
<p style="text-align: justify;">Ce tutorial comporte 4 étapes :</p>
<ol style="text-align: justify;">
<li><strong>Configuration de VirtualBox</strong></li>
<li><strong>Configuration du Client PuTTY</strong></li>
<li><strong>Configuration du Serveur Debian</strong></li>
<li><strong>Test client/serveur SSH (l'heure de vérité !)</strong></li>
</ol>
<h3 style="text-align: justify;"><span style="color: #d03b2e;">Configuration de VirtualBox (Windows)</span></h3>
<p style="text-align: justify;">Vous avez installé votre distribution GNU/Linux Debian dans une VM VirtualBox. Cependant, la communication SSH ne peut se faire en local nativement. Nous allons donc utiliser un fichier batch pour nous faciliter le travail.</p>
<h4 style="text-align: justify;"><span style="color: #1d83cd;">Création du fichier batch</span></h4>
<h4 style="text-align: justify;"><strong>1.</strong> On crée un fichier texte "<strong>VirtualBox_ssh.txt"</strong></h4>
<h4 style="text-align: justify;"><strong>2. </strong>On copie ensuite le code suivant : (<a class="vt-p" title="Initiation à Linux (2) - Installer Openssh sur Ubuntu (dans VirtualBox)" href="http://emmanuelpierre.free.fr/blog/index.php?post/2008/07/28/Initiation-a-Linux-2-Installer-Openssh-sur-Ubuntu-dans-VirtualBox" target="_blank">merci Emmanuel</a>)</h4>
<blockquote style="text-align: justify;">
<div id="_mcePaste" style="text-align: left;">set VM="Debian"</div>
<div id="_mcePaste" style="text-align: left;">set HostPort=2222</div>
<div id="_mcePaste" style="text-align: left;">set GuestPort=22</div>
<div id="_mcePaste" style="text-align: left;">set NomMapping=ssh</div>
<div id="_mcePaste" style="text-align: left;">set Device=pcnet</div>
<div id="_mcePaste" style="text-align: left;">E:</div>
<div id="_mcePaste" style="text-align: left;">cd E:\PROGRAMMES\Oracle\VirtualBox</div>
<div id="_mcePaste" style="text-align: left;">REM Pour supprimer ce mapping il suffit de lancer chacune de ces trois commandes sans le dernier argument</div>
<div id="_mcePaste" style="text-align: left;">REM Ne pas oublier de redémarrer l'OS hôte pour que ces modifs soient prises en compte</div>
<div id="_mcePaste" style="text-align: left;">REM Config ssh port 2222 -&gt; 22</div>
<div id="_mcePaste" style="text-align: left;">VBoxManage setextradata %VM% "VBoxInternal/Devices/%Device%/0/LUN#0/Config/%NomMapping%/HostPort" %HostPort%</div>
<div id="_mcePaste" style="text-align: left;">VBoxManage setextradata %VM% "VBoxInternal/Devices/%Device%/0/LUN#0/Config/%NomMapping%/GuestPort" %GuestPort%</div>
<div id="_mcePaste" style="text-align: left;">VBoxManage setextradata %VM% "VBoxInternal/Devices/%Device%/0/LUN#0/Config/%NomMapping%/UDP" 0</div>
<div id="_mcePaste" style="text-align: left;">REM Visualiser la conf</div>
<div id="_mcePaste" style="text-align: left;">VBoxManage getextradata %VM% enumerate</div>
<div id="_mcePaste" style="text-align: left;">pause</div>
</blockquote>
<h4 style="text-align: justify;"><strong>3.</strong> On modifie le contenu selon notre configuration :</h4>
<ul style="text-align: justify;">
<li><strong>set VM="Debian" </strong>: mettre le nom de votre VM</li>
<li><strong>set Device=pcnet</strong> : il est possible que ce soit "<strong>e1000"</strong> et non "<strong>pcnet"</strong>. Pour le savoir :
<ul>
<li><strong>clic-droit</strong> sur votre VM, puis <strong>Afficher le journal...</strong></li>
<li>recherchez MAC et récupérez la valeur de Devices en dessous : [/Devices/<strong>pcnet</strong>/... ] ou  [/Devices/<strong>e1000</strong>/... ]</li>
</ul>
</li>
</ul>
<p style="text-align: justify;"><a class="vt-p" href="http://www.batou.fr/wp-content/uploads/2010/09/devices_virtual_box.png"><img class="alignnone size-full wp-image-2602" title="devices_virtual_box" src="http://www.batou.fr/wp-content/uploads/2010/09/devices_virtual_box.png" alt="" width="440" height="56" /></a></p>
<ul style="text-align: justify;">
<li><strong>E:</strong> : mettre la racine correspondante à votre répertoire d'installation VirtualBox</li>
</ul>
<ul style="text-align: justify;">
<li><strong>cd E:\PROGRAMMES\Oracle\VirtualBox</strong> : remplacer par le chemin adéquat</li>
</ul>
<h4 style="text-align: justify;">4. On renomme le fichier avec l'extension .bat puis on exécute le batch</h4>
<ul style="text-align: justify;">
<li>si tout va bien, vous devriez avoir le message suivant :</li>
</ul>
<p style="text-align: justify;"><a class="vt-p" href="http://www.batou.fr/wp-content/uploads/2010/09/VirtualBox_batch.png"><img class="alignnone size-full wp-image-2592" title="VirtualBox_batch" src="http://www.batou.fr/wp-content/uploads/2010/09/VirtualBox_batch.png" alt="" width="430" height="95" /></a></p>
<p style="text-align: justify;"><em>Rm : en cas de mauvaise manipulation, vous pouvez annuler vos modifications en supprimant les 3 arguments des lignes VBoxManage, à savoir "%HostPort%", "%GuestPort%" et "0" puis en ré-exécutant le batch.</em></p>
<h3 style="text-align: justify;"><span style="color: #d03b2e;">Configuration du client PuTTY</span></h3>
<p style="text-align: justify;">Commençons par télécharger putty et puttygen <a class="vt-p" title="Download putty" href="http://www.chiark.greenend.org.uk/~sgtatham/putty/download.html">sur le site officiel</a>.</p>
<p style="text-align: justify;"><span style="text-decoration: underline;"><a class="vt-p" href="http://www.batou.fr/wp-content/uploads/2010/09/puttygen_id_dsa.png"><img class="alignnone size-full wp-image-2593" title="puttygen_id_dsa" src="http://www.batou.fr/wp-content/uploads/2010/09/puttygen_id_dsa.png" alt="" width="440" height="426" /></a></span></p>
<h4 style="text-align: justify;"><span><span style="color: #1d83cd;">Génération des clés</span></span></h4>
<ol style="text-align: justify;">
<li>on lance <strong>puttygen.exe</strong></li>
<li>on choisit un type de clé : 	<strong>SSH-2-DSA </strong>(meilleure sécurité) en <strong>1024 </strong>bits</li>
<li>on génère un couple de clés 	privée/publique : <strong>Generate</strong></li>
<li>on renseigne une passphrase 	(optionnel mais conseillé) : <strong>Key passphrase</strong></li>
<li>on enregistre la clé privée : <strong>Save 	private key</strong><span style="font-weight: normal;"> en lui donnant un 	nom : "</span><span style="font-weight: normal;"><strong>client_id_dsa"</strong></span></li>
<li><span style="font-weight: normal;">on copie/colle la clé publique (</span><strong>Public key</strong><span style="font-weight: normal;">) 	dans un fichier texte : "</span><span style="font-weight: normal;"><strong>client_id_dsa.pub"</strong></span></li>
</ol>
<p style="text-align: justify;"><span style="text-decoration: underline;"> </span></p>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;"><strong> </strong></p>
<p style="text-align: justify;"><span style="font-weight: normal;"> </span></p>
<p style="text-align: justify;"><em>Rm : la clé privée ne doit jamais être communiquée à une autre machine</em></p>
<h4 style="text-align: justify;"><span style="color: #1d83cd;">Configuration de PuTTY</span></h4>
<p style="text-align: justify;"><span style="font-weight: normal;"><a class="vt-p" href="http://www.batou.fr/wp-content/uploads/2010/09/putty_accueil.png"><img class="alignnone size-full wp-image-2598" title="putty_accueil" src="http://www.batou.fr/wp-content/uploads/2010/09/putty_accueil.png" alt="" width="440" height="423" /></a></span></p>
<p style="text-align: justify;"><span style="font-weight: normal;"><br />
</span></p>
<ol style="text-align: justify;">
<li>on lance <strong>putty.exe</strong></li>
<li><span style="font-weight: normal;">on précise le nom du serveur ou 	l'adresse IP : <strong>localhost</strong></span></li>
<li><span style="font-weight: normal;">on modifie le numéro de port du 	serveur (si besoin) : <strong>2222</strong></span></li>
<li><span style="font-weight: normal;">on donne un nom à notre profil : 	<strong>ssh debian</strong></span></li>
<li><span style="font-weight: normal;">on modifie l'encodage des 	caractères dans </span><span style="font-weight: normal;"><strong>Window/Translation</strong></span><span style="font-weight: normal;"> : </span><span style="font-weight: normal;"><strong>UTF-8</strong></span><span style="font-weight: normal;"> (gestion des accents)</span></li>
<li><span style="font-weight: normal;">dans <strong>Connection/SSH/Auth,</strong> on va chercher notre clé privée : </span><span style="font-weight: normal;"><strong>client_id_dsa</strong></span></li>
<li><span style="font-weight: normal;">on retourne sur <strong>Session</strong> et on clique sur <strong>Save </strong><span style="font-weight: normal;">pour 	sauvegarder notre profil</span></span></li>
</ol>
<h3 style="text-align: justify;"><span style="color: #d03b2e;">Configuration du Serveur Debian</span></h3>
<h4 style="text-align: justify;"><span style="color: #1d83cd;">Installation d'openssh-server</span></h4>
<ul style="text-align: justify;">
<li><span style="font-weight: normal;">on installe le paquet openssh-server 	: # <strong>aptitude install openssh-server</strong></span>
<ul>
<li><em><span style="font-weight: normal;">Note</span></em><span style="font-weight: normal;"> : cela créera automatiquement dans "/etc/ssh/" les clés DSA : 		ssh_host_dsa_key, ssh_host_dsa_key.pub et les clés RSA :  		ssh_host_rsa_key, ssh_host_rsa_key.pub</span></li>
</ul>
</li>
<li><span style="font-weight: normal;"><span style="text-decoration: underline;">sur notre compte user</span>, on génère un couple clé privée / clé publique : $ <strong>ssh-keygen -t dsa</strong></span></li>
<li>on laisse la localisation par défaut 	: <strong>Entrée</strong></li>
<li>on choisit une <strong>passphrase </strong>et on valide</li>
</ul>
<h4 style="text-align: justify;"><span style="color: #1d83cd;">Ajout de la clé publique client au serveur</span></h4>
<ul style="text-align: justify;">
<li><span style="font-weight: normal;">sur notre compte user, on crée le 	fichier <em>authorized_keys</em> :<strong> $ touch ~/.ssh/authorized_keys</strong></span></li>
<li><span style="font-weight: normal;">on copie ensuite la clé publique du client 	dans le fichier <em>authorized_keys</em> : <strong>cat /mnt/partage/client_id_dsa.pub  &gt;&gt; ~/.ssh/authorized_keys</strong></span></li>
<li>on vérifie que le fichier <em>authoriezd_keys</em> contient la clé publique : <strong>cat 	~/.ssh/authorized_keys</strong> (pas de retours à la ligne, sauf entre clés publiques différentes)</li>
</ul>
<p style="margin-bottom: 0cm; text-align: justify;"><em>Rm : je pars du principe qu'un partage a déjà été créé entre VirtualBox et Windows (/mnt/partage/) et que la clé publique "client_id_dsa.pub" est à l'intérieur du dossier Windows partagé</em></p>
<h4 style="text-align: justify;"><span style="color: #1d83cd;">Configuration d'openssh</span></h4>
<ul style="text-align: justify;">
<li><span style="font-weight: normal;">on édite le fichier en root : <strong># vim  /etc/ssh/sshd_config</strong></span></li>
<li><span style="font-weight: normal;">on décommente/modifie les lignes pour avoir les valeurs suivantes :</span>
<ul>
<li><span style="font-weight: normal;">l.5 :   <strong>Port 22</strong> (modifier 			au besoin le port d'écoute SSH du serveur)</span></li>
<li><span style="font-weight: normal;">l.26 : <strong>PermitRootLogin no</strong><span style="font-weight: normal;"> (on n'interdit à root de se connecter)</span></span></li>
<li><span style="font-weight: normal;">l.28 : <strong>AllowUsers USER1 USER2</strong> (autoriser des utilisateurs)</span></li>
<li><span style="font-weight: normal;">l.29 : <strong>RSAuthentication no</strong> (nous utilisons une clé DSA)</span></li>
<li><span style="font-weight: normal;">l.31 : <strong>AuthorizedKeysFile 			%h/.ssh/authorized_keys</strong> (vérifier les clés publiques)</span></li>
<li><span style="font-weight: normal;">l.50 : <strong>PasswordAuthentification 			no</strong> (désactiver l'authentification par mot de passe et donc le 			bruteforce)</span></li>
</ul>
</li>
<li><span style="font-weight: normal;">on recharge le fichier de 	configuration ssh  : # <strong>/etc/init.d/ssh reload</strong></span></li>
</ul>
<h3 style="text-align: justify;"><strong><span style="color: #d03b2e;">Test client/serveur SSH (l'heure de vérité !)</span></strong></h3>
<h3 style="text-align: justify;"><strong> </strong></h3>
<div style="text-align: justify;">
<div>
<ul>
<li>on lance <strong>putty.exe</strong> et on charge notre profil en cliquant sur <strong>ssh debian</strong> puis <strong>Load </strong>et enfin <strong>Open</strong></li>
<li>on entre le nom de l'utilisateur autorisé en amont sur le serveur : <strong>USER1</strong></li>
<li>un message apparaît nous invitant à accepter la clé ssh : cliquons sur <strong>Oui</strong></li>
<li>on tape ensuite la <strong>passphrase </strong>de notre clé privée (client)</li>
<li><strong>le prompt apparait : mission accomplie</strong></li>
</ul>
</div>
</div>
<h4 style="text-align: justify;"><span style="color: #000000;">En cas d'erreur</span></h4>
<ul style="text-align: justify;">
<li><em>Message "Error Network" dans Putty</em>
<ul>
<li>la communication ne se fait pas entre votre host Windows et virtualBox, refaites scrupuleusement l'étape <strong>Configuration de VirtualBox (Windows)</strong></li>
</ul>
</li>
<li><em>Message "no supported authentication methods available" dans Putty</em>
<ul>
<li>vérifiez les droits sur le <strong>dossier user .ssh</strong> (et non le root) (700 ou drwx------) et sur les clés publiques <strong>~/.ssh/id_dsa.pub</strong> et <strong>~/.ssh/id_rsa.pub</strong> (644 ou -rw-r—r--)</li>
</ul>
</li>
<li><em>Vous avez supprimé les clés ssh_host_xxx par erreur</em>
<ul>
<li>pas de panique ! Regénérez les clés avec <strong>dpkg-reconfigure openssh-server</strong> ou à la mano :
<ul>
<li><strong>ssh-keygen -f "/etc/ssh/ssh_host_rsa_key" -N '' -t rsa</strong></li>
<li><strong>ssh-keygen -f "/etc/ssh/ssh_host_dsa_key" -N '' -t dsa</strong></li>
</ul>
</li>
<li>effacer le contenu du fichier <strong>$ ~/.ssh/known_hosts</strong> ou tapez <strong>vim +Nd +x /home/alice/.ssh/known_hosts</strong> (où N correspond au numéro de ligne affiché dans le message d'erreur suivant : <em>Offending key in /home/admin/.ssh/known_hosts:24</em> (tentative de connexion ssh))</li>
</ul>
</li>
<li><span style="font-style: normal;"><span style="font-weight: normal;"><em>Si vous n'y arrivez toujours pas</em></span></span>
<ul>
<li style="text-align: justify;">utilisez les commentaires ci-dessous !</li>
</ul>
</li>
</ul>
<p style="text-align: justify;"><span style="font-weight: normal;"> </span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.batou.fr/2010/09/10/configurer-ssh-sous-debian-virtualbox-et-putty-windows/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Mise en place d&#8217;un relai DHCP sous Debian</title>
		<link>http://www.batou.fr/2009/11/04/mise-en-place-dun-relai-dhcp-sous-debian/</link>
		<comments>http://www.batou.fr/2009/11/04/mise-en-place-dun-relai-dhcp-sous-debian/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 21:15:24 +0000</pubDate>
		<dc:creator>Batou</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Réseau]]></category>
		<category><![CDATA[Tutorial]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[DHCP]]></category>
		<category><![CDATA[relai DHCP]]></category>

		<guid isPermaLink="false">http://www.batou.fr/?p=1622</guid>
		<description><![CDATA[[by El Fantasma - CC-BY-SA] Une fois n'est pas coutume, j'ai voulu vous détailler la mise en plae d'un serveur DHCP et d'un relai DHCP sous une distribution GNU/Linux : Debian à travers un cas pratique. Des connaissances de base sur le réseau et sur le monde Linux sont nécessaires. Je vous conseille à ce [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><img title="Debian_girl.png" src="/wp-content/uploads/2009/octobre_2009/Debian_girl.png" border="0" alt="Debian_girl.png" width="440" height="132" /></p>
<p style="text-align: justify;"><em>[by <a title="Debian Girl - FlickR" href="http://www.flickr.com/photos/45681590@N00/145254097/" target="_blank">El Fantasma</a> - CC-BY-SA]</em></p>
<p style="text-align: justify;">Une fois n'est pas coutume, j'ai voulu vous détailler la <strong>mise en plae d'un serveur DHCP et d'un relai DHCP</strong> sous une distribution GNU/Linux : Debian à travers un cas pratique. Des connaissances de base sur le réseau et sur le monde Linux sont nécessaires. Je vous conseille à ce propos le tutorial du Site du Zero : <a title="Reprenez le contrôle avec Linux ! - SDZ" href="http://www.siteduzero.com/tutoriel-3-12827-reprenez-le-controle-avec-linux.html" target="_blank">Reprenez le contrôle avec Linux !</a></p>
<h3 style="text-align: justify;">Objectif</h3>
<p style="text-align: justify;">Le principe est donc de réaliser l’administration d’un serveur DHCP et d’un relai DHCP. <strong>Un serveur DHCP</strong> (Dynamic Host Configuration Protocol) <strong>permet d’allouer à des machines-client automatiquement une adresse IP</strong>. D’autres options peuvent être assignables d'ailleurs comme le masque, la passerelle ou le serveur DNS.</p>
<p><span id="more-1622"></span></p>
<h3 style="text-align: justify;">Principe du relai DHCP</h3>
<p style="text-align: justify;">Un <strong>routeur </strong>est présent pour relier le réseau A (où est situé le serveur DHCP) et le réseau B (où se trouve le client DHCP). Le client DHCP ne peut recevoir les trames du serveur car le routeur bloque les trames diffusées en broadcast.<br />
Dans cette situation, <strong>trois solutions </strong>peuvent être envisageables :</p>
<ul style="text-align: justify;">
<li>Mettre un <strong>serveur DHCP</strong> dans le second réseau</li>
<li>Mettre le <strong>routeur en serveur DHCP</strong></li>
<li>Installer un <strong>agent de relai DHCP</strong></li>
</ul>
<p style="text-align: justify;">La dernière solution est choisie ici : la mise en place d’un relai DHCP. Ce dernier permet en effet de rediriger les requêtes des machines-clientes en unicast à travers le routeur vers le serveur DHCP.</p>
<h3 style="text-align: justify;">Matériel Utilisé</h3>
<p style="text-align: justify;">Voici les différents systèmes d’exploitation et matériel dont nous avons besoin :<br />
<strong>un routeur, un serveur DHCP et un relai DHCP sous Debian</strong></p>
<ul style="text-align: justify;">
<li>un client DHCP sous Windows XP</li>
<li>2 hubs</li>
<li>5 câbles RJ45</li>
</ul>
<h3 style="text-align: justify;">Topologie</h3>
<p style="text-align: justify;">Voici la topologie utilisée durant ce projet :</p>
<p style="text-align: justify;"><a rel="lightbox" href="/wp-content/uploads/2009/octobre_2009/topologie_relai_dhcp.png"><img title="topologie_relai_dhcp.png" src="/wp-content/uploads/2009/octobre_2009/topologie_relai_dhcp_mini.png" border="0" alt="topologie_relai_dhcp.png" /></a></p>
<h3 style="text-align: justify;">Paramètres TCP/IP</h3>
<p style="text-align: justify;">Nous avons ainsi mis en place deux réseaux :</p>
<ul style="text-align: justify;">
<li><strong>Réseau A</strong> : 192.168.1.0 /24</li>
<li><strong>Réseau B</strong> : 172.16.10.0 /24</li>
</ul>
<p style="text-align: justify;">L’adressage IP du serveur DHCP est paramétré manuellement :</p>
<ul style="text-align: justify;">
<li><strong>Adresse IP</strong> : 192.168.1.2 /24</li>
<li><strong>Passerelle </strong>: 192.168.1.1</li>
</ul>
<p style="text-align: justify;">Le routeur possède les deux interfaces suivantes paramétrées manuellement :</p>
<ul style="text-align: justify;">
<li><strong>Eth0 </strong>: 192.168.1.1 /24</li>
<li><strong>Eth1 </strong>: 172.16.10.1 /24</li>
</ul>
<p style="text-align: justify;">Le relai DHCP possède l’adresse IP manuelle suivante :</p>
<ul style="text-align: justify;">
<li><strong>Eth0 </strong>: 172.16.10.2 / 24</li>
<li><strong>Passerelle </strong>: 172.16.10.3</li>
</ul>
<p style="text-align: justify;">Enfin, le <strong>client DHCP</strong> est paramétré en assignement d’adresse IP automatique.</p>
<h3 style="text-align: justify;">Configuration du serveur DHCP</h3>
<h4 style="text-align: justify;">Adressage IP du serveur DHCP</h4>
<p style="text-align: justify;">Commençons par configurer manuellement l’IP du serveur DHCP :</p>
<blockquote style="text-align: justify;"><p>vim /etc/network/interfaces</p>
<p><span style="color: #339966;"># Interfaces reseaux du serveur DHCP</span></p>
<p><span style="color: #339966;"># Boucle locale</span><br />
auto lo<br />
iface lo inet loopback</p>
<p><span style="color: #339966;"># Interface primaire (eth0)</span><br />
auto eth0<br />
iface eth0 inet static<br />
address 192.168.1.2<br />
netmask 255.255.255.0<br />
gateway 192.168.1.1</p></blockquote>
<p style="text-align: justify;">La commande « <strong>ifdown eth0 &amp;&amp; ifup eth0</strong> » permet de relancer l’interface réseau eth0.</p>
<h4 style="text-align: justify;">Configuration du serveur DHCP</h4>
<p style="text-align: justify;">Il faut tout d’abord <strong>installer le paquet dhcp3 </strong>avec la commande suivante :</p>
<blockquote style="text-align: justify;"><p>Apt-get install dhcp3-server</p></blockquote>
<p style="text-align: justify;">Ensuite, nous devons <strong>configurer le serveur</strong>. Nous utiliserons vim pour éditer le fichier de configuration DHCP :</p>
<blockquote style="text-align: justify;"><p>Vim /etc/dhcp3/dhcpd.conf</p>
<p><span style="color: #339966;">#########################<br />
# Configuration du DHCP #<br />
#########################</span></p>
<p><span style="color: #339966;">#DNS</span><br />
ddns-update-style none;<br />
option domain-name "dhcp.lan";<br />
option domain-name-servers 192.168.1.2;</p>
<p><span style="color: #339966;">#Bail DHCP</span><br />
default-lease-time 3600;<br />
max-lease-time 7200;</p>
<p><span style="color: #339966;">#log DHCP</span><br />
log-facility local7;</p>
<p><span style="color: #339966;">#Etendue 1</span><br />
subnet 192.168.1.0 netmask 255.255.255.0 {<br />
range 192.168.1.10 192.168.1.15;<br />
option routers 192.168.1.1;<br />
allow-unknown-clients;<br />
}</p>
<p><span style="color: #339966;">#Etendue 2</span><br />
subnet 172.16.10.0 netmask 255.255.255.0 {<br />
range 172.16.10.10 172.16.10.15;<br />
option routers 172.16.10.1;<br />
allow-unknown-clients;<br />
}</p></blockquote>
<p style="text-align: justify;">Les <strong>baux </strong>sont <strong>de longue durée</strong> car nos aurons des postes fixes dans l’entreprise.</p>
<p style="text-align: justify;">Notre serveur DHCP configuré, nous pouvons maintenant démarrer le serveur grâce à la commande suivante :</p>
<blockquote style="text-align: justify;"><p>/etc/init.d/dhcp3-server start</p></blockquote>
<h4 style="text-align: justify;">Fonctionnement du serveur DHCP</h4>
<p style="text-align: justify;">Voici les <strong>trames échangées entre un server DHCP et un client DHCP </strong>pour l’assignation d’une adresse IP :</p>
<p style="text-align: justify;"><img title="trames_dhcp.png" src="/wp-content/uploads/2009/octobre_2009/trames_dhcp.png" border="0" alt="trames_dhcp.png" width="420" height="125" /></p>
<p style="text-align: justify;"><span style="color: #ff0000;">1) </span>Le client DHCP envoie une requête <strong>DHCP DISCOVER</strong> (demande d’adresse IP) en Broadcast (255.255.255.255).<br />
<span style="color: #ff0000;">2)</span> Le serveur DHCP propose une adresse IP via la requête <strong>DHCP OFFER</strong><br />
<span style="color: #ff0000;">3)</span> Le client répond avec la requête <strong>DHCP REQUEST</strong> qu’il a bien récupéré l’adresse IP pour que tout le réseau en soit informé (si présence d’autres serveurs DHCP)<br />
<span style="color: #ff0000;">4)</span> Le serveur accuse réception avec la requête <strong>DHCP ACK</strong></p>
<h3 style="text-align: justify;">Configuration du relai DHCP</h3>
<h4 style="text-align: justify;">Adressage IP du relai DHCP</h4>
<p style="text-align: justify;">Comme pour le serveur DHCP, il faut tout d’abord éditer le fichier d’<strong>interfaces réseaux</strong> :</p>
<blockquote style="text-align: justify;"><p>vim /etc/network/interfaces</p>
<p><span style="color: #008000;"># Interfaces reseaux du relai DHCP</span><br />
<span style="color: #008000;"><br />
# Boucle locale</span><br />
auto lo<br />
iface lo inet loopback</p>
<p><span style="color: #008000;"># Interface primaire (eth1)</span><br />
auto eth1<br />
iface eth1 inet static<br />
address 172.16.10.2<br />
netmask 255.255.255.0<br />
gateway 172.16.10.1</p></blockquote>
<p style="text-align: justify;">Nous pouvons ensuite relancer les interfaces réseaux puis ensuite installer  le relai DHCP via le <strong>paquet dhcp3-relay</strong>.</p>
<h4 style="text-align: justify;">Configuration du relai DHCP</h4>
<p style="text-align: justify;"><strong>Editons le fichier de configuration du relai DHCP </strong>en précisant l’adresse du serveur DHCP et l’interface réseau utilisée :</p>
<blockquote style="text-align: justify;"><p>Vim /etc/default/dhcp3-relay</p>
<p><span style="color: #008000;"># Adresse du serveur DHCP</span><br />
SERVERS="192.168.1.2"</p>
<p><span style="color: #008000;"># Interface utilisée par le relai DHCP</span><br />
INTERFACES="eth1"</p></blockquote>
<p style="text-align: justify;"><em>Rm : la casse doit être respectée !</em></p>
<p style="text-align: justify;">Nous pouvons désormais <strong>démarrer le relai-DHCP</strong> avec la commande suivante :</p>
<blockquote style="text-align: justify;"><p>/etc/init.d/dhcp3-relay start</p></blockquote>
<h4 style="text-align: justify;">Fonctionnement du relai DHCP</h4>
<p style="text-align: justify;">Le schéma suivant permet de comprendre l’<strong>intérêt du relai </strong>en terme de diffusion :</p>
<p style="text-align: justify;"><span style="color: #ff0000;"> <img title="diffusion_relai_dhcp.gif" src="/wp-content/uploads/2009/octobre_2009/diffusion_relai_dhcp.gif" border="0" alt="diffusion_relai_dhcp.gif" width="400" height="55" /><br />
</span><span style="color: #008000;"> </span></p>
<h3 style="text-align: justify;">Configuration du routeur</h3>
<h4 style="text-align: justify;">Adressage IP du routeur</h4>
<p style="text-align: justify;">Configurons les <strong>deux interfaces réseaux du routeur </strong>:</p>
<blockquote style="text-align: justify;"><p>vim /etc/network/interfaces</p>
<p><span style="color: #008000;"># Interfaces reseaux du routeur</span></p>
<p><span style="color: #008000;">#  Interface primaire (eth1)</span><br />
auto eth1<br />
iface eth1 inet static<br />
address 192.168.1.1<br />
netmask 255.255.255.0<br />
gateway 192.168.1.1</p>
<p><span style="color: #008000;"># Interface secondaire (eth2)</span><br />
auto eth2<br />
iface eth2 inet static<br />
address 172.16.10.1<br />
netmask 255.255.255.0<br />
gateway 172.16.10.1</p></blockquote>
<p style="text-align: justify;"><strong>Relançons </strong>ensuite <strong>les deux interfaces</strong>.</p>
<h4 style="text-align: justify;">Configuration du routeur</h4>
<p style="text-align: justify;">Maintenant que notre routeur est configuré, il ne reste plus qu’à <strong>activer la redirection des paquets</strong>. Pour cela, éditons le fichier de configuration sysctl et décommentons la ligne permettant de rediriger les paquets en Ipv4 :</p>
<blockquote style="text-align: justify;"><p>Vim /etc/sysctl.conf</p>
<p>net.ipv4.conf.default.forwarding=1</p></blockquote>
<p style="text-align: justify;">Nous pouvons visualiser la table de routage avec la commande « <strong>route –n</strong> ».</p>
<p style="text-align: justify;">Table de routage IP du noyau :</p>
<blockquote style="text-align: justify;"><p>Destination     Passerelle      Genmask        Indic  Metric    Ref   Use   Iface<br />
192.168.1.0     0.0.0.0        255.255.255.0    U         0      0     0     eth1<br />
172.16.10.0     0.0.0.0        255.255.255.0    U         0      0     0     eth2<br />
0.0.0.0            172.16.10.1    0.0.0.0          UG        0      0     0     eth2<br />
0.0.0.0         192.168.1.1    0.0.0.0          UG        0      0     0     eth1</p></blockquote>
<h3 style="text-align: justify;">Test sur le serveur DHCP</h3>
<p style="text-align: justify;">Notre client Windows XP est configuré en DHCP. La commande IPCONFIG lui attribue bien une IP via le relai DHCP :</p>
<p style="text-align: justify;"><img title="ip_config.png" src="/wp-content/uploads/2009/octobre_2009/ip_config.png" border="0" alt="ip_config.png" width="450" height="132" /></p>
<p style="text-align: justify;">Rien de bien compliqué en somme. La console peut faire peur mais une fois cet a priori dépassé, on remarque que l'administration est assez simple à mettre en œuvre et est même accessible pour les inconditionnels de Windows Server 2003 !</p>
<div id="_mcePaste" style="overflow: hidden; position: absolute; left: -10000px; top: 979px; width: 1px; height: 1px; text-align: justify;"><!--[if gte mso 9]><xml> <w:WordDocument> <w:View>Normal</w:View> <w:Zoom>0</w:Zoom> <w:TrackMoves /> <w:TrackFormatting /> <w:HyphenationZone>21</w:HyphenationZone> <w:PunctuationKerning /> <w:ValidateAgainstSchemas /> <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> <w:IgnoreMixedContent>false</w:IgnoreMixedContent> <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> <w:DoNotPromoteQF /> <w:LidThemeOther>FR</w:LidThemeOther> <w:LidThemeAsian>X-NONE</w:LidThemeAsian> <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> <w:Compatibility> <w:BreakWrappedTables /> <w:SnapToGridInCell /> <w:WrapTextWithPunct /> <w:UseAsianBreakRules /> <w:DontGrowAutofit /> <w:SplitPgBreakAndParaMark /> <w:DontVertAlignCellWithSp /> <w:DontBreakConstrainedForcedTables /> <w:DontVertAlignInTxbx /> <w:Word11KerningPairs /> <w:CachedColBalance /> </w:Compatibility> <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> <m:mathPr> <m:mathFont m:val="Cambria Math" /> <m:brkBin m:val="before" /> <m:brkBinSub m:val="&#45;-" /> <m:smallFrac m:val="off" /> <m:dispDef /> <m:lMargin m:val="0" /> <m:rMargin m:val="0" /> <m:defJc m:val="centerGroup" /> <m:wrapIndent m:val="1440" /> <m:intLim m:val="subSup" /> <m:naryLim m:val="undOvr" /> </m:mathPr></w:WordDocument> </xml><![endif]--><!--[if gte mso 9]><xml> <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true"   DefSemiHidden="true" DefQFormat="false" DefPriority="99"   LatentStyleCount="267"> <w:LsdException Locked="false" Priority="0" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Normal" /> <w:LsdException Locked="false" Priority="9" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="heading 1" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8" /> <w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9" /> <w:LsdException Locked="false" Priority="39" Name="toc 1" /> <w:LsdException Locked="false" Priority="39" Name="toc 2" /> <w:LsdException Locked="false" Priority="39" Name="toc 3" /> <w:LsdException Locked="false" Priority="39" Name="toc 4" /> <w:LsdException Locked="false" Priority="39" Name="toc 5" /> <w:LsdException Locked="false" Priority="39" Name="toc 6" /> <w:LsdException Locked="false" Priority="39" Name="toc 7" /> <w:LsdException Locked="false" Priority="39" Name="toc 8" /> <w:LsdException Locked="false" Priority="39" Name="toc 9" /> <w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption" /> <w:LsdException Locked="false" Priority="10" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Title" /> <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font" /> <w:LsdException Locked="false" Priority="11" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtitle" /> <w:LsdException Locked="false" Priority="22" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Strong" /> <w:LsdException Locked="false" Priority="20" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Emphasis" /> <w:LsdException Locked="false" Priority="59" SemiHidden="false"    UnhideWhenUsed="false" Name="Table Grid" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text" /> <w:LsdException Locked="false" Priority="1" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="No Spacing" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 1" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 1" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 1" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 1" /> <w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision" /> <w:LsdException Locked="false" Priority="34" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="List Paragraph" /> <w:LsdException Locked="false" Priority="29" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Quote" /> <w:LsdException Locked="false" Priority="30" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Quote" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 1" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 1" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 1" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 1" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 1" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 2" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 2" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 2" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 2" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 2" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 2" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 2" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 2" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 2" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 3" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 3" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 3" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 3" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 3" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 3" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 3" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 3" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 3" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 4" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 4" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 4" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 4" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 4" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 4" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 4" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 4" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 4" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 5" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 5" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 5" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 5" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 5" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 5" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 5" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 5" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 5" /> <w:LsdException Locked="false" Priority="60" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Shading Accent 6" /> <w:LsdException Locked="false" Priority="61" SemiHidden="false"    UnhideWhenUsed="false" Name="Light List Accent 6" /> <w:LsdException Locked="false" Priority="62" SemiHidden="false"    UnhideWhenUsed="false" Name="Light Grid Accent 6" /> <w:LsdException Locked="false" Priority="63" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6" /> <w:LsdException Locked="false" Priority="64" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6" /> <w:LsdException Locked="false" Priority="65" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 1 Accent 6" /> <w:LsdException Locked="false" Priority="66" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium List 2 Accent 6" /> <w:LsdException Locked="false" Priority="67" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6" /> <w:LsdException Locked="false" Priority="68" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6" /> <w:LsdException Locked="false" Priority="69" SemiHidden="false"    UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6" /> <w:LsdException Locked="false" Priority="70" SemiHidden="false"    UnhideWhenUsed="false" Name="Dark List Accent 6" /> <w:LsdException Locked="false" Priority="71" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Shading Accent 6" /> <w:LsdException Locked="false" Priority="72" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful List Accent 6" /> <w:LsdException Locked="false" Priority="73" SemiHidden="false"    UnhideWhenUsed="false" Name="Colorful Grid Accent 6" /> <w:LsdException Locked="false" Priority="19" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis" /> <w:LsdException Locked="false" Priority="21" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis" /> <w:LsdException Locked="false" Priority="31" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference" /> <w:LsdException Locked="false" Priority="32" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Intense Reference" /> <w:LsdException Locked="false" Priority="33" SemiHidden="false"    UnhideWhenUsed="false" QFormat="true" Name="Book Title" /> <w:LsdException Locked="false" Priority="37" Name="Bibliography" /> <w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading" /> </w:LatentStyles> </xml><![endif]--><!--  /* Font Definitions */  @font-face 	{font-family:"Cambria Math"; 	panose-1:2 4 5 3 5 4 6 3 2 4; 	mso-font-charset:1; 	mso-generic-font-family:roman; 	mso-font-format:other; 	mso-font-pitch:variable; 	mso-font-signature:0 0 0 0 0 0;}  /* Style Definitions */  p.MsoNormal, li.MsoNormal, div.MsoNormal 	{mso-style-unhide:no; 	mso-style-qformat:yes; 	mso-style-parent:""; 	margin:0cm; 	margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:12.0pt; 	font-family:"Times New Roman","serif"; 	mso-fareast-font-family:"Times New Roman"; 	mso-ansi-language:EN-US; 	mso-fareast-language:EN-US;} .MsoChpDefault 	{mso-style-type:export-only; 	mso-default-props:yes; 	font-size:10.0pt; 	mso-ansi-font-size:10.0pt; 	mso-bidi-font-size:10.0pt;} @page Section1 	{size:612.0pt 792.0pt; 	margin:70.85pt 70.85pt 70.85pt 70.85pt; 	mso-header-margin:36.0pt; 	mso-footer-margin:36.0pt; 	mso-paper-source:0;} div.Section1 	{page:Section1;} --><!--[if gte mso 10]> <mce:style><!   /* Style Definitions */  table.MsoNormalTable 	{mso-style-name:"Tableau Normal"; 	mso-tstyle-rowband-size:0; 	mso-tstyle-colband-size:0; 	mso-style-noshow:yes; 	mso-style-priority:99; 	mso-style-qformat:yes; 	mso-style-parent:""; 	mso-padding-alt:0cm 5.4pt 0cm 5.4pt; 	mso-para-margin:0cm; 	mso-para-margin-bottom:.0001pt; 	mso-pagination:widow-orphan; 	font-size:11.0pt; 	font-family:"Calibri","sans-serif"; 	mso-ascii-font-family:Calibri; 	mso-ascii-theme-font:minor-latin; 	mso-fareast-font-family:"Times New Roman"; 	mso-fareast-theme-font:minor-fareast; 	mso-hansi-font-family:Calibri; 	mso-hansi-theme-font:minor-latin; 	mso-bidi-font-family:"Times New Roman"; 	mso-bidi-theme-font:minor-bidi;} --> <!--[endif]--></p>
<p class="MsoNormal" style="text-align: justify;">Commençons par configurer manuellement l’IP du serveur DHCP</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.batou.fr/2009/11/04/mise-en-place-dun-relai-dhcp-sous-debian/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: www.batou.fr @ 2012-02-10 06:12:32 -->
