I have enabled kernel level IP configuration in my linux kernel and compiled it, but it does not try get any DHCP address. Why?

Is there something extra or special I have to do?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

From KConfig

CONFIG_IP_PNP:

This enables automatic configuration of IP addresses of devices and of the routing table during kernel boot, based on either information supplied on the kernel command line or by BOOTP or RARP protocols.

So it can't be used with plain DHCP For using with DHCP you need additional option.

link|improve this answer
Does you turn on CONFIG_IP_PNP_DHCP ? – osgx Feb 6 '10 at 15:47
1  
config IP_PNP_DHCP bool "IP: DHCP support" depends on IP_PNP lxr.linux.no/#linux+v2.6.19/net/ipv4/Kconfig – osgx Feb 6 '10 at 15:48
1  
Also, you need to check kernel logs: KERN_NOTICE level for "Sending ... requests" where ... can be DHCP, BOOTP, RARP – osgx Feb 6 '10 at 15:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.