Results 1 to 2 of 2
Hello everyone,
I am trying to install and configure the DHCPD server. I get teh following error: (I used the # symbol to seperate my error and my following paragraph)
...
- 10-03-2007 #1Just Joined!
- Join Date
- Oct 2007
- Posts
- 1
DHCPd Please help!
Hello everyone,
I am trying to install and configure the DHCPD server. I get teh following error: (I used the # symbol to seperate my error and my following paragraph)
################################################## ##############################
##########
Oct 2 22:11:36 henryserver1 SuSEfirewall2: Warning: ip6tables does not support state matching. Extended IPv6 support disabled.
Oct 2 22:11:36 henryserver1 SuSEfirewall2: Warning: ip6tables does not support state matching. Extended IPv6 support disabled.
Oct 2 22:11:36 henryserver1 SuSEfirewall2: Warning: ip6tables does not support state matching. Extended IPv6 support disabled.
Oct 2 22:11:40 henryserver1 dhcpd: /var/lib/dhcp///etc/dhcpd.conf line 15: subnet 10.179.216.1 netmask 255.255.255.0: bad subnet number/mask combination.
Oct 2 22:11:40 henryserver1 dhcpd: subnet 10.179.216.1 netmask 255.255.255.0
Oct 2 22:11:40 henryserver1 dhcpd: ^
Oct 2 22:11:40 henryserver1 dhcpd: Configuration file errors encountered -- exiting
Oct 2 22:11:40 henryserver1 dhcpd:
Oct 2 22:11:40 henryserver1 dhcpd: If you did not get this software from ftp.isc.org, please
Oct 2 22:11:40 henryserver1 dhcpd: get the latest from ftp.isc.org and install that before
Oct 2 22:11:40 henryserver1 dhcpd: requesting help.
Oct 2 22:11:40 henryserver1 dhcpd:
Oct 2 22:11:40 henryserver1 dhcpd: If you did get this software from ftp.isc.org and have not
Oct 2 22:11:40 henryserver1 dhcpd: yet read the README, please read it before requesting help.
Oct 2 22:11:40 henryserver1 dhcpd: If you intend to request help from the dhcp-server@isc.org
Oct 2 22:11:40 henryserver1 dhcpd: mailing list, please read the section on the README about
Oct 2 22:11:40 henryserver1 dhcpd: submitting bug reports and requests for help.
Oct 2 22:11:40 henryserver1 dhcpd:
Oct 2 22:11:40 henryserver1 dhcpd: Please do not under any circumstances send requests for
Oct 2 22:11:40 henryserver1 dhcpd: help directly to the authors of this software - please
Oct 2 22:11:40 henryserver1 dhcpd: send them to the appropriate mailing list as described in
Oct 2 22:11:40 henryserver1 dhcpd: the README file.
Oct 2 22:11:40 henryserver1 dhcpd:
Oct 2 22:11:40 henryserver1 dhcpd: exiting.
################################################## #############################
I dont know what I"m doign wrong. can anyone help please?
- 10-07-2007 #2Just Joined!
- Join Date
- Oct 2007
- Posts
- 10
post the config file but it appears as though it's telling you that your subnet declaration has a syntax error in it.
declaration should look something like this:
subnet 192.168.0.0 netmask 255.255.255.0 {
option routers 192.168.0.1;
option subnet-mask 255.255.255.0;
option domain-name “example.com”;
option domain-name-servers 192.168.1.1;
range dynamic-bootp 192.168.0.128 192.168.0.254;
default-lease-time 21600;
max-lease-time 43200;
}


Reply With Quote
