I'm still not having any luck on getting an IP.  In syslog, I see

Aug  8 13:40:55 Server dhcpd: DHCPDISCOVER from 00:40:c7:87:61:cf via eth0
Aug  8 13:40:55 Server dhcpd: DHCPOFFER on 10.0.254.252 to 00:40:c7:87:61:cf
via eth0

repeated several times before it gives up.


I corrected some of the problems in my DHCP config; ifconfig eth0 now reads:

eth0   Link encap:Ethernet  HWaddr 00:40:C7:7E:46:EA
          inet addr:10.10.1.1  Bcast:10.255.255.255  Mask:255.0.0.0
          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
          RX packets:45010128 errors:16151 dropped:0 overruns:0 frame:0
          TX packets:5707917 errors:0 dropped:0 overruns:4 carrier:0
          collisions:593115 txqueuelen:100
          RX bytes:3292752478 (3.0 GiB)  TX bytes:1232288388 (1.1 GiB)
          Interrupt:15 Base address:0xc000


Here's my dhcpd.conf file:

ddns-update-style none;

option domain-name-servers 209.60.252.5, 64.55.192.20;

default-lease-time 50000000;
max-lease-time 100000000;

#Sugusted by Microsoft
#option dhcp-rebinding-time 12000;
#option dhcp-renewal-time 12000;

#added from email

#ddns-update-style interim;
one-lease-per-client on;

#end

authoritative;

#option subnet-mask            255.0.0.0;
option broadcast-address      10.255.255.255;

subnet 10.0.0.0 netmask 255.0.0.0 {
  range 10.0.0.0 10.0.255.255;

  option subnet-mask            255.0.0.0;
  option routers 10.0.0.1;
  allow bootp;
  #allow booting;  #added
  next-server 10.10.1.1;

  option vendor-encapsulated-options ff;
  option root-path "/opt/ltsp/i386";
  if substring (option vendor-class-identifier, 0, 9) = "PXEClient"
  {
     filename "/tftpboot/pxelinux.0";
  }
  else if substring (option vendor-class-identifier, 0, 9) = "Etherboot"
  {
    filename "/tftpboot/lts/vmlinuz-2.4.21-ltsp-1";
#    filename "/tftpboot/pxelinux.etherboot.0";
  }

  host paul {
    hardware ethernet 00:20:18:d8:1b:dd;
    fixed-address 10.0.0.1;
  }
}

It does this on both a real machine and a VMWare one.  For some reason, the
image loads a LOT faster on the real one than on the VM.  Any ideas there
would be apriciated.


----------------------------------------------------------------------------------
Dial Broadband has arrived in California! Up to 5 times faster than traditional dialup 
connections from $13.33/month! See the demo for yourself at http://www.BigValley.net



-------------------------------------------------------
This SF.Net email sponsored by: Free pre-built ASP.NET sites including
Data Reports, E-commerce, Portals, and Forums are available now.
Download today and enter to win an XBOX or Visual Studio .NET.
http://aspnet.click-url.com/go/psa00100003ave/direct;at.aspnet_072303_01/01
_______________________________________________
unattended-info mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unattended-info

Reply via email to