hook_post-iptable-rules 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. #!/bin/bash
  2. server_names=$(grep -o -P '^\s*remote\s+\K([^\s]+)' /etc/openvpn/client.conf | sort | uniq)
  3. # In case an ip has been provided in ovpn conf
  4. host4=""
  5. host6=""
  6. for i in ${server_names}; do
  7. if [[ "${i}" =~ : ]]; then
  8. host6+=" ${i}"
  9. elif [[ "${i}" =~ ^[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}$ ]]; then
  10. host4+=" ${i}"
  11. fi
  12. done
  13. if [[ -z "${host6}" ]]; then
  14. host6=$(dig AAAA +short $server_names @127.0.0.1 | grep -v '\.$' | grep -v "timed out")
  15. fi
  16. if [[ -z "${host4}" ]]; then
  17. host4=$(dig A +short $server_names @127.0.0.1 | grep -v '\.$' | grep -v "timed out")
  18. fi
  19. interface=$(ip route | awk '/default via/ { print $5; }')
  20. dns=$(grep -o -P '^\s*nameserver\s+\K[a-fA-F\d.:]+$' /etc/resolv.dnsmasq.conf | sort | uniq)
  21. # IPv6
  22. ip6tables -w -N vpnclient_in
  23. ip6tables -w -N vpnclient_out
  24. ip6tables -w -N vpnclient_fwd
  25. ip6tables -w -A vpnclient_in -p icmpv6 -j ACCEPT
  26. ip6tables -w -A vpnclient_in -s fd00::/8,fe80::/10 -j ACCEPT
  27. ip6tables -w -A vpnclient_in -p tcp --dport 22 -j ACCEPT
  28. ip6tables -w -A vpnclient_in -p tcp --dport 443 -j ACCEPT
  29. ip6tables -w -A vpnclient_in -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
  30. ip6tables -w -A vpnclient_in -j DROP
  31. if [ ! -z "${host6}" ]; then
  32. for i in ${host6}; do
  33. ip6tables -w -A vpnclient_out -d "${i}" -j ACCEPT
  34. done
  35. fi
  36. for i in ${dns};
  37. do
  38. if [[ "${i}" =~ : ]]; then
  39. ip6tables -w -A vpnclient_out -p udp -d "${i}" --dport 53 -j ACCEPT
  40. fi
  41. done
  42. ip6tables -w -A vpnclient_out -d fd00::/8,fe80::/10 -j ACCEPT
  43. ip6tables -w -A vpnclient_out -p icmpv6 -j ACCEPT
  44. ip6tables -w -A vpnclient_out -p udp --dport 5353 -d ff02::fb -j ACCEPT
  45. ip6tables -w -A vpnclient_out -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
  46. ip6tables -w -A vpnclient_out -j DROP
  47. ip6tables -w -A vpnclient_fwd -j DROP
  48. ip6tables -w -I INPUT 1 -i $interface -j vpnclient_in
  49. ip6tables -w -I OUTPUT 1 -o $interface -j vpnclient_out
  50. ip6tables -w -I FORWARD 1 -o $interface -j vpnclient_fwd
  51. # IPv4
  52. iptables -w -N vpnclient_in
  53. iptables -w -N vpnclient_out
  54. iptables -w -N vpnclient_fwd
  55. iptables -w -A vpnclient_in -p icmp -j ACCEPT
  56. iptables -w -A vpnclient_in -s 10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,169.254.0.0/16 -j ACCEPT
  57. iptables -w -A vpnclient_in -p tcp --dport 22 -j ACCEPT
  58. iptables -w -A vpnclient_in -p tcp --dport 443 -j ACCEPT
  59. iptables -w -A vpnclient_in -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
  60. iptables -w -A vpnclient_in -j DROP
  61. if [ ! -z "${host4}" ]; then
  62. for i in ${host4}; do
  63. iptables -w -A vpnclient_out -d "${i}" -j ACCEPT
  64. done
  65. fi
  66. for i in ${dns};
  67. do
  68. if [[ "${i}" =~ \. ]]; then
  69. iptables -w -A vpnclient_out -p udp -d "${i}" --dport 53 -j ACCEPT
  70. fi
  71. done
  72. iptables -w -A vpnclient_out -d 10.0.0.0/8,172.16.0.0/12,192.168.0.0/16,169.254.0.0/16 -j ACCEPT
  73. iptables -w -A vpnclient_out -p udp --dport 5353 -d 224.0.0.251 -j ACCEPT
  74. iptables -w -A vpnclient_out -m conntrack --ctstate RELATED,ESTABLISHED -j ACCEPT
  75. iptables -w -A vpnclient_out -j DROP
  76. iptables -w -A vpnclient_fwd -j DROP
  77. iptables -w -I INPUT 1 -i $interface -j vpnclient_in
  78. iptables -w -I OUTPUT 1 -o $interface -j vpnclient_out
  79. iptables -w -I FORWARD 1 -o $interface -j vpnclient_fwd
  80. exit 0