Difference between revisions of "Overseas lessdisks dhcpdconf"

From FreekiWiki
Jump to navigation Jump to search
 
Line 1: Line 1:
 +
{{Delete}}
 +
 
  #
 
  #
 
  # Sample configuration file for ISC dhcpd for Debian
 
  # Sample configuration file for ISC dhcpd for Debian

Latest revision as of 14:05, 14 May 2013

deletion

This page has been requested to be deleted.
If you disagree, discuss on the talk page.
Whenever possible, could an Admin please remove this page?


#
# Sample configuration file for ISC dhcpd for Debian
#
# $Id: dhcpd.conf,v 1.1.1.1 2002/05/21 00:07:44 peloy Exp $
#

# The ddns-updates-style parameter controls whether or not the server will
# attempt to do a DNS update when a lease is confirmed. We default to the
# behavior of the version 2 packages ('none', since DHCP v2 didn't
# have support for DDNS.)
ddns-update-style none;

# option definitions common to all supported networks...
#option domain-name "example.org";
#option domain-name-servers ns1.example.org, ns2.example.org;

default-lease-time 600;
max-lease-time 7200;

# If this DHCP server is the official DHCP server for the local
# network, the authoritative directive should be uncommented.
#authoritative;

# Use this to send dhcp log messages to a different log file (you also
# have to hack syslog.conf to complete the redirection).
log-facility local7;

# No service will be given on this subnet, but declaring it helps the 
# DHCP server to understand the network topology.

subnet 10.10.1.0 netmask 255.255.255.0 {
  range dynamic-bootp 10.10.1.200 10.10.1.254;
  default-lease-time 600;
  max-lease-time 7200;
  option subnet-mask 255.255.255.0;
  option broadcast-address 10.10.1.255;
  option routers 10.10.1.254;
  option domain-name-servers 10.10.1.254;
  # option domain-name "somelan";
  # next-server is only needed if the dhcp and nfs servers are different machines
  #next-server 192.168.1.9;
  # tftp-server-name is needed in addition to (instead of?) next-server when using 
  # the kernel initrd method.  for some reason dhclient won't grab next-server...
  #option tftp-server-name 192.168.1.9;
  filename "/var/lib/lessdisks/boot/vmlinuz.nb";
  option root-path "/var/lib/lessdisks/";

  # these are options to allow for boot menus with etherboot
  # option-128 must be reproduced exactly- it is not a mac address
  #option option-128 e4:45:74:68:00:00;
  #option option-160 "timeout=10:default=193";
  #option option-184 "/etc/motd";
  #option option-192 "oldkernel:::/var/lib/lessdisks/boot/bzimage.ramfs.nb:::=old";
  #option option-193 "newkernel:::/var/lib/lessdisks/boot/vmlinuz-2.4.16ld.nb:::=new";

  #group {
  # options for terminals that use network-bootable grub

  #filename "/var/lib/lessdisks/boot/grub/nbgrub";
  # default grub menu
  #option option-150 "(nd)/var/lib/lessdisks/boot/grub/menu.lst";
  #host foo { hardware ethernet 00:90:27:9A:53:EF; }
  #host bar { hardware ethernet 00:02:b3:b7:b2:66; }
  #}
  #group {
    # alpha terminals
    # tftpd-hpa lets you specify filename relative to tftpd root path
    #filename "alpha-root/boot/vmlinuz.nb";
    #option root-path "/var/lib/lessdisks/alpha-root/";
    #host alphaterminal { hardware ethernet 08:00:2B:E5:27:E9; }
  #}
}


#subnet 10.152.187.0 netmask 255.255.255.0 {
#}

# This is a very basic subnet declaration.