I'm trying to create a wifi hotspot with my Raspberry Pi B+ that redirects the connected devices to a specific HTML page, hosted on the Raspberry. I can create the hotspot following this tutorial. Is there a way to force a HTML page load, like some routers do?
The plan is:
- The user will connect to the Raspberry Pi wifi hotspot.
- The user device will load a HTML page hosted on the Rasp.
- The user will download files through the links on the HTML page.
iptables -L --line-numbers
you'll get line numbers for rules and then you can delete single line withiptables -D nat 1
for example. To delete all iptables rules you can useiptables -F
– Bungee75 Jan 22 '16 at 18:53