On Wed, 14 Nov 2001, David Talkington wrote:

> Nat B. wrote:
> 
> >I have dhcp-2.0pl5-4 server on RH7.1
> >sometimes DHCP clients don't take leases from linux servers.


> 
> >Is there a way to give infinite leases to DHCP clients?

Well, you can give the operational equivalent of it by giving it extremely 
large lease times in dhcpd.conf.  For example:

/etc/dhcpd.conf

subnet 192.168.1.0 netmask 255.255.255.0 {
        range 192.168.1.2 192.168.1.200;
        option routers 192.168.1.1;
        default-lease-time 2592000;     
        max-lease-time 25920000;        
# these are in seconds - are these close enough to infinity for you?
        domain-name-servers 192.168.1.1, 198.79.53.11;
}


***************************************************************************
Jerry Winegarden        OIT/Technical Support           Duke University
[EMAIL PROTECTED]            http://www-jerry.oit.duke.edu
***************************************************************************



_______________________________________________
Redhat-list mailing list
[EMAIL PROTECTED]
https://listman.redhat.com/mailman/listinfo/redhat-list

Reply via email to