Update of /cvsroot/devil-linux/build/scripts/scripts
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20998/scripts/scripts
Modified Files:
dhcpd.conf
Log Message:
Made default values consistent with setup defaults.
Index: dhcpd.conf
===================================================================
RCS file: /cvsroot/devil-linux/build/scripts/scripts/dhcpd.conf,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- dhcpd.conf 2 May 2005 14:03:48 -0000 1.2
+++ dhcpd.conf 22 Mar 2006 13:14:51 -0000 1.3
@@ -12,20 +12,20 @@
# let's give the local domain a name
# (which should correlate to your name server configuration)
-option domain-name "beer";
+option domain-name "mydomain.org";
# this assumes that your dhcp server is also the router for the subnet
-option routers 192.168.0.1;
+option routers 192.168.1.1;
# clients shall use this host as nameserver, too
-option domain-name-servers 192.168.0.1;
+option domain-name-servers 192.168.1.1;
# this can explicitely be specified
-option broadcast-address 192.168.0.255;
+option broadcast-address 192.168.1.255;
# these 10 addresses will be given out dynamically
-subnet 192.168.0.0 netmask 255.255.255.0 {
- range 192.168.0.11 192.168.0.20;
+subnet 192.168.1.0 netmask 255.255.255.0 {
+ range 192.168.1.100 192.168.1.199;
# options may also be put here if they are not global
}
@@ -33,7 +33,6 @@
# we want a fixed address for it
host murauer {
hardware ethernet 00:30:65:6F:A5:D4;
- fixed-address 192.168.0.5;
+ fixed-address 192.168.1.5;
}
-
|