I have a class c subnet - 137.223.168.0/24
The gateway is 137.223.168.1
Various servers have fixed addresses for 137.223.168.2, 137.223.168.3, 137.223.168.4 and 137.223.168.5
The 137.223.168.4 server is a RedHat Linux box.
I've created a dhcp.conf file which looks like
However, when I try to start DHCP I get
What am I doing wrong?
Ceci n'est pas une signature
Columb Healy
The gateway is 137.223.168.1
Various servers have fixed addresses for 137.223.168.2, 137.223.168.3, 137.223.168.4 and 137.223.168.5
The 137.223.168.4 server is a RedHat Linux box.
I've created a dhcp.conf file which looks like
Code:
#
# DHCP Server Configuration file.
# see /usr/share/doc/dhcp*/dhcpd.conf.sample
#
ddns-update-style interim;
ignore client-updates;
subnet 137.223.168.0 netmask 255.255.255.0 {
option routers 137.223.168.1;
option subnet-mask 255.255.255.0;
range dynamic-bootp 137.223.168.6 137.223.168.254;
default-lease-time 21600;
max-lease-time 43200;
}
Code:
[root@bnls681u etc]# service dhcpd start
Starting dhcpd: Internet Systems Consortium DHCP Server V3.0.1
Copyright 2004 Internet Systems Consortium.
All rights reserved.
For info, please visit [URL unfurl="true"]http://www.isc.org/sw/dhcp/[/URL]
Wrote 0 leases to leases file.
Listening on LPF/eth0/00:0a:e4:13:91:e0/137.223.168/24
Sending on LPF/eth0/00:0a:e4:13:91:e0/137.223.168/24
Can't bind to dhcp address: Address already in use
Please make sure there is no other dhcp server
running and that there's no entry for dhcp or
bootp in /etc/inetd.conf. Also make sure you
are not running HP JetAdmin software, which
includes a bootp server.
If you did not get this software from ftp.isc.org, please
get the latest from ftp.isc.org and install that before
requesting help.
If you did get this software from ftp.isc.org and have not
yet read the README, please read it before requesting help.
If you intend to request help from the dhcp-server@isc.org
mailing list, please read the section on the README about
submitting bug reports and requests for help.
Please do not under any circumstances send requests for
help directly to the authors of this software - please
send them to the appropriate mailing list as described in
the README file.
exiting.
[FAILED]
Ceci n'est pas une signature
Columb Healy