Browse Source

Update and rename install_rpi.md to install.md

pull/5/head
Per-Arne Andersen 5 years ago
committed by GitHub
parent
commit
f58a5922dc
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 7
      docs/install.md

7
docs/install_rpi.md → docs/install.md

@ -64,3 +64,10 @@ You should now see the following
#INFO: Application startup complete. #INFO: Application startup complete.
#INFO: Uvicorn running on http://0.0.0.0:8000 (Press CTRL+C to quit) #INFO: Uvicorn running on http://0.0.0.0:8000 (Press CTRL+C to quit)
``` ```
## 6. Default routing not working?
Try these.
PostUp `iptables -A FORWARD -i %i -j ACCEPT; iptables -t nat -A POSTROUTING -o eth0 -j MASQUERADE; ip6tables -A FORWARD -i %i -j ACCEPT; ip6tables -t nat -A POSTROUTING -o eth0 -j MASQUERADE`
PostDown `iptables -D FORWARD -i %i -j ACCEPT; iptables -t nat -D POSTROUTING -o eth0 -j MASQUERADE; ip6tables -D FORWARD -i %i -j ACCEPT; ip6tables -t nat -D POSTROUTING -o eth0 -j MASQUERADE`
Loading…
Cancel
Save