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 find firmware or boot ROM version in Mac OS X

Firmware and boot ROM version of your mac can be found in two ways. Way 1 : 1. From "Apple" menu , choose "About This Mac" menu item. 2. Click " More Info " to open "System Profiler" application. 3. Under Contents -> Select Hardware Tree item. On the right side panel Under hardware overview section, we can see Boot ROM Version and SMC (Firmware) Version. Way 2 : Run the below command in terminal to get boot ROM version and SMC(firmware) version : $ system_profiler SPHardwareDataType | grep -i "Version" | awk -F ':' '{print $1 $2}'

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...

How to setup Redhat cluster and GFS2 on RedHat Enterprise Linux 6 on Vmware ESXi

1)     Installing RHEL6 on Vmware esxi  with clustering packages . a)     Creating a RedHat Enterprise Linux 6.0 Virtual image. i)       Open vSphere Client by connecting to a Vmware ESXi Server. ii)     Login into your vSphere Client iii)    Goto File -> New -> Virtual Machine (VM). iv)    Select Custom option in Create New Virtual Machine Window and click Next v)   Give a name to the virtual machine(VM) ( In my case name of my virtual machine is – RHEL6-ClusterNode1) and click next. vi)    Select a resource pool where you want your VM to  reside ( In my case , I have created a      resource pool named RHEL6-Cluster.) and click Next. vii)  Select a datastore  to store your VM files  and Click Next. viii) Select VM version which is suitable for your environment.( In my case VM version is 7) and click Next. ix)   Specify ...