Jump to content

USB Internet: Difference between revisions

From postmarketOS Wiki
MartijnBraam (talk | contribs)
No edit summary
m Add link to wifi
Line 1: Line 1:
You can enable internet through the USB cable when WiFi doesn't work yet on your device. For this to work you set your host machine as gateway for your phone and let your host machine do network address translation for the phone.
You can enable internet through the USB cable when [[WiFi]] doesn't work yet on your device. For this to work you set your host machine as gateway for your phone and let your host machine do network address translation for the phone.


==== On your phone: ====
==== On your phone: ====

Revision as of 12:18, 23 September 2017

You can enable internet through the USB cable when WiFi doesn't work yet on your device. For this to work you set your host machine as gateway for your phone and let your host machine do network address translation for the phone.

On your phone:

$ sudo route add default gw 172.16.42.2
$ echo "nameserver 8.8.8.8" >> /etc/resolv.conf
Substitute 8.8.8.8 for your own internal DNS server if you want.

On the host machine:

$ echo 1 | sudo tee /proc/sys/net/ipv4/ip_forward > /dev/null
$ sudo iptables -P FORWARD ACCEPT
$ sudo iptables -A POSTROUTING -t nat -j MASQUERADE -s 172.16.42.0/24

This will enable IPv4 forwarding on your host machine which basically lets it function as a router. The postrouting command will make the kernel on the host translate the packets between the phone network and your normal network on the host machine.

You can now verify the internet connection on your phone my pinging something