captiveportal_allow 468 B

1234567891011
  1. #!/bin/bash
  2. date=$(date +"%Y-%m-%d %T")
  3. ip=$1
  4. mac=$(arp -a $ip | cut -d" " -f4 | head -n1)
  5. interface=$(grep wifi_device /etc/yunohost/apps/hotspot/settings.yml | cut -d: -f2 | sed "s/[ ']//g")
  6. if ! grep $mac /etc/hotspot/allowed.csv ; then
  7. echo "$date,$ip,$mac" >> /etc/hotspot/allowed.csv
  8. iptables -w -I hotspot_fwd 1 -s $ip -m mac --mac-source $mac -j ACCEPT
  9. iptables -t nat -w -I PREROUTING 1 -i $interface -s $ip -m mac --mac-source $mac -j ACCEPT
  10. fi