freedombone-utils-dns 6.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. #!/bin/bash
  2. #
  3. # .---. . .
  4. # | | |
  5. # |--- .--. .-. .-. .-.| .-. .--.--. |.-. .-. .--. .-.
  6. # | | (.-' (.-' ( | ( )| | | | )( )| | (.-'
  7. # ' ' --' --' -' - -' ' ' -' -' -' ' - --'
  8. #
  9. # Freedom in the Cloud
  10. #
  11. # DNS functions
  12. #
  13. # License
  14. # =======
  15. #
  16. # Copyright (C) 2014-2016 Bob Mottram <bob@robotics.uk.to>
  17. #
  18. # This program is free software: you can redistribute it and/or modify
  19. # it under the terms of the GNU Affero General Public License as published by
  20. # the Free Software Foundation, either version 3 of the License, or
  21. # (at your option) any later version.
  22. #
  23. # This program is distributed in the hope that it will be useful,
  24. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  25. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  26. # GNU Affero General Public License for more details.
  27. #
  28. # You should have received a copy of the GNU Affero General Public License
  29. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  30. # DNS
  31. NAMESERVER1='213.73.91.35'
  32. NAMESERVER2='85.214.20.141'
  33. # parameters used when adding a new domain
  34. DDNS_PROVIDER="default@freedns.afraid.org"
  35. DDNS_USERNAME=
  36. DDNS_PASSWORD=
  37. INADYN_REPO="https://github.com/bashrc/inadyn"
  38. INADYN_COMMIT='fadbe17f520d337dfb8d69ee4bf1fcaa23fce0d6'
  39. # web site used to obtain the external IP address of the system
  40. GET_IP_ADDRESS_URL="checkip.two-dns.de"
  41. # other possible services to obtain the external IP address
  42. EXTERNAL_IP_SERVICES=( \
  43. 'https://check.torproject.org/' \
  44. 'https://www.whatsmydns.net/whats-my-ip-address.html' \
  45. 'https://www.privateinternetaccess.com/pages/whats-my-ip/' \
  46. 'http://checkip.two-dns.de' \
  47. 'http://ip.dnsexit.com' \
  48. 'http://ifconfig.me/ip' \
  49. 'http://ipecho.net/plain' \
  50. 'http://checkip.dyndns.org/plain' \
  51. 'http://ipogre.com/linux.php' \
  52. 'http://whatismyipaddress.com/' \
  53. 'http://ip.my-proxy.com/' \
  54. 'http://websiteipaddress.com/WhatIsMyIp' \
  55. 'http://getmyipaddress.org/' \
  56. 'http://www.my-ip-address.net/' \
  57. 'http://myexternalip.com/raw' \
  58. 'http://www.canyouseeme.org/' \
  59. 'http://www.trackip.net/' \
  60. 'http://icanhazip.com/' \
  61. 'http://www.iplocation.net/' \
  62. 'http://www.howtofindmyipaddress.com/' \
  63. 'http://www.ipchicken.com/' \
  64. 'http://whatsmyip.net/' \
  65. 'http://www.ip-adress.com/' \
  66. 'http://checkmyip.com/' \
  67. 'http://www.tracemyip.org/' \
  68. 'http://checkmyip.net/' \
  69. 'http://www.lawrencegoetz.com/programs/ipinfo/' \
  70. 'http://www.findmyip.co/' \
  71. 'http://ip-lookup.net/' \
  72. 'http://www.dslreports.com/whois' \
  73. 'http://www.mon-ip.com/en/my-ip/' \
  74. 'http://www.myip.ru' \
  75. 'http://ipgoat.com/' \
  76. 'http://www.myipnumber.com/my-ip-address.asp' \
  77. 'http://www.whatsmyipaddress.net/' \
  78. 'http://formyip.com/' \
  79. 'http://www.displaymyip.com/' \
  80. 'http://www.bobborst.com/tools/whatsmyip/' \
  81. 'http://www.geoiptool.com/' \
  82. 'http://checkip.dyndns.com/' \
  83. 'http://myexternalip.com/' \
  84. 'http://www.ip-adress.eu/' \
  85. 'http://www.infosniper.net/' \
  86. 'http://wtfismyip.com/' \
  87. 'http://ipinfo.io/' \
  88. 'http://httpbin.org/ip')
  89. function create_freedns_updater {
  90. if [[ $ONION_ONLY != "no" ]]; then
  91. return
  92. fi
  93. # currently inadyn doesn't work as expected with freeDNS, so this is a workaround
  94. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  95. return
  96. fi
  97. if [[ $DDNS_PROVIDER != *"freedns"* ]]; then
  98. return
  99. fi
  100. if [[ $SYSTEM_TYPE == "mesh"* ]]; then
  101. return
  102. fi
  103. # remove any legacy command
  104. if [ -f /usr/bin/dynamicdns ]; then
  105. rm /usr/bin/dynamicdns
  106. fi
  107. if grep -q "dynamicdns" /etc/crontab; then
  108. sed -i '/dynamicdns/d' /etc/crontab
  109. fi
  110. # add the update command to cron
  111. if ! grep -q "/usr/local/bin/freedombone-freedns" /etc/crontab; then
  112. function_check cron_add_mins
  113. cron_add_mins 3 '/usr/local/bin/freedombone-freedns'
  114. systemctl restart cron
  115. fi
  116. mark_completed $FUNCNAME
  117. }
  118. function add_ddns_domain {
  119. if [ ! $1 ]; then
  120. echo $'ddns domain not specified'
  121. exit 5638
  122. fi
  123. CURRENT_DDNS_DOMAIN="$1"
  124. if [[ $ONION_ONLY != "no" ]]; then
  125. return
  126. fi
  127. if [ ! -f /etc/inadyn.conf ]; then
  128. echo $'Unable to find inadyn configuration file /etc/inadyn.conf'
  129. exit 5745
  130. fi
  131. if ! grep -q "$DDNS_PROVIDER" /etc/inadyn.conf; then
  132. echo '' >> /etc/inadyn.conf
  133. echo "system $DDNS_PROVIDER" >> /etc/inadyn.conf
  134. echo ' ssl' >> /etc/inadyn.conf
  135. echo " checkip-url $GET_IP_ADDRESS_URL /" >> /etc/inadyn.conf
  136. if [ $DDNS_USERNAME ]; then
  137. echo " username $DDNS_USERNAME" >> /etc/inadyn.conf
  138. fi
  139. if [ $DDNS_PASSWORD ]; then
  140. echo " password $DDNS_PASSWORD" >> /etc/inadyn.conf
  141. fi
  142. fi
  143. if ! grep -q "$CURRENT_DDNS_DOMAIN" /etc/inadyn.conf; then
  144. echo " alias $CURRENT_DDNS_DOMAIN" >> /etc/inadyn.conf
  145. fi
  146. chmod 600 /etc/inadyn.conf
  147. systemctl restart inadyn
  148. systemctl daemon-reload
  149. }
  150. function configure_dns {
  151. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  152. return
  153. fi
  154. # allow changes to resolv.conf
  155. chattr -i /etc/resolv.conf
  156. echo 'domain localdomain' > /etc/resolv.conf
  157. echo 'search localdomain' >> /etc/resolv.conf
  158. echo "nameserver $NAMESERVER1" >> /etc/resolv.conf
  159. echo "nameserver $NAMESERVER2" >> /etc/resolv.conf
  160. # prevent resolv.conf from changing
  161. chattr +i /etc/resolv.conf
  162. mark_completed $FUNCNAME
  163. }
  164. function set_hostname {
  165. DEFAULT_DOMAIN_NAME="$1"
  166. echo "$DEFAULT_DOMAIN_NAME" > /etc/hostname
  167. hostname $DEFAULT_DOMAIN_NAME
  168. if grep -q "127.0.1.1" /etc/hosts; then
  169. sed -i "s/127.0.1.1.*/127.0.1.1 $DEFAULT_DOMAIN_NAME/g" /etc/hosts
  170. else
  171. echo "127.0.1.1 $DEFAULT_DOMAIN_NAME" >> /etc/hosts
  172. fi
  173. }
  174. function set_your_domain_name {
  175. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  176. return
  177. fi
  178. function_check set_hostname
  179. set_hostname $DEFAULT_DOMAIN_NAME
  180. mark_completed $FUNCNAME
  181. }
  182. # NOTE: deliberately no exit 0