dhcp超级作用域 
ddns-update-style interim;
ignore client-updates;
shared-network dddhcp {
option domain-name-servers 192.168.1.1,192.168.2.1;
option subnet-mask 255.255.255.0;
default-lease-time 21600;
max-lease-time 43200;
subnet 192.168.1.0 netmask 255.255.255.0 {
        option routers 192.168.1.1;
        range dynamic-bootp 192.168.1.128 192.168.1.129;
}
subnet 192.168.2.0 netmask 255.255.255.0 {
        option routers 192.168.2.1;
        range dynamic-bootp 192.168.2.128 192.168.2.129;
}
}