I have network with an own domain name (intern.example.org for example).
A Debian system is running a dhcpd (isc-dhcpd-4.1.1-P1) and a DNSd.
Everything is working fine:
Other clients (Windows, Debian and Ubunt systems) will get the network configuration by the DHCP. Every client will set the domain-name option for example correctly.
Now I added my first Gentoo system to my network. It's running dhclient (isc-dhclient-V3.1.2p1-Gentoo).
The problem is, that dhclient does not set the domain. For example, after dhclient received the configuration from the dhcpd, my "/etc/resolv.conf" looks like
Code: Select all
gentoo ~ # cat /etc/resolv.conf
# Generated by dhclient for interface eth0
search intern.example.org
nameserver 192.168.1.2Code: Select all
domain intern.example.org
search intern.example.org
nameserver 192.168.1.2Here are some configuration files:
Code: Select all
gentoo ~ # cat /etc/conf.d/net
# This blank configuration will automatically use DHCP for any net.*
# scripts in /etc/init.d. To create a more complete configuration,
# please review /etc/conf.d/net.example and save your configuration
# in /etc/conf.d/net (this file :]!).
config_eth0=( "dhcp" )
module_eth0=( "dhclient" )Code: Select all
gentoo ~ # cat /etc/dhcp/dhclient.conf
send host-name "gentoo";
request subnet-mask, broadcast-address, time-offset, routers,
domain-name, domain-name-servers, domain-search, host-name,
netbios-name-servers, netbios-scope, interface-mtu,
ntp-servers;

