diff --git a/pages/common/adb-forward.md b/pages/common/adb-forward.md new file mode 100644 index 0000000000..b62f177245 --- /dev/null +++ b/pages/common/adb-forward.md @@ -0,0 +1,20 @@ +# adb forward + +> Connect to an Android device wirelessly. +> More information: . + +- Forward a TCP port: + +`adb forward tcp:{{local_port}} tcp:{{remote_port}}` + +- List all forwardings: + +`adb forward --list` + +- Remove a forwarding rule: + +`adb forward --remove tcp:{{local_port}}` + +- Remove all forwarding rules: + +`adb forward --remove-all`