Für die Vorgeschichte: http://debianforum.de/forum/viewtopic.php?f=18&t=113830&p=721890#p721890
Ich habe in der dhcpd.conf auf meinem DHCP3-Server den Eintrag "option domain-name-servers 192.168.2.10, 192.168.1.1;
" drin. Der Nameserver sollte beim Client-Rechner in die resolv.conf eingetragen werden.
Leider negativ. Weiss hier jemand wieso?
Das Internet funktioniert sobald ich den Nameserver manuell in die oben genannte Datei eingetragen habe. Ansonsten können die Hosts nicht aufgelöst werden. Die Anfragen werden auch nicht weitergeleitet (forwarding/Bind9).
Hier noch die gesamte dhcpd.conf
Code: Alles auswählen
srv01:/etc/samba# cat /etc/dhcp3/dhcpd.conf
ddns-update-style none;
#auf diesen server werden daten weitergeleitet: option domain-name-servers ns1.srv01;
option domain-name-servers 192.168.2.10, 192.168.1.1;
option broadcast-address 192.168.2.255;
option domain-name "ns1.srv01";
option domain-search "ns1.srv01";
option routers 192.168.2.10; #standard-route
option ip-forwarding on;
default-lease-time 600;
max-lease-time 7200;
# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
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;
#von mir 2009-09-06
subnet 192.168.2.0 netmask 255.255.255.0
{
range 192.168.2.20 192.168.2.59;
}
host og2
{
hardware ethernet 00:24:8c:0f:ad:fd;
fixed-address 192.168.2.62;
}
#für pc büro adresse noch auswechseln
host og1
{
hardware ethernet 00:19:66:45:49:80;
fixed-address 192.168.2.61;
}
#192.168.2.10 - 192.168.2.19 = Server-Adressen
#192.168.2.20 - 192.168.2.59 = DHCP-Adressen
#192.168.2.60 - 192.168.2.253 = Fixe DHCP-Hosts