Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 19 Dec 2002 14:27:33 -0500
From:      "Moti Levy" <moti@flncs.com>
To:        "G D McKee" <freebsd@gdmckee.com>
Cc:        "Freebsd-Questions@Freebsd. Org (E-mail)" <freebsd-questions@freebsd.org>
Subject:   Re: DHCPD 3
Message-ID:  <0a8d01c2a794$afdfe6c0$fd01a8c0@motims>
References:  <003d01c2a783$78678600$c800a8c0@p1000> <3E020324.9080508@flncs.com> <007b01c2a78e$d2b8b470$c800a8c0@p1000>

next in thread | previous in thread | raw e-mail | index | archive | help
this should do it :
# $FreeBSD: ports/net/isc-dhcp3/files/rc.isc-dhcpd.conf.sample,v 1.1
2001/10/15 13:33:15 roam Exp $
#
# isc-dhcpd startup configuration file.
#

dhcpd_options="";                               # command option(s)
dhcpd_ifaces="dc0";                             # ethernet interface(s)

ddns-update-style interim;

#failover peer "gdm" {
        #primary;
        #address greeneville.gdmckee.local;
        #port 519;
        #peer address kursk.gdmckee.local;
        #peer port 520;
        #max-response-delay 60;
        #max-unacked-updates 10;
        #mclt 3600;
        #split 128;
        #load balance max seconds 3;
#}

subnet 192.168.0.0 netmask 255.255.255.0 {
        option domain-name "gdmckee.local";
        option domain-name-servers 192.168.0.1, 192.168.0.2;
        option broadcast-address 192.168.0.255;
        option subnet-mask 255.255.255.0;
        option routers 192.168.0.1;
        range 192.168.0.55 192.168.0.200;
      }

        #pool {
                #failover peer "gdm" ;
                #deny dynamic bootp clients ;
         

        key DHCP_UPDATER {
               algorithm HMAC-MD5.SIG-ALG.REG.INT;
                secret pRP5FapFoJ95JEL06sv4PQ==;
        }


        zone gdmckee.local. {
                primary 192.168.0.1;
                key DHCP_UPDATER;
        }

        zone 0.168.192.in-addr.arpa. {
                primary 192.168.0.1;
                key DHCP_UPDATER;
        }

        #host diskless {
        #       hardware ethernet 00:B0:D0:23:4F:E8;
        #       fixed-address 192.168.0.50;
        #       filename "/tftpboot/disklesskernel";
        #       option root-path "192.168.0.2:/usr/diskless/rootfs";
        #}
#}






To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-questions" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?0a8d01c2a794$afdfe6c0$fd01a8c0>