der dhcp server läuft die konfig schaut jetzt so aus:
# Sample /etc/dhcpd.conf
# (add your comments here)
default-lease-time 600;
max-lease-time 7200;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.30.255;
option routers 192.168.30.1;
option domain-name-servers 192.168.30.10;
option domain-name "mstoeger.net";
ddns-update-style ad-hoc;
shared-network mstoeger.net {
ddns-update-style ad-hoc;
subnet 192.168.30.0 netmask 255.255.255.0 {
range dynamic-bootp 192.168.30.100 192.168.30.110;
}
}
möchte mich für eure hilfe ganz herzlich bedanken.
|