> OOOOOPPPPPSSSS.  I am very sorry, I think I may have made a very bad
> mistake.
> The subject line says DHCPD, I want the two nics to be able to get an IP
> address from a DHCP server not hand IP's out.  Have I been asking the
wrong
> question???  If so, I am very sorry for the mix up.

No, your previous messages, and problem context, indicated problems with
dhclient...I hadn't noticed the dhcpd inconsistency until you pointed it
out.

> Thanks again for the responce.  I think Im about to loose me mind.  Any
way.
> Just to clarify, I added the EXTERN_IF="eth0 eth2" only after the first
try
> of changing IF_DHCP="eth0 eth2" did not work.
> It is still not working.  I have tried redownloading the eigerstein file
and
> even tried the eigersteinbeta2.
> What kind of network cards are you useing in the system that you got two
> nics to use dhcp client.  Im bordering insanity, if there is any thing
else
> that you think may help or find the problem please let me know.

I am running a system with two NetGear FA310TX cards using the tulip driver.
The system is one of my HP Vectra VL series 3 Pentium 75 test systems, with
16 Megs of memory.

I just tried setting IF_DHCP="eth0 eth1" in network.conf and got the error
you were seeing.  I have tracked this problem to a problem with the
/etc/init.d/dhclient init script, which needs to be changes as follows:

Current script:
case "$1" in
    start)
        if [ "$EXTERN_DHCP" = "YES" ] || \
        if [ "$EXTERN_DHCP" = "Yes" ] || \
        if [ "$EXTERN_DHCP" = "yes" ]; then
        if [ $IF_DHCP ]; then

Change the last line to:
        if [ "$IF_DHCP" ]; then

The problem is the missing quotes around $IF_DHCP.  I thought I had checked
this, but thinking back, I must have manually run the dhclient command,
rather than using the init script, figuring the problem was with dhclient,
not the init scripts...sorry for any confusion, wasted time, and/or lost
hair...

I'll update the dhclient package for the upcomming dachstein release.

Charles Steinkuehler
http://lrp.steinkuehler.net
http://c0wz.steinkuehler.net (lrp.c0wz.com mirror)


_______________________________________________
Leaf-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user

Reply via email to