Ich habe gerade ein Problem mit meinem DHCP-Server und weiß absolut nicht was da falsch sein könnte. Ich bekomme im syslog dauernd Einträge folgender Art:
Code: Alles auswählen
Jun 27 14:08:51 snert dhcpd: Both dynamic and static leases present for 1.2.3.246.
Jun 27 14:08:51 snert dhcpd: Either remove host declaration merkur or remove 1.2.3.246
Jun 27 14:08:51 snert dhcpd: from the dynamic address pool for 1.2.3.0
Jun 27 14:38:52 snert dhcpd: Both dynamic and static leases present for 1.2.3.246.
Jun 27 14:38:52 snert dhcpd: Either remove host declaration merkur or remove 1.2.3.246
Jun 27 14:38:52 snert dhcpd: from the dynamic address pool for 1.2.3.0
In der dhcpd.conf steht
Code: Alles auswählen
option subnet-mask 255.255.255.0;
option broadcast-address 1.2.3.255;
option routers 1.2.3.1;
subnet 1.2.3.0 netmask 255.255.255.0 {
range 1.2.3.241 1.2.3.250;
}
group {
use-host-decl-names on;
option log-servers 1.2.3.243;
# Windowsrechner
host sven {
option host-name "sven";
option domain-name "meinedomain.de";
hardware ethernet 00:05:5D:02:8B:CF;
fixed-address 1.2.3.242;
}
host honi {
option host-name "honi";
option domain-name "meinedomain.de";
hardware ethernet 00:50:BF:2D:3B:0F;
fixed-address 1.2.3.244;
#option-128 ist KEINE MAC-Adresse!!!
option option-128 e4:45:74:68:00:00;
option option-129 "NIC=ne IO=0x320";
}
# Der Netzwerkdrucker !!!
host merkur {
option host-name "merkur";
option domain-name "meinedomain.de";
hardware ethernet 00:C0:EE:D6:87:D0;
fixed-address 1.2.3.246;
}
[weitere host Einträge mit fixed-address, andere Namen, andere MACs]
}
In der dhcpd.leases steht die IP auch nicht drin. Dafür finde ich dort Einträge die ich nicht ganz verstehe.
Code: Alles auswählen
lease 1.2.3.244 {
starts 4 2007/06/14 18:24:15;
ends 4 2007/06/14 19:24:15;
hardware ethernet 00:11:95:66:05:c7;
uid 01:00:11:95:66:05:c7;
client-hostname "Surferstation";
}
lease 1.2.3.243 {
starts 1 2007/06/11 12:22:52;
ends 1 2007/06/11 12:22:52;
abandoned;
client-hostname "Surferstation";
}
lease 1.2.3.242 {
starts 1 2007/06/11 12:22:44;
ends 1 2007/06/11 12:22:44;
abandoned;
client-hostname "Surferstation";
}
Wo kommt das her?
Hab ich irgendwas blödes übersehen?
Gruß
Thorsten