All our workstations have fixed IP address using DHCP, all other
received an Dynamic IP.


Here is a my dhcpd.conf (with only one station) :
authoritative;
ddns-update-style none;

subnet 192.168.4.0 netmask 255.255.255.0 {
        default-lease-time 21600;  # 6 heures
        max-lease-time 43200;      # 12 heures

        get-lease-hostnames on;
        use-host-decl-names on;

        option domain-name              "lan.lexum.pri";
        option routers                  192.168.4.1;
        option domain-name-servers      192.168.4.2, 192.168.4.3;

        option time-offset             -5;     # Eastern Standard Time
        option ntp-servers              192.168.4.29, 192.168.4.19 ;
        option time-servers             192.168.4.29, 192.168.4.19 ;

        option netbios-name-servers     192.168.4.29;
        option netbios-node-type        8;


        host verona    { hardware ethernet 00:C0:4F:2C:64:A6;
fixed-address verona.lan.lexum.pri;  }

        pool {
                range 192.168.4.235 192.168.4.253;
        }
}



------------------------------------
Frédéric Médery
Administrateur Système /
System Administrator
LexUM, Université de Montréal
email : [EMAIL PROTECTED]
tel.  : (514) 343-6111  p. 1-3288
fax. : (514) 343-7359
------------------------------------



John Summerfield wrote:
> FM wrote:
>> Hello,
>>
>> I would like to create a dhcpd fail over server. I read this article :
>> http://www.madboa.com/geek/dhcp-failover/
>>
>> Is it possible to include ip reservation in a fail over scenario.
>> Right now, my dhcpd.conf looks like this :
>
> What do you mean by "ip reservation?"
>
>
> I worry that when people mask what they're doing by changing the
> configuration file for which they're asking advice, that they've
> changed some vital piece of information.
>
>
>>
>>
>> authoritative;
>> ddns-update-style none;
>>
>>
>> subnet 192.168.4.0 netmask 255.255.255.0 {
>>         default-lease-time 21600;
>>         max-lease-time 43200;
>>
>>         get-lease-hostnames on;
>>         use-host-decl-names on;
>>            option domain-name              "DOMAIN";
>>         option routers                  IP;
>>         option domain-name-servers      IP,IP;
>>
>>         option time-offset             -5;     # Eastern Standard Time
>>         option ntp-servers              IP;
>>
>>         option netbios-name-servers     IP;
>>         option netbios-node-type        8;
>>
>>
>>         host computer1    { hardware ethernet MACADDR;  fixed-address
>> computer1.domain;  }
>>               pool {
>>                 range 192.168.4.235 192.168.4.253;
>>         }
>> }
>>
>>
>>
>>
>> _______________________________________________
>> rhelv5-list mailing list
>> [email protected]
>> https://www.redhat.com/mailman/listinfo/rhelv5-list
>>
>
>

_______________________________________________
rhelv5-list mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/rhelv5-list

Reply via email to