wifi hotspot no route to Internet
#9
Hi I found that after turning on wifi hotspot (which required having wifi turned on) I needed to enable routing through the phone's. Here's the script I use for this, must be invoked with sudo:

Code:
#!/bin/bash
if [ "`whoami`" != root ]; then
    echo "You are not root"
    exit 1
fi
iptables -I INPUT 1 -s 10.42.0.0/24 -j ACCEPT
iptables -I OUTPUT 1 -s 10.42.0.0/24 -j ACCEPT
iptables -A POSTROUTING -t nat -j MASQUERADE -s 10.42.0.0/24

If I don't run this on the pinephone I get DNS on clients but no internet.
  Reply


Messages In This Thread
RE: wifi hotspot no route to Internet - by wibble - 08-31-2021, 12:57 PM
RE: wifi hotspot no route to Internet - by wibble - 09-06-2021, 12:41 PM
RE: wifi hotspot no route to Internet - by wibble - 09-07-2021, 08:36 AM
RE: wifi hotspot no route to Internet - by worden - 10-07-2021, 05:28 PM
RE: wifi hotspot no route to Internet - by bcnaz - 10-07-2021, 06:31 PM
RE: wifi hotspot no route to Internet - by antisol - 04-02-2023, 11:21 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Wifi and bluetooth disabled on pinephone arch-phosh pineuser0 4 3,821 10-26-2021, 04:37 AM
Last Post: pineuser0
  "wifi adapter not found" in Settings after updating quantumphone 2 2,658 06-05-2021, 05:55 PM
Last Post: quantumphone
  wifi not working someGermanGuy 7 8,457 01-20-2021, 10:47 AM
Last Post: Enginerrrd

Forum Jump:


Users browsing this thread: 1 Guest(s)