Hi, I got a new machine to become my new server, so I installed OpenBSD 4.3 stable and all services thar run on the old machine. The older one runs OpenBSD 4.2 stable upgraded from OpenBSD 4.1 stable, everything works fine including dhcpd that pass some special options that says to System Imager Client which server to search for. On the new machine with the same configuration file, it does not work. The System Imager clients did not get the values, I think it is not passed. All the default information are passed. I recompiled again my userland to try to solve this, but it not works.
Below my configuration file: # $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. # option domain-name "ncd.org.br"; option impress-servers 192.168.1.252; option time-servers 192.168.1.254; default-lease-time 86400; max-lease-time 90000; subnet 192.168.1.0 netmask 255.255.255.0 { deny unknown-clients; option domain-name-servers 192.168.1.254, 172.20.2.31, 172.20.2.126, 172.20.2.10; server-identifier 192.168.1.252; option routers 192.168.1.254; # Servidor System Imager option option-100 "192.168.1.252"; option option-140 "192.168.1.252"; option option-144 "n"; next-server 192.168.1.252; filename "pxelinux.bin"; range 192.168.1.1 192.168.1.24; range 192.168.1.251 192.168.1.251; #Clientes host ncd01 { hardware ethernet 00:0B:E0:J6:1C:FE; fixed-address 192.168.1.1; option host-name "ncd01";} . . . (Other clients) } Any idea , how to solve this? Thanks in advance.