Thread: Mac OS 10.2.3
View Single Post
gatorparrots
Guest
 
Posts: n/a

VersionTracker has a utility for restarting Networking after waking from sleep, but it was intended for OS X 10.1.5. You may want to give it a shot:
http://versiontracker.com/moreinfo.fcgi?id...id=15103&db=mac

Another user describes a similar problem to yours (no network on wake):
http://forums.osxfaq.com/viewtopic.php?t=3648

You could try this proposed solution (a shell script to run upon wake):
Code:
#!/bin/sh
# restart NetInfo, hostname, lookupd, and enable network for no network after
# sleep instead of reboot

sudo /System/Library/SystemConfiguration/Kicker.bundle/Resources/restart-NetInfo; \
/System/Library/SystemConfiguration/Kicker.bundle/Resources/set-hostname; \
/System/Library/SystemConfiguration/Kicker.bundle/Resources/restart-lookupd; \
/System/Library/SystemConfiguration/Kicker.bundle/Resources/enable-network
QUOTE Thanks