zoukankan      html  css  js  c++  java
  • DHCP

     部署dhcpd服务程序

    [root@localhost ~]# yum install dhcp
    [root@localhost ~]# cat /etc/dhcp/dhcpd.conf
    # DHCP Server Configuration file.
    # see /usr/share/doc/dhcp*/dhcpd.conf.example
    # see dhcpd.conf(5) man page

    自动管理IP地址

    [root@localhost ~]# vim /etc/dhcp/dhcpd.conf
    ddns-update-style none;
    ignore client-updates;
    subnet 192.168.10.0 netmask 255.255.255.0 {
    range 192.168.10.50 192.168.10.100;
    option subnet-mask 255.255.255.0;
    option routers 192.168.10.10;
    option domain-name-servers 192.168.10.10;
    default-lease-time 21600;
    max-lease-time 43200;
    }

    [root@localhost ~]# systemctl restart dhcpd
    [root@localhost ~]# systemctl enable dhcpd
    ln -s '/usr/lib/systemd/system/dhcpd.service' '/etc/systemd/system/multi-user.target.wants/dhcpd.service'
    [root@localhost ~]# systemctl status dhcpd
    Active: active (running) since Tue 2019-11-26 11:47:32 CST; 12s ago

    [root@localhost
    ~]# iptables -F
    [root@localhost ~]# service iptables save
    iptables: Saving firewall rules to /etc/sysconfig/iptables:[ OK ]

    分配固定IP地址

    [root@localhost ~]# cat /var/log/messages
    Aug 13 20:14:13 localhost dhcpd: DHCPACK on 192.168.10.50 to 00:0c:29:e3:37:19 (Linuxprobe-PC) via eno16777728
    [root@localhost ~]# vim /etc/dhcp/dhcpd.conf
    host boss {
            hardware ethernet 00:0c:29:e3:37:19;
            fixed-address 192.168.10.88;
    }
    host ding {
            hardware ethernet 00:0c:29:1d:84:69;
            fixed-address 192.168.10.99;
    }
    [root@localhost ~]# systemctl restart dhcpd
  • 相关阅读:
    分享点干货(此this非彼this)this的详细解读
    程序员需要掌握的排序算法之希尔排序(最小增量排序)
    JAVA基础学习笔记
    简单的时间日期格式化(未封装成控件)
    面试造航母,工作拧螺丝
    浅谈jquery插件开发模式
    Relative与Absolute组合使用
    表单
    个人介绍
    用计数法解决数组排序问题
  • 原文地址:https://www.cnblogs.com/dinghailong128/p/12178396.html
Copyright © 2011-2022 走看看