Hi Chad, I'm not sure if this is the same problem that I had when I set up our machines with the e1000 cards but once the nodes had installed, they gave an error when they rebooted saying that eth0 was not brought up properly.
The way I fixed this was to add the line: alias eth0 e1000 to the modules.conf file on each node. I did this by adding the line to the file: /var/lib/systemimager/images/imageName/etc/modules.conf which is then pushed to the nodes. I also had to tell the cards that MII_NOT_SUPPORTED=no in the card config file on each of the nodes. The only way I could find to do this was to add a line to the install script (/var/lib/systemimager/scripts/imageName.master) which appended the line to the relevant file on the node after it has been created by system installer. The line I added is as follows: chroot / echo 'MII_NOT_SUPPORTED="no"' >> /a/etc/sysconfig/network-scripts/ifcfg-eth0 This line needs to be added just before the filesystems are unmounted by the script. I freely admit that this is not a pretty fix, but it was the only way I could think of at the time and it seems to work fine! I hope this helps although I admit that I don't know whether this is the same problem as you are experiencing. Rich On Fri, 2004-04-30 at 15:39, Chad Dupuis wrote: > Hello Jeremy, > > The problem seems to be that the System Configurator writes the > incorrect information to /etc/modules.conf. It is writing alias eth0 > 8139too (instead of e1000). Once I change it manually everything works > fine. Do you know how I stop this from happening? - a conf file > perhaps... Thanks for your help. > > Cheers, > > Chad J. Dupuis > MIT Academic Computing > > > > > Jeremy Enos wrote: > > > Check the gateway settings on the clients... also if you have two > > adapters, check the eth0 vs eth1 config. I've seen this get swapped > > before from one kernel to the next before. > > > > Jeremy > > > > At 11:28 AM 4/29/2004, Chad Dupuis wrote: > > > >> Hello All, > >> > >> I have what I hope to be an easy question... After spending a couple > >> weeks getting everything working with our e1000 cards we finally have > >> our client nodes setup. Unfortunately when they try to speak with > >> the master node there is no route to the host. > >> > >> I imagine the trouble is in our /etc/hosts files on both of the > >> machines (the master and clients), but I'm not sure. > >> > >> If someone could send me or post their /etc/hosts files from both > >> their master node and a client node I think that would help me figure > >> this out. Of course, any other recommendations are very welcome. We > >> did do a PXE install so I know our network is working... It's just > >> something in the client image networking setup that is wrong. Thanks > >> for any input. > >> > >> -- > >> Cheers, > >> > >> Chad J. Dupuis > >> MIT Academic Computing > >> > >> > >> > >> > >> ------------------------------------------------------- > >> This SF.Net email is sponsored by: Oracle 10g > >> Get certified on the hottest thing ever to hit the market... Oracle > >> 10g. Take an Oracle 10g class now, and we'll give you the exam FREE. > >> http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click > >> _______________________________________________ > >> Oscar-users mailing list > >> [EMAIL PROTECTED] > >> https://lists.sourceforge.net/lists/listinfo/oscar-users > > > > > > > > > > ------------------------------------------------------- > > This SF.Net email is sponsored by: Oracle 10g > > Get certified on the hottest thing ever to hit the market... Oracle > > 10g. Take an Oracle 10g class now, and we'll give you the exam FREE. > > http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click > > _______________________________________________ > > Oscar-users mailing list > > [EMAIL PROTECTED] > > https://lists.sourceforge.net/lists/listinfo/oscar-users > > > > ------------------------------------------------------- > This SF.Net email is sponsored by: Oracle 10g > Get certified on the hottest thing ever to hit the market... Oracle 10g. > Take an Oracle 10g class now, and we'll give you the exam FREE. > http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click > _______________________________________________ > Oscar-users mailing list > [EMAIL PROTECTED] > https://lists.sourceforge.net/lists/listinfo/oscar-users ------------------------------------------------------- This SF.Net email is sponsored by: Oracle 10g Get certified on the hottest thing ever to hit the market... Oracle 10g. Take an Oracle 10g class now, and we'll give you the exam FREE. http://ads.osdn.com/?ad_id=3149&alloc_id=8166&op=click _______________________________________________ Oscar-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/oscar-users
