First of all, download USB-TCP Bridge and pty-redir via the above links. Start USB-TCP Bridge and set it up to:
- Listen on USB and connect to TCP port
- USB connection type: should be set to "Serial emulation"
- TCP Port: shoudl be set to 22000.
./pty-redir nc -l -p 22000This will reroute incoming traffic from port 22000 to a device. pty-redir will print out which device it's going to use -- /dev/ttyp0 or something like that. Next, start pppd on that device:
pppd /dev/ttyp0 115200 10.0.0.1:10.0.0.2 noauth proxyarpReplace the IP numbers with whatever you are using on your network. Now your connection will be all set to go, just configure your Palm to use USB and connect.
Strong Warning: This hint might jeopardize the security of your network, due to the fact that anyone can connect to your host computer on port 22000 to gain access to your network.

