[BACK]Return to dhcpd.conf CVS log [TXT][DIR] Up to [local] / src / etc

Annotation of src/etc/dhcpd.conf, Revision 1.2

1.2     ! sthen       1: #      $OpenBSD: dhcpd.conf,v 1.1 1998/08/19 04:25:45 form Exp $
1.1       form        2: #
                      3: # DHCP server options.
                      4: # See dhcpd.conf(5) and dhcpd(8) for more information.
                      5: #
                      6:
                      7: # Network:             192.168.1.0/255.255.255.0
                      8: # Domain name:         my.domain
                      9: # Name servers:                192.168.1.3 and 192.168.1.5
                     10: # Default router:      192.168.1.1
                     11: # Addresses:           192.168.1.32 - 192.168.1.127
                     12: #
1.2     ! sthen      13: option  domain-name "my.domain";
        !            14: option  domain-name-servers 192.168.1.3, 192.168.1.5;
1.1       form       15:
1.2     ! sthen      16: subnet 192.168.1.0 netmask 255.255.255.0 {
        !            17:        option routers 192.168.1.1;
1.1       form       18:
1.2     ! sthen      19:        range 192.168.1.32 192.168.1.127;
        !            20:
        !            21:        host static-client {
        !            22:                hardware ethernet 22:33:44:55:66:77;
        !            23:                fixed-address 192.168.1.200;
        !            24:        }
        !            25:
        !            26:        host pxe-client {
        !            27:                hardware ethernet 02:03:04:05:06:07;
        !            28:                filename "pxeboot";
        !            29:                next-server 192.168.1.1;
1.1       form       30:        }
                     31: }