It allows TCP/UDP/ICMP traffic over UDP tunneling. It's useful to avoid Internet restrictions.
So far, I've tested this technique in an OSX machine (connected to cellphone) and a Linux machine (connected to full access Internet connection). Once you have access to mobile operator's portal cautivo, you can access to limited services, such as DNS, and TCP ports distinct to 80 (HTTP). I don't use proxy over TCP because TCP connections receive an arbitrary RESET at any time. Also, I figure out that 53 UDP port has the best performance, with lower packet loss.
You must:
<public_address>
<your_password>
On Linux server (with full access Internet connection)
./server 53 <your_password>
On OSX client (with limited Internet access)
./client <public_address> 53 <your_password>
Note: You may need a tuntap module for OSX http://tuntaposx.sourceforge.net/download.xhtml if you get an error saying open: No such file or directory
And that's all!!, you'll have a slow (just a bit) but full access Internet connection!. I've measured 0.210 MBPS in download.
By default mobile provider blocks any packet but UDP packet, unless you pay for the service. My method consists in sending TCP/UDP/ICMP frames as payload of an UDP packet to a known host (your server). Your server reinjects these frames to Internet.
PC to Internet
PC -> Cellphone -> [limited Internet] -> Your server -> [Internet]
Internet to PC
[Internet] -> Your server -> [limited Internet] -> Cellphone -> PC
The messages between your server and PC are UDP packets with the next payload:
----------- ------------ --------------------------------------------
| 1 | 2 | 3 |
|PACKET_TYPE| PACKET_CMD | TCP/UDP/ICMP Packet or control data |
| (1 byte) | (1 byte) | (variable size) |
----------- ------------ --------------------------------------------
Each UDP packet arrives to your server or PC must be disassembled and reinjected to OS network stack.
There are 2 packet types:
For reinjecting to OS network stack I use tun driver. It helps to create virtual network interfaces that receive traffic from an userspace application.
Thanks to the routing scripts (in scripts/) you don't need do anything to get the whole system with Internet access. Routing scripts are called automatically.
F. Astroza