OpenMoko / Freerunner and Ubuntu

Today I received my OpenMoko / FreeRunner mobile phone Linux computer.
Here is how I set up the USB networking between the FreeRunner and my notebook (which runs on Ubuntu Linux):
sudo aptitude install dnsmasqsudo iptables -Fsudo ifconfig usb0 192.168.0.200 netmask 255.255.255.0sudo route add 192.168.0.202 usb0sudo iptables -I INPUT 1 -s 192.168.0.202 -j ACCEPTsudo iptables -I OUTPUT 1 -s 192.168.0.200 -j ACCEPTsudo iptables -A POSTROUTING -t nat -j MASQUERADE -s 192.168.0.0/24sudo echo 1 > /proc/sys/net/ipv4/ip_forward
Now you can log into the FreeRunner via SSH using ssh root@192.168.0.202 and the FreeRunner has network access through the USB connection.
