linux下dhcp服務搭建

來源:互聯網
上載者:User

標籤:dhcp

  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就可以自動擷取了。。。

本文出自 “毛毛鴨” 部落格,請務必保留此出處http://woshitieren.blog.51cto.com/2466034/1666087

linux下dhcp服務搭建

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.