DHCP介绍及其配置

DHCP: 动态主机配置协议
 
基于 udp 监听端口 客户端: 68(dhclient)  服务端: 67(dhcpd)
地址租约信息: /var/lib/dhcpd/dhcpd.leases
租约:
ip 地址租约约定: ip 用的租期的 50% 时客户端必须向服务器提出续约的请求,若失败则会用剩下的一半时间即 75% 再向服务器请求,一般到 87.5% 再请求不到 ip 会收回
 
 
进程为: dhcpd
配置文件: /etc/dhcpd.conf 
辅助配置文件: /etc/sysconfig/dhcpd
服务脚本 : /etc/init.d/dhcpd start|stop|restart
 
样例配置文件: /usr/share/doc/dhcp- 3.0.5 /dhcpd.conf.sample
出现同一选项是以自由选项为准 作用范围小优先级高
配置 DHCP 服务器:
前提:
     关掉 selinux
     虚拟机中关掉自身的 dhcp
     网卡使用 hostonly 配置其 ip
配置文件: /etc/dhcpd.conf
ddns-update-style interim;    dhcp 支持的 dns 动态更新的方式
ignore client-updates;   不允许客户端更新 dns 记录
 
subnet 192.168.20.0 netmask 255.255.255.0 {
 
# --- default gateway
        option routers                  192.168.20.1;            网关
        option subnet-mask              255.255.255.0;
 
#       option nis-domain               "domain.org";               nis 验证域名
        option domain-name              "example.com";              动态域名
        option domain-name-servers      100.100.10.1,200.200.20.2;  dns 服务器
 
        option time-offset              -18000; # Eastern Standard Time
#       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  192.168.20.4 192.168.20.25;           允许分配的地址池
        default-lease-time 21600;                    租约时间
        max-lease-time 43200;                        租约最大时间
 
        # we want the nameserver to appear at a fixed address
        host ns {      主机 ip 的绑定
                hardware ethernet 00:0C:29:F5:29:21;   主机 mac 地址
                fixed-address 192.168.20.40;           主机 ip
        }
}
       
默认监听每个网卡: 0.0.0 .0
监听特定网卡地址: /etc/sysconfig/dhcpd 配置
                  DHCPDARGS=eth0
客户端动态获得地址:
dhclient eth0 
参数 -d 测试会显示获得过程 ctrl +c 取消
要重新获得地址要 killall dhclient
使用自己规定的 dns 服务器在 /etc/sysconfig/network-scripts/ifcfg-eth0    添加 PEERDNS=no
 
定义地址类别:
            基于 mac 地址的
            基于操作系统的
class "vmware" {
                match if substring (hardware, 1, 3) = 00:0C:29;
}
 
class "microsoft-client" {
                     match if substring (option vendor-class-identifier, 0, 3) = "MSFT";
                     option routers 192.168.0.254
                     
                      option domain-name-servers      100.100.10.1,200.200.20.2; 
}
    
       pool {
        allow members of "vmware";
        range 192.168.20.40 192.168.20.60;
 
        }
        pool {
        deny members of "vmware";
        deny members of "microsoft-client";
        range 192.168.20.100 192.168.20.120;
}
 
 
中继器代理的应用 : 实现不同网络段的 ip 的分配
/etc/sysconfig/dhcrelay
INTERFACES="eth0 eth1" 实现网段的接口即网卡接口
DHCPSERCERS="192.168.20.5"  dhcp 服务器地址
开启服务 server dhcrelay restart
服务器的配置: /etc/dhcpd.conf 添加
subnet 192.168.100.0 netmask 255.255.255.0 {
        option routers 192.168.100.1;
        option subnet-mask 255.255.255.0;
        range 192.168.100.60 192.168.100.70;
 
}
 
 
 
 
 
 
 

你可能感兴趣的:(职场,配置,DHCP,休闲,DHCP介绍)