Annotation of elwix/config/etc/default/dhcpd.conf, revision 1.2

1.2     ! misho       1: option domain-name "elwix.org";
1.1       misho       2: option domain-name-servers 192.168.1.1;
                      3: 
                      4: default-lease-time 600;
                      5: max-lease-time 7200;
                      6: 
                      7: # If this DHCP server is the official DHCP server for the local
                      8: # network, the authoritative directive should be uncommented.
                      9: authoritative;
                     10: 
                     11: # ad-hoc DNS update scheme - set to "none" to disable dynamic DNS updates.
                     12: ddns-update-style none;
                     13: 
                     14: use-host-decl-names on;
                     15: 
                     16: # Use this to send dhcp log messages to a different log file (you also
                     17: # have to hack syslog.conf to complete the redirection).
                     18: log-facility local7;
                     19: 
1.2     ! misho      20: shared-network elwix_net {
        !            21:        option domain-name "elwix.org";
1.1       misho      22:        option domain-name-servers 192.168.1.1 192.168.1.2;
                     23: 
                     24:        subnet 192.168.1.0 netmask 255.255.255.0 {
                     25:                option routers 192.168.1.1;
                     26: 
                     27:                pool {
                     28:                        range 192.168.1.100 192.168.1.254;
                     29:                }
                     30:        }
                     31: }

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>