Dave wrote: > $ cat /etc/dhcp3/dhcpd.conf > ddns-update-style none; I have interim as the setting for this. Can't remember the significance of this though!
> option domain-name "my-example.com"; > #option domain-name-servers ????????????; #how do I assign my ISP's name > servers dynamically? My ISP's nameservers haven't changed in years, so I hardcode them. I also define the fllowing here: option subnet-mask 255.255.255.0; > default-lease-time 604800; > max-lease-time 2419200; > > #authoritative; Might want to consider un-commenting this. I also define the following here: allow bootp; allow booting; > # 2009.12.05 DS from > http://www.basicconfig.com/linuxnetwork/configure_dhcp_server_ubuntu subnet 192.168.2.0 netmask 255.255.255.0 { > option domain-name "my-example.com"; > option broadcast-address 192.168.2.251; #my Netgear router As others have said, this looks screwy. should be .255 > option subnet-mask 255.255.255.0; > option routers 192.168.2.251; #my Netgear router > range 192.168.2.125 192.168.2.200; # No comma, just whitespace > } > > group { > next-server 192.168.2.7; # IP address of your TFTP server > host mvp > { > # NOTE: Change the hardware ethernet to the MAC address of your actual > MVP > hardware ethernet 00:xx:ae:xx:a2:xb; > fixed-address 192.168.2.13; > filename "mvp.bin"; > option root-path "/tftpboot,rsize=4096,wsize=4096,nolock"; #what path > goes here??? I have this line commented out. > } > } > > log-facility local7; Mine is a rev D. It's been a LONG time since I set this up, but it worked for me. It's also been a while since my mvpmc has been on the network, due to now having a full-blown Myth frontend in place. -- Mike Holden http://www.by-ang.com - the place to shop for all manner of hand crafted items, including Jewellery, Greetings Cards and Gifts ------------------------------------------------------------------------------ Join us December 9, 2009 for the Red Hat Virtual Experience, a free event focused on virtualization and cloud computing. Attend in-depth sessions from your desk. Your couch. Anywhere. http://p.sf.net/sfu/redhat-sfdev2dev _______________________________________________ Mvpmc-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mvpmc-users mvpmc wiki: http://mvpmc.wikispaces.com/
