LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   could not start dhcpd (https://www.linuxquestions.org/questions/linux-newbie-8/could-not-start-dhcpd-898719/)

windstory 08-22-2011 03:57 AM

could not start dhcpd
 
I installed scientific linux 6.1 x86, and have a dhcod problem.

Quote:

# /usr/sbin/dhcpd start
Internet Systems Consortium DHCP Server 4.1.1-P1
Copyright 2004-2010 Internet Systems Consortium.
All rights reserved.
For info, please visit https://www.isc.org/software/dhcp/
Not searching LDAP since ldap-server, ldap-port and ldap-base-dn were not specified in the config file
Wrote 0 leases to leases file.

No subnet declaration for start (no IPv4 addresses).
** Ignoring requests on start. If this is not what
you want, please write a subnet declaration
in your dhcpd.conf file for the network segment
to which interface start is attached. **


Not configured to listen on any interfaces!

This version of ISC DHCP is based on the release available
on ftp.isc.org. Features have been added and other changes
have been made to the base software release in order to make
it work better with this distribution.

Please report for this software via the Red Hat Bugzilla site:
http://bugzilla.redhat.com

exiting
And the dhcpd.conf is here;

Code:

authoritative;
include "/etc/rndc.key";

server-identifier server;
ddns-domainname                "myserver.dyndns.org";
ddns-rev-domainname        "in-addr.arpa.";
ddns-update-style        interim;
ddns-updates                on;
ignore                        client-updates;

zone myserver.dyndns.org {
        primary 127.0.0.1;
        key rndckey;
}
default-lease-time        21600;
max-lease-time                43200;

option domain-name        "myserver.dyndns.org.";
option ip-forwarding        off;
subnet 192.168.0.0 netmask 255.255.255.0 {
        range 192.168.0.100 192.168.0.200;
        option routers                        192.168.0.1;
        option subnet-mask                255.255.255.0;
        option broadcast-address        192.168.0.255;
        option domain-name-servers        192.168.0.1;
        zone 0.168.192.in-addr.arpa. {
                primary 192.168.0.4;
                key rndckey;
        }
        zone localdomain. {
                primary 192.168.0.4;
                key rndckey;
        }
}


Any helpful comment would be appreciated.

lystor 08-22-2011 07:52 AM

Quote:

Originally Posted by windstory (Post 4449908)
Not configured to listen on any interfaces!

Hi
Please show your network interfaces:
Code:

# ip a sh

windstory 08-22-2011 11:29 AM

lystor/

Thanks for your comment.

The result is here;

Quote:

# ip a sh
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 16436 qdisc noqueue state UNKNOWN
link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 08:00:27:cd:94:bb brd ff:ff:ff:ff:ff:ff
inet 192.168.0.4/24 brd 192.168.0.255 scope global eth0
inet6 fe80::a00:27ff:fecd:94bb/64 scope link
valid_lft forever preferred_l


All times are GMT -5. The time now is 07:44 AM.