您的位置:首页 > 运维架构 > Linux

Linux DHCP 客户端分类

2014-01-09 14:27 309 查看
default-lease-time 150;
max-lease-time 150;
option domain-name              "test.com";
option domain-name-servers      192.168.182.1;
class "test" {
match pick-first-value (option dhcp-client-identifier, hardware);
}
subclass "test" 1:00:0c:29:83:00:cf;
subclass "test" 1:00:0c:29:83:00:e3;
subnet 192.168.182.0 netmask 255.255.255.0 {
option routers                  192.168.182.1;
option subnet-mask              255.255.255.0;
pool {
#allow unknown-clients;
deny members of "test";
range   192.168.182.200 192.168.182.250;
}
pool {
allow members of "test";
range   192.168.182.10 192.168.182.10;
}
}
本文出自 “Spring罂粟” 博客,请务必保留此出处http://itxwh.blog.51cto.com/5362423/1350098
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: