Steve, thanks for the reply, however I don't think your suggestion is
working for me either :(

http://daevid.com/examples/dhcp/ shows the TiVos and ReplayTV for example,
and there is no start/end lease time for them. Am I using the command right
and in the right place? I thought the 'top' stuff was global. Do I need to
use 'option' in front of it?

Here is my /etc/dhcpd.conf file (and I did restart dhcpd of course):

----------dhcpd.conf--------------
[EMAIL PROTECTED] etc]# cat dhcpd.conf
#       $OpenBSD: dhcpd.conf,v 1.1 1998/08/19 04:25:45 form Exp $
#
# DHCP server options.
# See dhcpd.conf(5) and dhcpd(8) for more information.
#

# Network:              192.168.1.0/255.255.255.0
# Domain name:          my.domain
# Name servers:         192.168.1.3 and 192.168.1.5
# Default router:       192.168.1.1
# Addresses:            192.168.1.32 - 192.168.1.127
#
#  shared-network LOCAL-NET {

ddns-update-style interim;
option  domain-name-servers 204.127.198.4, 63.240.76.4, 206.191.191.1,
216.254.21.212;
max-lease-time 600;
default-lease-time 600;
update-static-leases on;

        subnet 192.168.1.0 netmask 255.255.255.0 {
                option routers 192.168.1.1;
                range 192.168.1.2 192.168.1.20;
                option  domain-name "daevid.com";
                option  netbios-name-servers 192.168.1.1;
        }

        subnet 10.10.10.0 netmask 255.255.255.0 { 
                option routers 10.10.10.1;
                range 10.10.10.1 10.10.10.30;
                option  domain-name "wireless.daevid.com";
                option  netbios-name-servers 10.10.10.1;
        }

        host tivo.daevid.com {
                hardware ethernet 00:0B:AD:08:38:C3; # TiVo Turbo-Net MAC
                fixed-address 192.168.1.19;           # bind this card to
this IP always 
        }
        host tivo2.daevid.com {
                hardware ethernet 00:0B:AD:31:AA:A6; # TiVo Turbo-Net MAC
                fixed-address 192.168.1.18;           # bind this card to
this IP always 
        }
        host replay.daevid.com {
                hardware ethernet 00:80:45:31:D8:29; # ReplayTV MAC
                fixed-address 192.168.1.3;           # bind this card to
this IP always 
        }

        host orinoco.daevid.com {
                hardware ethernet 00:02:2D:3C:7C:FB; # Orinoco Gold MAC
                fixed-address 10.10.10.69;           # bind this card to
this IP always 
        }
        host prizm.daevid.com {
                hardware ethernet 00:02:6F:01:B9:AF; # EnGenius Prizm MAC
                fixed-address 10.10.10.70;           # bind this card to
this IP always 
        }
        host cisco.daevid.com {
                hardware ethernet 00:07:EB:31:87:4E; # Cisco Airnet 350 MAC
                fixed-address 10.10.10.71;           # bind this card to
this IP always 
        }

        # this is legacy stuff eric said i need.
        subnet 12.0.0.0 netmask 255.0.0.0 { }
----------dhcpd.conf--------------


> > Okay, my dhcp client web page is pretty much done...
> > http://daevid.com/examples/dhcp/
> > The .tgz file is linked at the bottom if you want it.
> > 
> > What I don't understand is why my dhcpd.leases file doesn't 
> > have an entry for my notebook (10.10.10.69) yet I specifically
> > put this entry in /etc/dhcpd.conf
> > 
> > host orinoco.daevid.com {
> >    hardware ethernet 00:02:2D:3C:7C:FB; 
> >    fixed-address 10.10.10.69;     
> > }
> > 
> > So I do get assigned the IP and everything works from a 
> > network standpoint, but why doesn't the
> > /var/lib/dhcp/dhcpd.leases file have an entry that should
> > look something like:
> 
> [snip...]
> 
> Try adding: "update-static-leases" to your dhcpd.conf file.


-- 
redhat-list mailing list
unsubscribe mailto:[EMAIL PROTECTED]
https://www.redhat.com/mailman/listinfo/redhat-list

Reply via email to