Other Debian GNU/Linux on the Universal tips
The phone can connect to a PC via a standard USB cable. To create the network interface:
| # aptitude update # aptitude install titchy-network-settings |
| # ifconfig usb0 192.168.0.1 # echo 1 > /proc/sys/net/ipv4/ip_forward # iptables -A FORWARD -j ACCEPT # iptables -t nat -A POSTROUTING -s 192.168.0.0/24 -o eth0 -j MASQUERADE |
| # ifup usb0 |
To stop the USB network connection, on the Universal type:
| # ifdown usb0 |
Reference: Titchy USB networking, originally found here.