You are not logged in.
Pages: 1
Ok, if someone can figure this one out, I'd be eternally grateful. I can do a clean FTP install (no errors, no problems). The install CD can load my NIC module, get a DHCP lease, and download apps with no problems. However, as soon as I boot into my install (base packages only), the network daemon fails to load. The only error I get in any of my log files is in daemon.log and it says something to the effect of
DHCPCD failed to load because eth0 is not 802.11 or Ethernet compliant
I thought it was a module issue, but I copied the kernel config from the install cd that works
zcat /proc/config.gz > /mnt/usr/src/kernel-2.6.10/.config
and still get the same results!
Here's some more info:
· This error happens when I set rc.conf to:
eth0="dhcp"
· If I set a static IP, the daemon loads fine but I cannot ping my router on the same subnet.
· When set to static IP, I can ping the loopback and my own IP
Any ideas????????
Thank you to those who post suggestions!!!!!!!
Offline
what else have you got in the eth0="dhcp" area of your rc.conf ? ie :-
lo="lo 127.0.0.1"
eth0="dhcp"
INTERFACES=(lo eth0)
and so on
Offline
...
lo="lo 127.0.0.1"
eth0="dhcp"
INTERFACES=(lo eth0)
...
gateway="default gw 192.168.0.1"
ROUTES=(!gateway)
...
Offline
· This error happens when I set rc.conf to:
eth0="dhcp"
· If I set a static IP, the daemon loads fine but I cannot ping my router on the same subnet.
· When set to static IP, I can ping the loopback and my own IP
Any ideas????????
When you set a static IP, you also need to set the route to your gateway (the default should be fine, just remove the "!" in the "ROUTES" section.
Are you sure the right module is loaded? Did you background hotplug? If so I'd highly recommend *NOT* doing that as the module may not be loaded at the time the network daemon is called
Offline
When you set a static IP, you also need to set the route to your gateway (the default should be fine, just remove the "!" in the "ROUTES" section.
Are you sure the right module is loaded? Did you background hotplug? If so I'd highly recommend *NOT* doing that as the module may not be loaded at the time the network daemon is called
When using static ip, I did remove the "!" in the ROUTES section (I also modified to fit my subnet - 192.168.1.1): same results.
I did NOT background hotplug, I let the hotplug daemon load the module. I know the 8139too is the correct module becase
· I've used the same module in other distro's
· It's the module that the intsall CD uses
Also, an lsmod shows that 8139too is loaded as soon as the boot process finishes.
Offline
After boot, can you run "/etc/rc.d/network start" and see if there's any difference?
Offline
After boot, can you run "/etc/rc.d/network start" and see if there's any difference?
Same results. If I change rc.conf to static and restart network, the daemon starts but I can't ping past my NIC's IP. If I have it set to DHCP and restart the daemon, it fails and I get the error in daemon.log
What is really confusing me is that this worked fine the first time I did an install! I wanted to repartition my drive for a Windows install and now I can't get network access.
Offline
phrakture wrote:After boot, can you run "/etc/rc.d/network start" and see if there's any difference?
Same results. If I change rc.conf to static and restart network, the daemon starts but I can't ping past my NIC's IP. If I have it set to DHCP and restart the daemon, it fails and I get the error in daemon.log
What is really confusing me is that this worked fine the first time I did an install! I wanted to repartition my drive for a Windows install and now I can't get network access.
Try removing hotplug (prefix it with "!") and adding your network module to the MODULES array - it's possible hotplug may be loading something that conflicts (like it does in the case of snd-intel8x0/snd-intel8x0m)
Offline
Try removing hotplug (prefix it with "!") and adding your network module to the MODULES array - it's possible hotplug may be loading something that conflicts (like it does in the case of snd-intel8x0/snd-intel8x0m)
Will do! I'll let you know how it goes tomorrow.
Offline
Ok, that worked! I stopped hotplug from running at boot, loaded just my NIC module and everything was great. I custom complied my own kernel and am not having any problems.
In order to be more helpful, I kept the problem kernel/modules installed and will try to find out which one is conflicting with my NIC module.
Thanks to everyone who helped me! I really appreciate it!
Offline
Pages: 1