Saving Driver Parameters Beyond Reboot
Any parameter changes made using ndd will be lost the next time your system is rebooted. To keep changes through reboot, parameter settings must be placed in a
/etc/rc2.d/S99itialt
Example: If you need to adjust adapter 2 to turn Link Negotiation off and increase the TCP/IP values, you could place the following lines in the /etc/rc2.d/S99itialt
#!/sbin/sh
#local kernel modification
case "$1" in 'start')
echo "Setting local kernel parameters...\c" ndd
ndd
echo " "
;;
'stop')
echo "$0: No parameters changed."
;;
*)
echo "Usage: $0 {startstop}"
;;
esac
LSI Logic Corporation | Page 32 of 56 |