### Gather Runtime Logs Source: https://openintelwireless.github.io/itlwm/Troubleshooting.html Collects kernel message logs related to itlwm, Airport, IO80211, and EAPOL, saving them to a timestamped file on your Desktop. Ensure DebugEnhancer.kext is installed first. ```sh sudo dmesg | grep -E "itlwm|Airport|IO80211|EAPOL" > ~/Desktop/Log_"$(date '+%Y-%m-%d_%H-%M-%S')".log ``` -------------------------------- ### Check Kernel Extension Loading Status Source: https://openintelwireless.github.io/itlwm/Troubleshooting.html Use this command to verify if a kernel extension has been successfully loaded. If no output is shown, recheck your bootloader configuration. ```sh kextstat | grep -i "KEXT'S_NAME" ``` ```sh $kextstat | grep -i "itlwm" 70 0 0xffffff7f84126000 0xf86000 0xf86000 com.zxystd.itlwm (1) 10EA7641-BDCB-3820-9AF7-4C773FD9953E <33 13 6 5 3 1> ``` -------------------------------- ### Open System Preferences Network Folder Source: https://openintelwireless.github.io/itlwm/Troubleshooting.html Opens the SystemConfiguration folder in Finder, which contains network-related preference files. This is part of the process to reset network preferences. ```sh open /Library/Preferences/SystemConfiguration ``` -------------------------------- ### Gather Wireless Diagnostics Source: https://openintelwireless.github.io/itlwm/Troubleshooting.html Initiates a comprehensive wireless diagnostic process. This can take up to 10 minutes and will generate a diagnostic file in `/private/var/tmp/`. ```sh sudo wdutil diagnose ``` -------------------------------- ### Enable Airportd Logs Source: https://openintelwireless.github.io/itlwm/Troubleshooting.html Enables detailed logging for airportd, which is necessary for diagnosing issues with AirportItlwm. Run this command before attempting to reproduce the problem. ```sh # Enable airportd logs sudo /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Resources/airport debug +AllUserland +AllDriver +AllVendor ``` -------------------------------- ### Enable 802.1X Verbose Logging Source: https://openintelwireless.github.io/itlwm/Troubleshooting.html Enables verbose logging for Wi-Fi and EAPOL, which is useful for debugging 802.1X network authentication issues. Remember to note the time the issue occurs. ```sh sudo wdutil log +wifi +eapol ``` -------------------------------- ### Disable 802.1X Logging Source: https://openintelwireless.github.io/itlwm/Troubleshooting.html Disables both Wi-Fi and EAPOL verbose logging. Use this command after you have finished collecting diagnostic information. ```sh sudo wdutil log -wifi -eapol ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.