|
(1)安装两块网卡时,在lilo.conf里加上append = "ether=0,0,eth1"
(2)当插了三块,则为:append = "ether=0,0,eth1 ether=0,0,eth2"
举例如下:
boot = /dev/hda
#compact # faster, but won't work on all systems.
delay = 50
vga = normal # force sane state
append= "ether=0,0,eth1" #不知道网卡irq和iobase时
[append="ether=9,0xfce0,eth0 ether=5,0xfcc0,eth1" #知道网卡irq和iobase时]
# ramdisk = 0 # paranoia setting
# End LILO global section
# Linux bootable partition config begins
image = /zImage
root = /dev/hda1
label = linux
read-only # Non-UMSDOS filesystems should be mounted read-only for checking
# Linux bootable partition config ends
如果已经编译成模块,应该在/etc/rc.d/rc.modules(在Redhat里是/etc/conf.modules),加上类似的一行:/sbin/modprobe ne io=io1,io2 |
|