I have a univeral hotspot setup and running. I have another ether2 connection that is 100% connected to the web. I want to add hotspot auth. to the ether2 setup. I used the command listed in the docs.
It is possible to add hotspot authentication for one more interface (prism2) by adding only 4 additional firewall rules:
Setup dst-nat to redirect unauthorized clients to the hotspot service:
/ip firewall dst-nat add in-interface="prism2" flow="!hs-auth" protocol=tcp
dst-potr=443 action=redirect to-dst-port=443
comment="redirect unauthorized prism2 clients to hotspot service"
/ip firewall dst-nat add in-interface="prism2" flow="!hs-auth" protocol=tcp
action=redirect to-dst-port=80
comment="redirect unauthorized prism2 clients to hotspot service"
Limit access for unauthorized prism2 interface clients:
/ip firewall rule forward add in-interface=prism2 action=jump
jump-target=hotspot-temp comment="limit access for unauthorized prism2 clients"
/ip firewall rule input add in-interface=prism2 action=jump
jump-target=hotspot-temp comment="limit access for unauthorized prism2 clients"
\
This did not work, am I missing something? This is all I did - now there
is no web access on ether2
(and yes - I spelled port right - the above is a copy paste)