Here's a little tip: you can make network card lights blink with the ethtool command:
ethtool -p eth0
You can make each card blink for 30 seconds in order with something like:
for net in eth0 eth1 eth2; do ethtool -p $net 30; done
Random ramblings of a shell junkie.
ethtool -p eth0
for net in eth0 eth1 eth2; do ethtool -p $net 30; done
No comments:
Post a Comment