| General Notes: |
[Modified: 2006-10-09]
In a terminal window, execute the following commands:
[1] update_drv -a -i '"pci10b7,6055"' elxl
[2] reboot -- -r
After rebooting, execute the following:
bash-3.00# cat /etc/init.d/3c556
#!/sbin/sh
# I can't find the url thread now, but there was a post on
# Solaris forum about the onboard 10/100 3c556 ethernet interface
# can be enable with elxl driver except the MAC address will not
# configured correctly. Followings are to correct the problem manually.
CONFIG=/etc/hostname.elxl
case "$1" in
'start')
[ -f $CONFIG ] && {
ifconfig elxl0 down
ifconfig elxl0 unplumb
ifconfig elxl0 plumb
# put your own MAC address here
ifconfig elxl0 ether 00:00:86:43:EF:A6
# and your own ip address here
ifconfig elxl0 192.168.1.133 up
route add net default 192.168.1.1
}
;;
'stop')
ifconfig elxl0 down
route delete default 192.168.1.1
;;
*)
echo "Usage: $0 { start | stop }"
exit 1
;;
esac
exit 0
bash-3.00# |