summaryrefslogtreecommitdiff
path: root/content/post/raspberry-pi-router.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/post/raspberry-pi-router.md')
-rw-r--r--content/post/raspberry-pi-router.md30
1 files changed, 0 insertions, 30 deletions
diff --git a/content/post/raspberry-pi-router.md b/content/post/raspberry-pi-router.md
deleted file mode 100644
index 8e51d6f..0000000
--- a/content/post/raspberry-pi-router.md
+++ /dev/null
@@ -1,30 +0,0 @@
----
-categories:
-- software
-date: 2014-08-05
-title: Use your Raspberry Pi as WiFi router
----
-
-Using [this guide](http://www.daveconroy.com/turn-your-raspberry-pi-into-a-wifi-hotspot-with-edimax-nano-usb-ew-7811un-rtl8188cus-chipset/) I successfully turned my Raspberry Pi with an Edimax WiFi dongle into a WiFi hotspot.
-Here's how:
-
-- setup customized hostapd
-- setup dhcp server
-- configure NAT
-
-My network layout looked like this:
-
-``` c
-internet - router - Pi - tablet
- |
- |---- PC
-```
-
-Now the tablet is able to connect to the PC, but not the other way round.
-To fix this, add a route to the PC's IP configuration:
-
-``` bash
-ip route add -net $PI_NETWORK netmask 255.255.255.0 gw $PI_IP
-```
-
-Replace `$PI_NETWORK` and `$PI_IP` with your own values.