Re: Neuinstalltion bei vorhandenem Client
Verfasst: 18 Mär 2009, 15:33
Hi,
wenn der dhcpd den hostname sendet dann gibt es Einträge wie:
use-host-decl-names on;
oder
option host-name
siehe man dhcpd.conf:
gruss
detlef oertel
wenn der dhcpd den hostname sendet dann gibt es Einträge wie:
use-host-decl-names on;
oder
option host-name
siehe man dhcpd.conf:
Code: Alles auswählen
group {
use-host-decl-names on;
host joe {
hardware ethernet 08:00:2b:4c:29:32;
fixed-address joe.fugue.com;
}
}
is equivalent to
host joe {
hardware ethernet 08:00:2b:4c:29:32;
fixed-address joe.fugue.com;
option host-name "joe";
}
An option host-name statement within a host declaration will overâ
ride the use of the name in the host declaration.
detlef oertel