openvpn_90-hotspot 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. #!/bin/bash
  2. is_nat_set() {
  3. local gateway_interface=${1}
  4. iptables -w -nvt nat -L POSTROUTING | grep MASQUERADE | grep -q "${gateway_interface}"
  5. }
  6. unset_nat() {
  7. local gateway_interface=${1}
  8. iptables -w -t nat -D POSTROUTING -o "${gateway_interface}" -j MASQUERADE
  9. }
  10. set_nat() {
  11. local gateway_interface=${1}
  12. iptables -w -t nat -A POSTROUTING -o "${gateway_interface}" -j MASQUERADE
  13. }
  14. ynh_hotspot_state=$(systemctl is-active __SERVICE_NAME__)
  15. if [[ "${ynh_hotspot_state}" == "active" || "${ynh_hotspot_state}" == "activating" ]]; then
  16. old_gateway_interface=$(yunohost app setting __APP__ gateway_interface)
  17. new_gateway_interface=$(ip route get 1.2.3.4 | awk '{ print $5; }')
  18. if [[ -n "$old_gateway_interface" ]] && [[ "$old_gateway_interface" != "$new_gateway_interface" ]] && is_nat_set "$old_gateway_interface"; then
  19. unset_nat "${old_gateway_interface}"
  20. fi
  21. if [[ -n "$new_gateway_interface" ]] && ! is_nat_set $new_gateway_interface; then
  22. set_nat "${new_gateway_interface}"
  23. fi
  24. yunohost app setting __APP__ gateway_interface --value "${new_gateway_interface}"
  25. fi