Freducken wrote:
Every solution posted on the various I have tried with no avail (probably a total of 30 hours dedicated to this by now, not including reinstall times of the OS. I downgraded to Snow Leopard, no joy. Clean installs of Lion and further troubleshooting 3 times over now, no joy. Used the Atheros firmware downgrade floating around in other posts, no joy. Set up static DHCP, no joy. Set up encryption other than WPA2, no joy. Set up without encryption and only MAC address listing, no joy. Installed only non wifi related Apple software updates over clean lion install, no joy. Installed only wifi related Apple software updat over clean Lion install, no joy. Deleted network location, keychain presets for airport connections, re established new location in wifi settings, no joy. I am sure I am missing other troubleshooting steps I have taken, but hey, I am not a robot.
Here's what Apple Engineering sent me to do, and I don't have the problem. The data this creates is pretty significant, but if you understand enough of the fetch_debug.sh, you can probably find the reason that the WiFi stack disconnected and that might be more revealing than anything else.
Step 1: (Enable Logging)
- Steps to enable Logging on the Mac:
Launch Terminal and then paste this:
sudo /usr/libexec/airportd debug +alluserland +alldriver +allvendor +LogFile
sudo killall configd
Step 2: (Reproduce the Issue)
Now reproduce the issue. Once you reproduce it, please note down the time the issue occurred. Wait a minute before you proceed to Step 3.
Step 3: (Send Apple information)
Now copy the the attached shell script (fetch_debug.sh) to your Desktop and run it in Terminal: (Remember to run it as root)
sudo ./fetch_debug.sh
This saves a file on your Desktop. Please email this to me along with the time the issue occurred.
Please email me the
- SendToApple.tar.gz file saved on your Desktop ( from step 3 )
Step 4: Disabling the logs ( Paste the command below in Terminal)
sudo /usr/libexec/airportd debug -alluserland -alldriver -allvendor -LogFile
-------------------------
below is fetch_debug.sh
#!/bin/bash
cd ~/Desktop
mkdir SendToApple
sudo cp -R /var/log/* ~/Desktop/SendToApple
echo getting mobility......Please Wait.. This can take a bit
sudo /System/Library/Frameworks/SystemConfiguration.framework/Versions/Current/Resou rces/get-mobility-info
sudo cp ~/Desktop/mobility-info* ~/Desktop/SendToApple
tar cvzf ~/Desktop/SendToApple/kerneltar.tgz /var/log/kernel.* /var/log/wifi.log
echo Scanning for networks now
/System/Library/PrivateFrameworks/Apple80211.framework/Resources/airport -I -scan \
>> ~/Desktop/SendToApple/airport_scan.txt
echo Saving System Information Report
system_profiler -xml -detaillevel full > ~/Desktop/SendToApple/systemProfiler.spx
gnutar -cvf SendToApple.tar SendToApple/
sudo rm -rf ~/Desktop/SendToApple
sudo rm -rf ~/Desktop/mobility-info*
gzip ~/Desktop/SendToApple.tar