Configuring Linux Static DHCP Clients by Sending Host Name
Q. My DHCP server configured to assign static IPs to few Debian / Ubuntu Linux boxes using hostnames. My Windows 2000 and XP client computer sends hostname automatically. How do I send my hostname under Linux using dhcp client?
A. By default, the DHCP server requests the subnet-mask, broadcast-address, time-offset, routers, domain-name, domain-name-servers and host-name options. DHCP client configuration allows you to set a hostname using send host-name "hostname" parameter.
Linux dhcpclient configuration - dhclient.conf
dhclient.conf is a configuration file for DHCP client under Linux:
- Debian / Ubuntu Linux - /etc/dhcp3/dhclient.conf
- RHEL / Fedora / CentOS Linux - /etc/sysconfig/network-scripts/ifcfg-eth0 (for 1st DHCP network interface)
WARNING! These examples requires correct hostname.Debian / Ubuntu Linux DHCP Client Configuration
Open configuration file, enter:
$ sudo vi /etc/dhcp3/dhclient.conf
Set hostname as follows:
send host-name "vivek-laptop";
Save and close the file. Test new settings, enter:
$ sudo dhclient eth0
$ sudo dhclient interface-name
RHEL / CentOS / Fedora Linux DHCP Client Configuration
Open configuration file, enter:
# vi /etc/sysconfig/network-scripts/ifcfg-eth0
Append hostname, enter:
DHCP_HOSTNAME=vivek-laptop
Save and close the file. Restart network service:
# service network restart
Please refer to dhclient.conf man page for more information, enter:
$ man dhclient.conf
Subscribe to our free e-mail newsletter or RSS feed to get all updates.
You can Email this page to a friend.
Related Other Helpful FAQs:
- Setting Up a CentOS / Red Hat Linux DHCP Client
- How do I find out my DHCP server address?
- /etc/network/interfaces Ubuntu Linux networking example
- Linux Force DHCP client (dhclient) to renew ip address
- Linux change ip address
Leave a Reply
We encourage your comments, and suggestions. But please stay on topic, be polite, and avoid spam. Thank you very much for stopping by our site!
Tags: /etc/dhcp3/dhclient.conf, /etc/sysconfig/network-scripts/ifcfg-eth0, dhclient.conf, dhcp client in linux, dhcp client on linux, linux configure dhcp client, linux dhcp client, linux dhcp client configuration, linux dhcp client lease, linux dhcp server red hat dhcp



Recent Comments
Today ~ 3 Comments
Today ~ 57 Comments
Yesterday ~ 9 Comments
Yesterday ~ 7 Comments
Yesterday ~ 1 Comment