Linux DHCP server Simple configuration Example

Source: Internet
Author: User

1. DHCP Installation and configuration

Yum Install DHCP

Cp/usr/share/doc/dhcp*/dhcpd.conf.sample/etc/dhcp/dhcpd.conf


Vim/etc/dhcp/dhcpd.conf

Option Domain-name "redhat.com";

Option Domain-name-servers 202.96.128.166, 114.114.114.114; # Set up DNS

Default-lease-time 3600; # Default lease time, per second

Max-lease-time 7200; # Maximum lease time, per second

Log-facility Local7; # Log Level

Subnet 192.168.101.0 netmask 255.255.255.0 {

Range 192.168.101.150 192.168.101.180; # IP address ranges that can be obtained by DHCP

Option routers 192.168.101.254; # Gateway

Option Subnet-mask 255.255.255.0; # Subnet Mask


Host Test {

Hardware Ethernet 00:0c:29:6f:38:e4; # The MAC address of the bound host

Fixed-address 192.168.101.208; # bound IP

}

}


2. Start the DHCP service

Service DHCPD Restart


3. View DHCP client status

Cat/var/lib/dhcpd/dhcpd.leases

cat/var/lib/dhcpd/dhcpd.leases~



Dhclient: Get Address

-D: Run in foreground and display the get process

-R: Release address


Linux DHCP server Simple configuration Example

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.