---- UPDATE ---- 10.10.01 is here... Check to see if this fixes the issues FIRST
So - I have found ONE way that takes care of my Network (Internet Connection) Issues, Immediately.
Symptom....
Network/Internet Connection crawls to a slow and terminal fills up with odd messages and thousands of them.
Or I loose Internet connection (NOT WLAN) completely.
I cannot say whether below will indeed work for you guys as I might have done other things to my system to troubleshoot; be that deleting certain preferences etc. But perhaps it can help. If you want to do it, follow along:
Open Script Editor from Utilities Folder and paste the following lines of code in to it... Replace YP (after the password) inside of the double quotes with your computer password. Don't delete the double quotes...
tell application "Finder"
do shell script "sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.sandboxd.plist" password "YP" with administrator privileges
do shell script "sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist" password "YP" with administrator privileges
do shell script "sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.audio.coreaudiod.plist" password "YP" with administrator privileges
do shell script "sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.discoveryd.plist" password "YP" with administrator privileges
do shell script "sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.discoveryd_helper.plist" password "YP" with administrator privileges
do shell script "sudo launchctl unload -w /System/Library/LaunchDaemons/com.apple.coresymbolicationd.plist" password "YP" with administrator privileges
end tell
Then from the File Menu select Export (Under File Format select Application and tick Run Only) - Name the App "0 Total Unload" without the quotes
Then create a new Apple Script and paste in the following:
tell application "Finder"
do shell script "sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.sandboxd.plist" password "YP" with administrator privileges
do shell script "sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.metadata.mds.plist" password "YP" with administrator privileges
do shell script "sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.audio.coreaudiod.plist" password "YP" with administrator privileges
do shell script "sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.discoveryd.plist" password "YP" with administrator privileges
do shell script "sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.discoveryd_helper.plist" password "YP" with administrator privileges
do shell script "sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.coresymbolicationd.plist" password "YP" with administrator privileges
end tell
Then from the File Menu select Export (Under File Format select Application and tick Run Only) - Name the App "1 Total Load" without the quotes
When you are done - go to the desktop an run Total Unload. Wait for a 10 Seconds and then Run Total Load.
That will toggle those daemons off and on...
In my case, this restores my Internet Connection Immediately.
If you don't want to create an Apple Script, you may run the commands one after the next inside of the Terminal. But that is tedious and much faster with the script... But in case you want to do it here is how... Copy the the following part, highlighted in Red from the example below, from the strings above....
do shell script "sudo launchctl load -w /System/Library/LaunchDaemons/com.apple.sandboxd.plist" password "YP" with administrator privileges
I
rttt