I want Ubuntu to get the hostname and DNS name from a DHCP client. The default installation of Ubuntu 11.10 (Oneiric Ocelot) does not do that.
The same question was asked and is unsolved on Ubuntu Forums.
I want Ubuntu to get the hostname and DNS name from a DHCP client. The default installation of Ubuntu 11.10 (Oneiric Ocelot) does not do that.
The same question was asked and is unsolved on Ubuntu Forums.
Oli's answer is demonstrably false ("You don't get your hostname from the DHCP server"), as evidenced by the other answers here, and also by my recent experience on a RHEL7 system. Said system got its host name from the DHCP server.
And, indeed, there are things in the DHCP configuration files that are supposed to make it happen. For example:
Is supposed to tell that host that his name is host4.
As it turns out, isc's dhclient DOES NOT APPEAR TO SUPPORT THIS!
However, dhcpcd5 does, out of the box. Stop dhclient, install dhcpcd5, run dhcpcd, renew your lease, and poof, your hostname on your DHCP client is set to the name sent from the DHCP server. No
dhclient-exit-hooks.d
scripting, no hacks inrc.local
, nothing.As an end-note, I've spent a lot of time trying to get this to work using ISC's dhclient. Absolutely no joy, even when the server sends the host name.
My initial solution to the problem was writing some cute code in
rc.local
to detect when the network came up and forcing a (in my case) search of/etc/hosts
to get the hostname and then runninghostname
with that host name. It works, but until the network comes up your hostname is probably wrong (when first deploying a host, I remove/etc/hostname
, so the host name islocalhost
until I can run/etc/init.d/hostname.sh start
once the network comes up - so when first getting a new name you need to boot twice - once to get your hostname, and once to have that name available when everything starts up...).There is a way to do it with a little script for a dhcp hook as described here.
Create a new file:
and paste the following code:
Replace
eth0
andwlan0
with the names of the interfaces from which you want to obtain the hostname. In most caseseth0
andwlan0
should stay the same.Make sure it is readable...
That's all. On the next dhcp response your hostname will update automatically.
Note that when using Ubuntu 18.04 the tie-in scripts are no longer necessary. If the hostname of the install is set to
localhost
in/etc/hostname
the DHCP client will set the hostname automatically at startup using the name issued by DHCP, if present. When runninghostnamectl
it will listlocalhost
as the permanent hostname, and whatever DHCP issues as a transient hostname.You can get your hostname from your DHCP server - it is part of the DHCP specification.
https://www.rfc-editor.org/rfc/rfc1533#section-3.14
"This option specifies the name of the client"
d_inevitable's answer almost solved my problem, but not completely. The problem was that although:
The DHCP server was sending a hostname (by adding the
in the dhcpd.conf) and I actually verified it by capturing and analyzing the contents of the DHCP offer with wireshark
The DHCP client was expecting the hostname from DHCP server (by adding
in the dhclient.conf)
The client was not getting a new hostname (easily verified by typing
in terminal and getting the old hostname, or no hostname if I had deleted the contents/file). As a result, the proposed solution by d_inevitable was only copying an empty string.
To solve that, I applied a crud solution, that generally should not be followed unless you are desperate to make it work, like I was.
First, open with edit capability the DHCP client control script:
There, you will have to locate the function
Just use the search and it should come right up. Now, at least on my computer, this function has three if-then-else conditions, encapsulated to each other:
Now, what you need is to force the assignment of the new hostname to your host, no matter what. Therefore you want to comment out the two encapsulated if-then-else. The result should look something like:
Now the d_inevitable's or this should work as expected. Hope that helps if you are in a similar desperate frustration as I was.
You don't get your hostname from the DHCP server.
You can send your hostname to the server, which may change the IP you're assigned. You can change what name is sent either by editing your Network Manager connection (the field is called DHCP Client ID) or you can edit (as root)
/etc/dhcp/dhclient.conf
. Look for the line that says:... and change
<hostname>
to whatever you like.By default Ubuntu will get its DNS settings from the router (if it sends them) but I suspect you're talking about local DNS/mDNS where you can access other computers by their hostname. This is called Ahavi or Zeroconf in Ubuntu and it's installed by default.
You should be able to access your computer by
<hostname>.local
The answer depends on whether or not you are using static leases on your DHCP server. If you are, it is unnecessary to get the hostname from DNS. You can change this line in d_inevitable's solution
to
But this should happen automatically if your hostname is originally set to localhost.localdomain, so you don't have to write a script. However, if you want to set the hostname to the FQDN, you'll need to change d_inevitable's script to
Again, all this only works if you're using static leases.
If found that can be a dhcpclient scripts bug. http://blog.schlomo.schapiro.org/2013/11/setting-hostname-from-dhcp-in-debian.html
Try to clean $old_host_name on ip renew
Also static /etc/hostname seems to has prority over dhcp answer so leave it empty
Tested on ubuntu 14.04 and dnsmasq server.
Don't have enough reputation to comment, but I'd like to piggy-back on the previous answer as it almost solved the problem for me using a dhclient hook.
I've found that using the standard ISC DHCP Server for some reason, the aforementioned hook outputs a host name with a '.' period character at the end of the hostname for some reason.
So, in the previous answer you might need "cut out" the extraneous period with a sed:
Would become:
First get an IP address for your client from your DHCP server, then you'll find the client hostname in
/var/lib/dhcp/dhcpd.leases
looks for theclient-hostname
entries. HTH