Uživatelské nástroje

Nástroje pro tento web


pitel:projekty:ddwrtguestwifi

Guest Wi-Fi with DD-WRT

There are plenty of howtos about that, but none of them seems to match current state of DD-WRT firmware. So I decided to write my own.

xkcd

This guide is written for DD-WRT v3.0-r27944 std (10/09/15) running on TP-LINK TL-WR1043ND.

Adding virtual interface

  1. Go to WirelessBasic Settings and click on Add button.
  2. Name your new network and check Advanced Settings.
  3. Switch Network Configuration to Unbridged.
  4. Enable Network Isolation and set IP Address and Subnet Mask to something other then your home network.
  5. Save & Apply Settings.

You should now see the network, but you will have to manualy set IP address and you will get no internet.

DHCP

  1. Go to SetupNetworking and scroll all the way down to DHCPD section and click Add.
  2. Choose your new interface (shuld be something like ath0.1) and tweak the other settings if you want.
  3. Save & Apply Settings.

You should now get assigned IP address after connecting to the network. But still no internet.

Firewall

  1. Go to AdministrationCommands and save the following commands as Firewall.
  2. Save & Apply Settings.
iptables -I FORWARD -i ath0.1 -d `nvram get lan_ipaddr`/`nvram get lan_netmask` -j logdrop
iptables -t nat -I POSTROUTING -o br0 -s 10.0.0.0/24 -j MASQUERADE
iptables -I INPUT -i ath0.1 -j logdrop
iptables -I INPUT -i ath0.1 -p udp --dport 67 -j ACCEPT
iptables -I INPUT -i ath0.1 -p udp --dport 53 -j ACCEPT
iptables -I INPUT -i ath0.1 -p tcp --dport 53 -j ACCEPT
Replace 10.0.0.0, ath0.1 and maybe br0 with your settings!

It enables port forwarding, but disable access from guest network to your home network, except DNS and DHCP.

You should now have separate Wi-Fi network with internet access.

/var/www/wiki/data/pages/pitel/projekty/ddwrtguestwifi.txt · Poslední úprava: 30. 12. 2022, 13.43:01 autor: 127.0.0.1