zoukankan      html  css  js  c++  java
  • dhcp服务配置

    ddns-update-style interim;
    ignore client-updates;             
    subnet 192.168.1.0 netmask 255.255.255.0 {
    range dynamic-bootp 192.168.1.100 192.168.1.200;     #段
    option domain-name-servers 8.8.8.8,192.168.1.1;       #dns服务
    option domain-name "han.com";            #域名
    option subnet-mask 255.255.255.0;       #掩码
    option time-offset -18000;                      #租用时间
    option routers 192.168.1.254;                #吓一跳,网关
    default-lease-time 21600;                   #默认时间
    max-lease-time 43200;                       #最大租用时间
    host web {                                           #捆绑ip
    option host-name "hanlei.com";            #域名
    hardware ethernet 00:0c:29:70:73:cb;   #mac地址
    fixed-address 192.168.1.168 ;               #捆绑ip
    }
    }

     ******************************************************

    超级作用域

    ddns-update-style interim;
    ignore client-updates;
    shared-network aaa{
    subnet 192.168.1.0 netmask 255.255.255.0 {
    # range dynamic-bootp 192.168.1.100 192.168.1.200;
    option domain-name-servers 8.8.8.8,192.168.1.1;
    option domain-name "han.com";
    option subnet-mask 255.255.255.0;
    option time-offset -18000;
    option routers 192.168.1.254;
    default-lease-time 21600;
    max-lease-time 43200;

    }
    subnet 192.168.2.0 netmask 255.255.255.0 {
    range dynamic-bootp 192.168.2.100 192.168.2.200;
    option domain-name-servers 8.8.8.8,192.168.1.1;
    option domain-name "han.com";
    option subnet-mask 255.255.255.0;
    option time-offset -18000;
    option routers 192.168.2.254;
    default-lease-time 21600;
    max-lease-time 43200;
    }
    }

  • 相关阅读:
    jsp mysql 配置线程池
    服务端 模拟 检测 攻击。。乱写
    硕思闪客精灵 7.2 破解版
    unity UnityAwe 插件
    smartfoxserver 2x 解决 Math NAN
    unity 断点下载
    java 监听文件目录修改
    wind7 64 setup appjs
    sfs2x 修改jvm 内存
    unity ngui 解决图层问题
  • 原文地址:https://www.cnblogs.com/han1094/p/6364203.html
Copyright © 2011-2022 走看看