Changes between Initial Version and Version 1 of Realisations/2010-2011/Projet/Entreprise1/Documentation/DHCP


Ignore:
Timestamp:
May 30, 2011, 7:18:38 PM (14 years ago)
Author:
evain
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Realisations/2010-2011/Projet/Entreprise1/Documentation/DHCP

    v1 v1  
     1/etc/dhpcd.conf
     2
     3
     4{{{
     5# dhcpd.conf
     6
     7# option definitions common to all supported networks...
     8option domain-name "as65001.com";
     9option domain-name-servers dhcpdns.as65001.com;
     10
     11default-lease-time 600;
     12max-lease-time 7200;
     13
     14ignore client-updates;
     15
     16# Use this to enble / disable dynamic dns updates globally.
     17ddns-update-style interim;
     18
     19# If this DHCP server is the official DHCP server for the local
     20# network, the authoritative directive should be uncommented.
     21authoritative;
     22
     23# Use this to send dhcp log messages to a different log file (you also
     24# have to hack syslog.conf to complete the redirection).
     25log-facility local7;
     26
     27# Déclaration pour 10.10.2.0
     28subnet 10.10.2.0 netmask 255.255.255.0 {
     29  range 10.10.2.50 10.10.2.250;
     30  option domain-name-servers dhcpdns.as65001.com;
     31  option domain-name "as65001.com";
     32  option routers 10.10.2.1;
     33  option broadcast-address 10.10.2.255;
     34  default-lease-time 600;
     35  max-lease-time 7200;
     36}
     37}}}