Skip to main content

How to disable or disconnect ADB over WiFi

ADB over Wi-Fi leaves your device open to remote connections, which can be a security risk on untrusted networks. Disabling it restores the traditional USB debugging mode and ensures that your device remains secure.


1 Revert to USB Debugging

        Connect via USB: If your device is currently connected over Wi-Fi, reattach the USB cable. This initial connection is essential to safely switch debugging modes.

          Open Terminal/Command Prompt:  Launch your terminal or command prompt on your computer.

           Switch Back to USB Mode: Enter the following command

                    adb usb

        2. Disconnect the Wireless Session

            If you’re still in a Wi-Fi debugging session, you can explicitly disconnect by running

                  adb disconnect [Your Device's IP Address]:5555

            Replace [Your Device's IP Address] with the actual IP that your device was using for the wireless session.

        3. Disable Wireless Debugging in Developer Options

    • On your Android device, navigate to Settings > System > Developer Options.
    • Look for Wireless Debugging (or “ADB over network” in some versions) and toggle it off.

        4. Restart ADB Server (Optional)

               For added assurance, you can restart the ADB server:

                    adb kill-server 

                    adb start-server

                This ensures all previous Wi-Fi sessions are terminated and that ADB is now strictly using USB.




Known Issues and Considerations

When It Will Work

• Device Still Connected via USB: Disabling Wi-Fi mode works best when the device is physically connected via USB, ensuring that commands are executed reliably.

• Stable ADB Environment: If your computer and device are on a trusted network and you’ve successfully authenticated via USB, the transition back to USB mode should be smooth.

• Post-Setup Verification: Running adb devices after disabling confirms that only USB connections are active, which indicates a successful transition.

When It May Not Work

• Lost USB Connection: If your USB connection is unstable or gets disconnected during the process, you might not be able to issue commands to revert the mode.

• System Reboots or Network Changes: In some cases, especially on older devices or certain Android versions, the wireless ADB might re-enable itself after a reboot or when a network change occurs.

• Developer Options Reset: Some custom ROMs or device configurations might reset developer settings upon restart. In such cases, you may need to re-navigate to Developer Options and manually disable wireless debugging again.

• Firewall or Network Restrictions: Certain network settings or firewall rules might interfere with the disconnection commands, requiring additional troubleshooting steps such as restarting the ADB server.


Comments

Popular posts from this blog

How to enable root login in gnome on Debian 6 or 7

Root user login in gnome is disabled on Debian system by default for security reasons. If you want to enable it for specific reasons then follow the below steps : 1. Login into Debian system 2. launch the Root Terminal from Applications -> Accessories. 3. Authenticate with password to launch the Root Terminal. 4. Open "/etc/pam.d/gdm3" with vi.          #vi /etc/pam.d/gdm3 5. Look for "auth     required     pam_succeed_if.so  user  != root   quiet_success"  , comment it out as below.     #auth     required     pam_succeed_if.so  user  != root   quiet_success 6. Save the modification with Esc+w+q+Enter keystroke. 7. Restart or reboot Debian system. 8. Login with root user in gnome. You should be now able to login successfully.   

How to disable USB ports on Mac OS X Mavericks, Yosemite or El Capitan ?

We might wonder how to disable the USB ports on Mac to prevent data copy to external USB mass storage devices. The USB kext on os x is loaded at the time of start of the system, this can be loaded / unloaded using kextload or kextunload command. To disable USB port on Mac , follow below steps: On Macs running  Mountain Lion, Mavericks  and Yosemite : Unmount any connected USB devices to the system by running below command                  $ diskutil unmount /Volumes/USBDISK. Now unload the USB related kernel extensions in the following order using kextunload command.             sudo kextunload -b com.apple.driver.AppleUSBCardReader             sudo kextunload -b com.apple.driver.AppleUSBODD             sudo kextunload -b com.apple.iokit.IOUSBMassStorageClass        This wil...

What are the useful nvram settings in macOS ?

The OS X boot arguments are useful for troubleshooting problems with system startup and how the system behaves when running. sudo nvram boot-args="-v" :  This command will set the system to always boot to verbose mode, so we do not need to hold Command + V at system startup. sudo nvram boot-args="-x" :  This will set the system to always boot into Safe Mode. sudo nvram boot-args="-s" :  This command will boot the system into single user mode without needing to hold Command-S at system startup. sudo nvram boot-args="iog=0x0"  :   when you close the display but connect the system to an external monitor and keyboard the system will stay awake. After running this command, when connecting an external monitor, the internal display will be disabled, which can be beneficial in some situations such as those where you are mirroring your desktop but wish to run the external display at a higher resolution than your laptop can run. sudo nvram b...