Hello list; Sorry if those goes to the wrong list or people, and for it being to long. I have a serious problem with this, or better said, with myself. I don't know what to do and m time is sort of running out. I managed to find out some more information about what I have and what I need. lets see, to start off with, this list bellow is all which I know about my ethernet cards: Ethernet Card Type Module I/O IRQ It has to be ----------------------------------------------------------- Ethernet Card 1 ISA ne 0x320 09 eth0 Ethernet Card 2 ISA ne 0x200 03 eth1 Ethernet Card 3 ISA ne 0x280 15 eth2
Things I have tried list: 1. By using the command "modprobe", I inserted the three network cards in seperatly. Then I executed modprobe -c to see if it had got the changes, unfortunatly, it didn't work. modprobe ne io=0x320 irq=09 [Enter] modprobe ne io=0x200 irq=03 [Enter] modprobe ne io=0x280 irq=15 [Enter] 2. By using the command "modprobe", I inserted the three networl cards on the same line. Then I executed modprobe -c to see if it had got the changes, unfortunatly, iy didn't work. modprobe ne io=0x320,0x200,0x280 irq=09,03,15 [Enter] 3. I edited the file /etc/conf.modules so that the options set were as follows: ------- #alias <whatever you don't have that kerneld complains about> off options ne io=0x320,0x200,0x280 irq=09,03,15 path[boot]=/lib/modules ------- Then I rebooted the system, but it didn't work. 4. I edited the file /etc/conf.modules so that the options set were as follows: ------- #alias <whatever you don't have that kerneld complains about> off options ne io=0x320 irq=09 options ne io=0x200 irq=03 options ne io=0x280 irq=15 path[boot]=/lib/modules ------- Then I rebooted the system, but it didn't work. This time it booted the last ethernet card and not the first 5. I edited the file /etc/conf.modules so that the options set were as follows: ------- #alias <whatever you don't have that kerneld complains about> off options ne io=0x320 irq=09 path[boot]=/lib/modules options ne io=0x200 irq=03 path[boot]=/lib/modules options ne io=0x280 irq=15 path[boot]=/lib/modules ------- Then I rebooted the system, but it didn't work. This time it booted the last ethernet card and not the first 6. I edited the file /etc/modules so that the options set were as follows: ------ # auto ne io=0x320,0x200,0x280 irq=09,03,15 ------ Then I rebooted the system, but it didn't work. 7. I edited the file /etc/modules so that the options set were as follows: ------ # auto ne io=0x320 irq=09 ne io=0x200 irq=03 ne io=0x280 irq=15 ------ Then I rebooted the system, but it didn't work. Here bellow you will find three files. They are in the order of etc/modules, /etc/conf.modules and /etc/init.d/network . I have copied them here mainly so that you may see what my configuration settings are stated as. ----------------------------------------------------------------------------- # /etc/modules: kernel modules to load at boot time. # # This file should contain the names of kernel modules that are # to be loaded at boot time, one per line. Comments begin with # a '#', and everything on the line after them are ignored. # An entry named 'auto' will cause the system to start kerneld inmediatly. # Kerneld then loads modules on demand. 'noauto' disables kerneld completely. # auto ne ----------------------------------------------------------------------------- ### This file is automatically generated by update-modules # # Please do not edit this file directly. If you want to change or add # anything please take a look at the files in /etc/modutils and read # the manpage for update-modules. # alias block-major-7 loop # Uncomment the network protocols you don't want loaded: # alias net-pf-2 off # IPv4 alias net-pf-3 off alias net-pf-4 off # IPX alias net-pf-5 off # DDP / appletalk alias net-pf-10 off # IPv6 # Other aliases: alias net-pf-17 af_packet # packet mode (tcpdump, etc.) alias netalias-2 ip_alias alias char-major-4 serial alias char-major-10-130 softdog alias iso9660 isofs alias ppp-compress-21 bsd_comp alias ppp-compress-24 ppp_deflate alias ppp-compress-26 slhc alias binfmt-0064 binfmt_aout alias binfmt--310 binfmt_java # If you use the IDE tape driver as a module, uncomment the next two lines: # alias block-major-3 ide-probe # alias char-major-37 ide-tape #alias <whatever you don't have that kerneld complains about> off options ne io=0x320 irq=09 path[boot]=/lib/modules # State module paths in order of importance path[fs]=/lib/modules/`uname -r` path[net]=/lib/modules/`uname -r` path[scsi]=/lib/modules/`uname -r` path[block]=/lib/modules/`uname -r` path[cdrom]=/lib/modules/`uname -r` path[ipv4]=/lib/modules/`uname -r` path[ipv6]=/lib/modules/`uname -r` path[misc]=/lib/modules/`uname -r` path[video]=/lib/modules/`uname -r` path[sound]=/lib/modules/`uname -r` path[fc4]=/lib/modules/`uname -r` path[fs]=/lib/modules/`kernelversion` path[net]=/lib/modules/`kernelversion` path[scsi]=/lib/modules/`kernelversion` path[block]=/lib/modules/`kernelversion` path[cdrom]=/lib/modules/`kernelversion` path[ipv4]=/lib/modules/`kernelversion` path[ipv6]=/lib/modules/`kernelversion` path[misc]=/lib/modules/`kernelversion` path[video]=/lib/modules/`kernelversion` path[sound]=/lib/modules/`kernelversion` path[fc4]=/lib/modules/`kernelversion` path[fs]=/lib/modules path[net]=/lib/modules path[scsi]=/lib/modules path[block]=/lib/modules path[cdrom]=/lib/modules path[ipv4]=/lib/modules path[ipv6]=/lib/modules path[misc]=/lib/modules path[video]=/lib/modules path[sound]=/lib/modules path[fc4]=/lib/modules alias parport_lowlevel parport_pc ----------------------------------------------------------------------------- #! /bin/sh ifconfig lo 127.0.0.1 route add -net 127.0.0.0 IPADDR=192.168.1.1 NETMASK=255.255.255.0 NETWORK=192.168.1.0 BROADCAST=192.168.1.255 GATEWAY= ifconfig eth0 ${IPADDR} netmask ${NETMASK} broadcast ${BROADCAST} route add -net ${NETWORK} [ "${GATEWAY}" ] && route add default gw ${GATEWAY} metric 1 -----------------------------------------------------------------------------