linux下dhcp服务搭建

本文详细介绍如何在CentOS 6.5 和 6.6 上安装并配置DHCP服务。主要内容包括使用 yum 安装 dhcp 服务、编辑 dhcpd.conf 配置文件以及设置子网、地址池等关键参数。完成配置后,客户端可以通过 DHCP 自动获取 IP 地址。
  1. 环境centos6.5 ,centos6.6

  2. 安装dhcp服务  :yum install dhcp* -y

  3. 编辑配置文件/etc/dhcp/dhcpd.conf我这里直接copy覆盖之前的内容:

  4. ddns-update-style interim;
    ignore client-updates;
    next-server  192.168.77.168;
    filename "pxelinux.0";
    allow booting;
    allow bootp;
    subnet 192.168.77.0 netmask 255.255.255.0 {
    # --- default gateway
    option routers        192.168.77.1;
    option subnet-mask      255.255.255.0;
    #   option nis-domain       "domain.org";
    #  option domain-name "192.168.0.10";
    #   option domain-name-servers  192.168.0.11;
    #   option ntp-servers      192.168.1.1;
    #   option netbios-name-servers  192.168.1.1;
    # --- Selects point-to-point node (default is hybrid). Don't change this unless
    # -- you understand Netbios very well
    #   option netbios-node-type 2;
    range  dynamic-bootp  192.168.77.100 192.168.77.200;
    host ns {
    hardware ethernet  00:1a:a0:2b:38:81;
    fixed-address 192.168.77.101;}
    }

  5. 根据自己情况更改就ok了,,,重启服务/etc/init.d/dhcpd restart 成功

  6. 客户端更改static为dhcp就可以自动获取了。。。


本文转自 Anonymous123 51CTO博客,原文链接:http://blog.51cto.com/woshitieren/1666087
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值