Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 03 Feb 2001 12:19:12 -0800
From:      Trevin Chow <tmchow@sfu.ca>
To:        questions@freebsd.org
Subject:   My dhcpd.conf file -- DNS problems?
Message-ID:  <5.0.2.1.2.20010203121814.02b931a8@mail.brightmail.com>

next in thread | raw e-mail | index | archive | help
As requested, here's my dhcpd.conf file:

option domain-name "foo.com";
option domain-name-servers 192.168.0.1;
default-lease-time 600;
max-lease-time 172800;
option subnet-mask 255.255.255.0;
option broadcast-address 192.168.1.255;

#
# Fixed-host settings
#
host client1 {
         hardware ethernet 00:A0:CC:56:FE:1F;
         fixed-address 192.168.0.2;
}

host client2 {
         hardware ethernet 00:50:DA:9A:0D:05;
         fixed-address 192.168.1.3;
}

host client3 {
         hardware ethernet 00:A0:CC:56:F9:53;
         fixed-address 192.168.1.2;
}

#
# Subnet settings
#
subnet 192.168.0.0 netmask 255.255.255.0 {
         range 192.168.0.3 192.168.0.10;
         option routers 192.168.0.1;
}

subnet 192.168.1.0 netmask 255.255.255.0 {
         range 192.168.1.4 192.168.1.10;
         option routers 192.168.1.1;
}



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?5.0.2.1.2.20010203121814.02b931a8>