post_iptables_rules 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #!/bin/bash
  2. wifi_device=$(ynh_app_setting_get --app=$app --key=wifi_device)
  3. captive_portal=$(ynh_app_setting_get --app=$app --key=captive_portal)
  4. ip4_prefix=$(ynh_app_setting_get --app=$app --key=ip4_nat_prefix)
  5. ip6_prefix=$(ynh_app_setting_get --app=$app --key=ip6_net)
  6. iptables -w -N hotspot_fwd
  7. ip6tables -w -N hotspot_fwd
  8. if [[ "${captive_portal}" != "1" ]]
  9. then
  10. exit 0
  11. fi
  12. for iptables_cmd in iptables ip6tables;
  13. do
  14. if [[ "${iptables_cmd}" == "iptables" ]]; then
  15. prefix="${ip4_prefix}"
  16. ip="${ip4_prefix}.1"
  17. subnet="${ip4_prefix}.0/24"
  18. else
  19. prefix="${ip6_prefix}"
  20. ip="${ip6_prefix}1"
  21. subnet="${ip6_prefix}1/64"
  22. fi
  23. mac_addresses=$(grep "${prefix}" /etc/hostapd/$app/allowed.csv | cut -d, -f3)
  24. # Allow to request 4253 port
  25. $iptables_cmd -w -A INPUT -i "${wifi_device}" -m udp -p udp --dport 4253 -j ACCEPT
  26. # Drop all packets going on external internet
  27. $iptables_cmd -w -A hotspot_fwd -s "${subnet}" -j DROP
  28. # Force to use the fakeDNS
  29. $iptables_cmd -w -A PREROUTING -i "${wifi_device}" -s "${subnet}" -p udp --dport 53 -j DNAT --to-destination "${ip}:4253"
  30. # Make things working with DoH
  31. # Warning: this rules to ssupport DoH let info in nginx logs on which website the user try to access...
  32. # Only activating 80 and not 443 reduces a bit the issues.
  33. # A better approach could be to list all ips used by domains dedicated to captive portal detection.
  34. $iptables_cmd -w -A PREROUTING -i "${wifi_device}" -s "${subnet}" -p tcp --dport 80 -j DNAT --to-destination "${ip}:80"
  35. #$iptables_cmd -w -A PREROUTING -i "${wifi_device}" -s "${subnet}" -p tcp --dport 443 -j DNAT --to-destination "${ip}:443"
  36. # Maybe needed, maybe not (i din't need this when vpn is activated)
  37. #$iptables_cmd -t nat -A POSTROUTING -o "${wifi_device}" -j MASQUERADE
  38. # Allow specific mac adress to use external internet
  39. for mac in ${mac_addresses}; do
  40. $iptables_cmd -w -I hotspot_fwd 1 -s "${subnet}" -m mac --mac-source "${mac}" -j ACCEPT
  41. $iptables_cmd -t nat -w -I PREROUTING 1 -i "${wifi_device}" -s "${subnet}" -m mac --mac-source "${mac}" -j ACCEPT
  42. done
  43. $iptables_cmd -w -I FORWARD 1 -i "${wifi_device}" -j hotspot_fwd
  44. done
  45. exit 0