I am trying to sideload a build to my phone, Alcatel Android 7. I have been able to sideload to it before but it's stopped working when I switched to a new network. I am running it from MacOS terminal.
Courtneys-MacBook-Pro-3:~ courtneytaniguchi$ adb connect 10.0.0.216
failed to connect to '10.0.0.216:5555': Connection refused
Courtneys-MacBook-Pro-3:~ courtneytaniguchi$
This phone is developer enabled, I have allowed installation of apps from unknown sources turned on in security, and USB debugging is on too. Yes, I am on the same network.
I had a similar problem
failed to connect to '192.168.31.84:5555': Connection refused
, final worked by:adb kill-server
adb start-server
adb devices
can see your device idadb tcpip 5555
adb -s device_serial_id tcpip 5555
adb connect your_android_phone_ip:5555
Full log for your refer: