Jump to content

HOWTO: Tether your liquid!(usb proxy method)


Guest kylenk

Recommended Posts

Instructions for debian based linux(probably identical for windows).

1. Install proxoid on your liquid.

2. Download the android sdk and have adb working.

3. Run: adb forward tcp:8080 tcp:8080 (change ports appropriately)

4. Run proxoid on the liquid

5. Set your global or browser proxy to 127.0.0.1 or localhost with port 8080.

6. =] All done

Hope i at least helped someone.

Link to comment
Share on other sites

Guest duff.angus
Instructions for debian based linux(probably identical for windows).

1. Install proxoid on your liquid.

2. Download the android sdk and have adb working.

for ubuntu linux 9.1 ... some scripts to connect, disconnect a proxy connection using the liquid device

create:

a file as root "11-android.rules" in /etc/udev/rules.d/

containing below entry:

# SUBSYSTEMS=="usb", SYSFS{idVendor}=="0502", SYSFS{idProduct}=="3202", MODE="666", OWNER="your_linux_user_name"

owner and group of /etc/udev/rules.d/11-android.rules must be root.

create two scripts in ~/bin/ and make them executable to start/stop proxy internet connection through your acer liquid.

"start_xoid.sh":

#!/bin/sh

#

# file: start_xoid.sh

# http://code.google.com/p/proxoid/

# Routes network traffic to ACER LIQUID ANDROID PHONE and

# switches the GNOME proxy on

# entry below in file 11-android.rules added to /etc/udev/rules.d

# SUBSYSTEMS=="usb", SYSFS{idVendor}=="0502", SYSFS{idProduct}=="3202", MODE="666", OWNER="your_linux_user_name"


~/opt/android-sdk-linux_86/tools/adb forward tcp:8080 tcp:8080

echo "Enabled forwarding to Acer Liquid Android Phone."


# activate proxy

/usr/bin/gconftool  -t string -s /system/proxy/mode "manual"

/usr/bin/gconftool  -t bool -s /system/http_proxy/use_http_proxy true

# http settings

/usr/bin/gconftool  -t string -s /system/http_proxy/host "localhost"

/usr/bin/gconftool  -t int -s /system/http_proxy/port "8080"

#https settings

/usr/bin/gconftool -t string -s /system/http_proxy/secure_host "localhost"

/usr/bin/gconftool -t int -s /system/http_proxy/secure_port "8080"

echo "Enabled GNOME proxy."
" stop_xoid.sh":
#!/bin/sh

#

# file: stop_xoid.sh

# switches the GNOME proxy OFF

# 


# de-activate proxy

/usr/bin/gconftool -t string -s /system/proxy/mode "none"

/usr/bin/gconftool -t bool -s /system/http_proxy/use_http_proxy false

echo "Diabled GNOME proxy."

connect liquid via usb

start proxoid on liquid

run start_xoid.sh

surf net :(

to finish...

run stop_xoid.sh

stop proxoid on liquid

cool thread, enjoy your acer liquid usb modem!

Edited by duff.angus
Link to comment
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.