Howto Proxy for Android: Difference between revisions

From Vidalinux Wiki
Jump to navigation Jump to search
No edit summary
Line 11: Line 11:
connect your phone via usb to your desktop then forward port 1080:
connect your phone via usb to your desktop then forward port 1080:
  adb forward tcp:1080 tcp:1080
  adb forward tcp:1080 tcp:1080
 
= set proxy settings on desktop =
on your web browser settings search for proxy:
about:preferences#general
set manual proxy configuration:
socks host: 127.0.0.1 port: 1080
= references =
= references =
* https://github.com/ambrop72/badvpn/issues/64
* https://github.com/ambrop72/badvpn/issues/64

Revision as of 15:44, 17 August 2024

install android tools

install android tools on archlinux:

pacman -S android-tools --noconfirm

install android tools in other platforms:

https://developer.android.com/tools/releases/platform-tools

install proxy in android

install every proxy on your android phone:

https://play.google.com/store/apps/details?id=com.gorillasoftware.everyproxy

launch every proxy app on your android and enable socks5 proxy:

proxy host exposed via port 1080

connect your phone via usb to your desktop then forward port 1080:

adb forward tcp:1080 tcp:1080

set proxy settings on desktop

on your web browser settings search for proxy:

about:preferences#general 

set manual proxy configuration:

socks host: 127.0.0.1 port: 1080

references