免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
楼主: summer820228
打印 上一主题 下一主题

DHCP 双机的BUG吗? [复制链接]

论坛徽章:
0
11 [报告]
发表于 2009-03-27 11:03 |只看该作者

这是配置文件

#
# DHCP Server Configuration file.
#   see /usr/share/doc/dhcp*/dhcpd.conf.sample  
#
authoritative;
ddns-update-style ad-hoc;
ignore client-updates;
one-lease-per-client true;
max-lease-time 43200;
default-lease-time 21600;
option domain-name-servers 122.159.51.5,202.97.224.68,122.159.51.6;
failover peer "dhcp"
{
secondary;
address 192.168.30.22;
port 519;
peer address 192.168.30.21;
peer port 520;
max-response-delay 60;
max-unacked-updates 10;
}

#DOMAIN_default0
   
        #SongJiang_VOD
                subnet 10.102.129.0 netmask 255.255.255.248 {
                        option routers 10.102.129.1;
                        pool{
                        failover peer "dhcp";
                                                range 10.102.129.2 10.102.129.6;                                        deny dynamic bootp clients;
                        }

                }

论坛徽章:
0
12 [报告]
发表于 2009-03-27 12:17 |只看该作者

没有人弄过这东西吗?

这东西没人弄过吗?

论坛徽章:
0
13 [报告]
发表于 2009-03-27 13:32 |只看该作者

我等

我等

论坛徽章:
0
14 [报告]
发表于 2009-03-27 14:25 |只看该作者
这个是主服务器上的部分配置,我们这儿已经用了两年多了
#configure by BenjmS 20060714
option domain-name "xxxxx.com";
option domain-name-servers  172.20.1.30, 172.20.1.50, 202.96.128.86, 202.96.128.166;
ddns-update-style none;
default-lease-time 7200;
max-lease-time 14400;
authoritative;
log-facility local6;

failover peer "dhcp-failover" {
  primary;
  address 172.20.1.30;
  port 519;
  peer address 172.20.1.50;
  peer port 520;
  max-response-delay 30;
  max-unacked-updates 10;
  load balance max seconds 3;
  mclt 1800;
  split 128;
}

#DataCenter
subnet 172.20.1.0 netmask 255.255.255.0 {
}
#Hall 1, Hall 1A, wire
subnet 172.18.0.0 netmask 255.255.252.0 {
  option routers 172.18.0.1;
  pool {
   # failover peer "dhcp-failover";
    range 172.18.0.10 172.18.3.200;
    deny dynamic bootp clients;
  }
}
#Hall 2, Hall 1B, wire
subnet 172.18.4.0 netmask 255.255.252.0 {
  option routers 172.18.4.1;
  pool {
    failover peer "dhcp-failover";
    range 172.18.4.10 172.18.7.200;
    deny dynamic bootp clients;
  }
}
#Hall 3, Hall 1C, wire
subnet 172.18.8.0 netmask 255.255.252.0 {
  option routers 172.18.8.1;
  pool {
    failover peer "dhcp-failover";
    range 172.18.8.10 172.18.11.200;
    deny dynamic bootp clients;
  }
}
#Hall 4, Hall 1D, wire
subnet 172.18.12.0 netmask 255.255.252.0 {
  option routers 172.18.12.1;
  pool {
    failover peer "dhcp-failover";
    range 172.18.12.10 172.18.15.200;
    deny dynamic bootp clients;
  }
}

论坛徽章:
0
15 [报告]
发表于 2009-03-27 14:28 |只看该作者
这个是备的
#configure by BenjmS 20060714
option domain-name "xxx.com";
option domain-name-servers 172.20.1.30, 172.20.1.50, 202.96.128.166, 202.96.128.86;
ddns-update-style none;
default-lease-time 7200;
max-lease-time 14400;
authoritative;
log-facility local6;

failover peer "dhcp-failover" {
  secondary;
  address 172.20.1.50;
  port 520;
  peer address 172.20.1.30;
  peer port 519;
  max-response-delay 30;
  max-unacked-updates 10;
  load balance max seconds 3;
}

#configure by BenjmS 20060714
#DataCenter
subnet 172.20.1.0 netmask 255.255.255.0 {
}
#Hall 1, Hall 1A, wire
subnet 172.18.0.0 netmask 255.255.252.0 {
  option routers 172.18.0.1;
  pool {
    failover peer "dhcp-failover";
    range 172.18.0.10 172.18.3.200;
    deny dynamic bootp clients;
  }
}
#Hall 2, Hall 1B, wire
subnet 172.18.4.0 netmask 255.255.252.0 {
  option routers 172.18.4.1;
  pool {
    failover peer "dhcp-failover";
    range 172.18.4.10 172.18.7.200;
    deny dynamic bootp clients;
  }
}

论坛徽章:
0
16 [报告]
发表于 2009-03-27 14:32 |只看该作者
这个是另外一对双机的主配置,跟上面的差不多:
[root@DNS-DHCP-NTP-SERVER1 etc]# vi dhcpd.conf
#authritative;
ddns-update-style interim;
ignore client-updates;
#one-lease-per-client true;
#option nis-domain              "pz.com";
#option domain-name "pz.com";
option domain-name-servers 10.32.0.100,10.32.0.101,202.96.128.86,202.96.128.166;
#option time-offset -18000;
#option ntp-servers 10.32.0.100,10.32.0.101;
option netbios-name-servers 10.32.0.100,10.32.0.101;
default-lease-time 21600;
max-lease-time 43200;
log-facility local6;

failover peer "dhcp"{
        primary;
        address 10.32.0.100;
        port 519;
        peer address 10.32.0.101;
        peer port 520;
        max-response-delay 60;
        max-unacked-updates 10;
        mclt 600;
        split 128;
#authritative;
ddns-update-style interim;
ignore client-updates;
#one-lease-per-client true;
#option nis-domain              "pz.com";
#option domain-name "pz.com";
option domain-name-servers 10.32.0.100,10.32.0.101,202.96.128.86,202.96.128.166;
#option time-offset -18000;
#option ntp-servers 10.32.0.100,10.32.0.101;
option netbios-name-servers 10.32.0.100,10.32.0.101;
default-lease-time 21600;
max-lease-time 43200;
log-facility local6;

failover peer "dhcp"{
        primary;
        address 10.32.0.100;
        port 519;
        peer address 10.32.0.101;
        peer port 520;
        max-response-delay 60;
        max-unacked-updates 10;
        mclt 600;
        split 128;
        load balance max seconds 3;
}


############################################################
#DataCenter                                                #
############################################################
subnet 10.32.0.0 netmask 255.255.255.0 {
        option routers 10.32.0.1;
        option subnet-mask 255.255.255.0;
        pool{
                failover peer "dhcp";
                range 10.32.0.200 10.32.0.210;
                deny dynamic bootp clients;
        }
}
############################################################
#wireless AP management address assignment,vlan101~vlan113 #
############################################################
option serverip code 43 = ip-address;
class "vendor-class" {
match option vendor-class-identifier;
}

#danjuan 1-C cheng,wireless AP Vlan-800
subnet 10.34.0.0 netmask 255.255.224.0 {
        option routers                  10.34.0.1;
        option subnet-mask              255.255.224.0;
        subclass "vendor-class" "ArubaAP" {
                option vendor-class-identifier "ArubaAP";
                option serverip 10.37.17.4;
        }
        pool {
        failover peer "dhcp";
        range 10.34.8.101 10.34.8.254;
        deny dynamic bootp clients;
        }
}

论坛徽章:
0
17 [报告]
发表于 2009-03-27 14:34 |只看该作者
至于dhcpd.lease,是dhcpd自动生成的,在没有人用的时候,最好清空一下

论坛徽章:
0
18 [报告]
发表于 2009-03-27 14:55 |只看该作者
bingosek    谢谢你的回复.   

你是建这个双机的时候试用 如果你地址池中只用6个地址 如果你DOWN掉一台的时候.   

如果你用ipconfig /release 命令.  
然后在用ipconfig /renew  命令。就会获得一个新的IP.   直到6个地址你全部获得一次,然后你的DHCP就在也不能分配IP了.

论坛徽章:
0
19 [报告]
发表于 2009-03-27 14:59 |只看该作者

两台都好使的时候是什么问题都没有的

两台都好使的时候是什么问题都没有的

论坛徽章:
0
20 [报告]
发表于 2009-03-27 16:16 |只看该作者

回复 #18 summer820228 的帖子

我们这里没有出现过这样的情况,如果是这样的话,你查查dhcpd.release,原来的IP为什么没有释放掉
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP