dhcpd/dhcpd.conf

Wed, 14 Jan 2009 15:59:12 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 14 Jan 2009 15:59:12 +0100
changeset 86
78e7deb1d6ab
permissions
-rw-r--r--

Correct and improve many buildconf and code logic blocks. In particular:
1. Document potential problems building with current binutils releases.
2. Document the flawed webkit and explain its temporary exclusion.
3. Document the edition of Qt which is built and installed.
4. Remove the Solaris x11_supdir logic as it is no longer found.
5. Correct several .pr[io] files including QMAKE_CXXFLAGS and INCPATH,
which previously caused preexisting Qt installations to deliver
erroneous old include and library logic instead of relying on
that of the currently building package. -I/opkg/include is now
placed at the end of the compile statements.
6. Don't trust the QMAKE_[INC|LIB]DIR_X11 identifiers in qmake.conf.
7. Allow more 64-bit builds and more properly identify the platform.
8. Place plugins (which are shared objects) in lib instead of share.
9. Build components as plugins when possible if with_shared is enabled.
10. Translate German text to English to be more consistent.
11. Instead of removing the pkgconfig directory of with_shared builds,
place it in a child directory useful for shared building.
12. Document the nonstandard shared build directory structure,
including using the hidden pkgconfig directory (PKG_CONFIG_PATH.)
13. Change %doc to specify files rather than directories in the RPM DB.

     1 ##
     2 ##  dhcpd.conf -- ISC DHCP Daemon Configuration
     3 ##
     5 #   Options applicable to all subnets
     6 option domain-name "example.com";
     7 authoritative;
     8 default-lease-time 600;
     9 max-lease-time 7200;
    10 ddns-update-style none;
    11 use-host-decl-names on;
    13 #   Define some non-standard options
    14 option freebsd-swappath code 128 = text;
    15 option freebsd-rootopts code 130 = text;
    16 option freebsd-swapopts code 131 = text;
    18 #   Test drive using loopback
    19 subnet 127.0.0.0 netmask 255.0.0.0 {
    20 }
    22 #   Define a particular sample subnet
    23 subnet 192.168.1.0 netmask 255.255.255.0 {
    25     #   Options applicable to this particular subnet
    26     option broadcast-address 192.168.1.255;
    27     option subnet-mask 255.255.255.0;
    28     option routers 192.168.1.1;
    29     option domain-name-servers 192.168.1.2;
    31     #   Dynamic DNS (DDNS) Updating
    32     ddns-updates off;
    33     ddns-domainname "example.com";
    34     ddns-rev-domainname "in-addr.arpa";
    36     #   Pool of known clients (i.e. MAC known but IP not specified)
    37     pool {
    38         range 192.168.1.100 192.168.1.149;
    39         min-lease-time      600;   # 10min
    40         default-lease-time  43200; # 12hour
    41         max-lease-time      86400; # 24hour
    42         deny unknown clients;
    43     }
    45     #   Pool of unknown clients (i.e. MAC not known)
    46     pool {
    47         range 192.168.1.150 192.168.1.199;
    48         min-lease-time      300;   # 5min
    49         default-lease-time  3600;  # 1hour
    50         max-lease-time      10800; # 3hour
    51         allow unknown clients;
    52     }
    53 }
    55 #   The list of clients we explicitly configure
    56 group {
    57     #   Just assign a fixed IP address for machine "quux1"
    58     host quux1 {
    59         hardware ethernet 01:02:03:00:00:01;
    60         fixed-address 192.168.1.3;
    61     }
    63     #   Provide full boot information for a FreeBSD diskless client "quux2":
    64     #   On the server, create a 32MB swapfile /dlc/fs/swap/swap.192.168.1.4
    65     #   with `dd if=/dev/zero of=swap.192.168.1.4 bs=1m count=32' and the
    66     #   filesystem /dlc/fs/quux2 with `cd /usr/src; make buildworld; make
    67     #   installworld DESTDIR=/dlc/fs/quux2'. Then use Etherboot for booting.
    68     host quux2 {
    69         hardware ethernet 01:02:03:00:00:02;
    70         fixed-address 192.168.1.4;
    71         next-server 192.168.1.2;
    72         option tftp-server-name "192.168.1.2";
    73         filename "kernel.quux";
    74         always-reply-rfc1048 on;
    75         option root-path "192.168.1.2:/dlc/fs/quux2";
    76         option freebsd-rootopts "rw,noatime";
    77         option swap-server 192.168.1.2;
    78         option freebsd-swappath "192.168.1.2:/dlc/fs/swap";
    79         option freebsd-swapopts "sw";
    80     }
    81 }
    83 #   The list of clients we know, but which get IP addresses from pool
    84 group {
    85     host quux3 { hardware ethernet 01:02:03:00:00:03; }
    86     host quux4 { hardware ethernet 01:02:03:00:00:04; }
    87 }

mercurial