Hallo,
ich habe ein Problem mit der DCHP-Konfiguration (dhcpd). Ziel ist, daß die
Clients ihre IP-Adresse unabhängig von der MAC-Adresse bekommen; sie sollen
sich allein über den Host-Namen identifizieren.
Obwohl das lt. man-pages funktionieren sollte, klappt das nicht - weder mit
Win2k-, Win98- noch mitOS/2-Clients.
Was mich irritiert: In der Firma, in der ich arbeite, läuft es ohne
Probleme. Ich weiß allerdings nicht, welcher DHCP-Server dort im Einsatz
ist. Ein Notebook, bei dem ich in der Firma eine IP-Adresse bekomme, erhält
von meinem BSD-Server keine, wenn ich nicht eine MAC-Adresse angebe.
Wer kann mir hier helfen?
Gruß
Carsten Rossow
--------------------------------------------------------------
# dhcpd.conf
#
# Configuration file for ISC dhcpd
#
ddns-update-style none;
default-lease-time 3600;
max-lease-time 43200;
#get-lease-hostnames true;
option domain-name "domain.de";
option domain-name-servers ns.domain.de;
option interface-mtu 1492;
option subnet-mask 255.255.255.0;
option broadcast-address 255.255.255.255;
# This DHCP server is the official DHCP server for the local network.
authoritative;
# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;
subnet 192.168.2.0 netmask 255.255.255.0 {
option routers 192.168.2.13;
pool {
default-lease-time 3600;
max-lease-time 43200;
allow unknown clients;
range 192.168.2.200 192.168.2.250;
}
}
host ahost {
option dhcp-client-identifier "ahost";
fixed-address ahost.domain.de;
}
host bhost {
option dhcp-client-identifier "bhost";
fixed-address bhost.domain.de;
}
To Unsubscribe: send mail to majordomo(at)de.FreeBSD.org
with "unsubscribe de-bsd-questions" in the body of the message
Received on Thu 10 May 2001 - 22:28:23 CEST