So if I have this correct. I can get a prepaid sidekick plan for my N900. Then use proxy servers to get around all the stuff the plan will not allow me to do?
#!/bin/sh # # Start ssh tunnel for GPRS. set -e if [ "$IFACE" = lo ]; then exit 0 fi if [ "$MODE" != start ]; then exit 0 fi if [ "$ICD_CONNECTION_TYPE" != GPRS ]; then exit 0 fi ssh -p1194 -NL 8118:localhost:8118 user@111.111.111.111 & exit 0
#!/bin/sh # # Stop ssh tunnel for GPRS. pkill -x ssh