Hi all,
8.2-Release
I have a bunch of systems with integrated Broadcom NetXtreme Gigabit NIC's (BCM5752), they all seem to "Link UP" slow and many times the link is not up before network services start loading, so I've tweaked the '/etc/rc.d/netif' and added a slight delay like so:
Though this code works perfectly on some systems, others report an error:
and fail. The systems are basically exactly the same.
What be wrong with my tweak(hack) ???
In the end they do come up and work great, Unfortunately the net services have already failed.
Thanks All
-Enjoy
fh <font color="#FF0000">:</font> )_~
8.2-Release
I have a bunch of systems with integrated Broadcom NetXtreme Gigabit NIC's (BCM5752), they all seem to "Link UP" slow and many times the link is not up before network services start loading, so I've tweaked the '/etc/rc.d/netif' and added a slight delay like so:
Code:
for ifn in ${_ok}; do
/sbin/ifconfig ${ifn}
+ # fh :)_~
+ # Sleep to allow lazy bge card/driver to wake up ...
+ if [ ${ifn%?} == "bge" ] \
+ && [ ${_func} == "ifn_start" ]; then
+ sleep 2
+ fi
done
fi
Code:
[: bge: unexpected operator
What be wrong with my tweak(hack) ???
In the end they do come up and work great, Unfortunately the net services have already failed.
Thanks All
-Enjoy
fh <font color="#FF0000">:</font> )_~