auf meinem frisch installierten Server (Debian 6.0.4, Kernel 2.6.32-5-amd64) will ich den einzelnen NICs Moduloptionen zum Feintuning mitgeben. Diese sollen bei einem Reboot aktiv werden.
Dazu habe ich unter /etc/modprobe.d ein File e1000.conf mit folgendem Inhalt angelegt:
Code: Alles auswählen
alias eth0 e1000e
alias eth1 e1000e
alias eth2 e1000
alias eth3 e1000
options e1000 RxDescriptors=4096,4096 TxDescriptors=4096,4096 TxIntDelay=64,0 InterruptThrottleRate=3,0
options e1000e RxDescriptors=4096,4096 TxDescriptors=4096,4096 TxIntDelay=64,0 InterruptThrottleRate=3,0
es scheint so, als ob das File nicht ausgelesen wird.
Falls das die Ursache sein könnte, ich habe bereits Änderungen in der Datei /etc/udev/rules.d/70-persistent-net.rules vorgenommen, weil die Benamung nicht der Installationsreihenfolge entsprach.
Code: Alles auswählen
# PCI device 0x8086:0x1010 (e1000)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:02:a5:4c:2f:48", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth2"
# PCI device 0x8086:0x10d3 (e1000e)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:25:90:61:cf:39", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth1"
# PCI device 0x8086:0x10d3 (e1000e)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:25:90:61:cf:38", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth0"
# PCI device 0x8086:0x1010 (e1000)
SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", ATTR{address}=="00:02:a5:4c:2f:49", ATTR{dev_id}=="0x0", ATTR{type}=="1", KERNEL=="eth*", NAME="eth3"
mit
Code: Alles auswählen
e1000
e1000e
options e1000 RxDescriptors=4096,4096 TxDescriptors=4096,4096 TxIntDelay=64,0 InterruptThrottleRate=3,0
options e1000e RxDescriptors=4096,4096 TxDescriptors=4096,4096 TxIntDelay=64,0 InterruptThrottleRate=3,0
Ein manueller Test (Modul e1000 entladen und mit Optionen manuell wieder geladen) hat die Optionen gesetzt!
Muß die Datei /etc/modprobe.d/e1000.conf noch irgendwo eingetragen werden?
Wo liegt ansonsten der Fehler begraben?
Vielen Dank für eure Hilfe!
Gruß, Christian