freedombone-utils-dns 7.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260
  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@freedombone.net>
  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. NAMESERVER3='213.73.91.35'
  34. NAMESERVER4='85.214.73.63'
  35. NAMESERVER5='84.200.69.80'
  36. NAMESERVER6='84.200.70.40'
  37. # parameters used when adding a new domain
  38. DDNS_PROVIDER="default@freedns.afraid.org"
  39. DDNS_USERNAME=
  40. DDNS_PASSWORD=
  41. INADYN_REPO="https://github.com/bashrc/inadyn"
  42. INADYN_COMMIT='fadbe17f520d337dfb8d69ee4bf1fcaa23fce0d6'
  43. # web site used to obtain the external IP address of the system
  44. GET_IP_ADDRESS_URL="checkip.two-dns.de"
  45. # other possible services to obtain the external IP address
  46. EXTERNAL_IP_SERVICES=( \
  47. 'https://check.torproject.org/' \
  48. 'https://www.whatsmydns.net/whats-my-ip-address.html' \
  49. 'https://www.privateinternetaccess.com/pages/whats-my-ip/' \
  50. 'http://checkip.two-dns.de' \
  51. 'http://ip.dnsexit.com' \
  52. 'http://ifconfig.me/ip' \
  53. 'http://ipecho.net/plain' \
  54. 'http://checkip.dyndns.org/plain' \
  55. 'http://ipogre.com/linux.php' \
  56. 'http://whatismyipaddress.com/' \
  57. 'http://ip.my-proxy.com/' \
  58. 'http://websiteipaddress.com/WhatIsMyIp' \
  59. 'http://getmyipaddress.org/' \
  60. 'http://www.my-ip-address.net/' \
  61. 'http://myexternalip.com/raw' \
  62. 'http://www.canyouseeme.org/' \
  63. 'http://www.trackip.net/' \
  64. 'http://icanhazip.com/' \
  65. 'http://www.iplocation.net/' \
  66. 'http://www.howtofindmyipaddress.com/' \
  67. 'http://www.ipchicken.com/' \
  68. 'http://whatsmyip.net/' \
  69. 'http://www.ip-adress.com/' \
  70. 'http://checkmyip.com/' \
  71. 'http://www.tracemyip.org/' \
  72. 'http://checkmyip.net/' \
  73. 'http://www.lawrencegoetz.com/programs/ipinfo/' \
  74. 'http://www.findmyip.co/' \
  75. 'http://ip-lookup.net/' \
  76. 'http://www.dslreports.com/whois' \
  77. 'http://www.mon-ip.com/en/my-ip/' \
  78. 'http://www.myip.ru' \
  79. 'http://ipgoat.com/' \
  80. 'http://www.myipnumber.com/my-ip-address.asp' \
  81. 'http://www.whatsmyipaddress.net/' \
  82. 'http://formyip.com/' \
  83. 'http://www.displaymyip.com/' \
  84. 'http://www.bobborst.com/tools/whatsmyip/' \
  85. 'http://www.geoiptool.com/' \
  86. 'http://checkip.dyndns.com/' \
  87. 'http://myexternalip.com/' \
  88. 'http://www.ip-adress.eu/' \
  89. 'http://www.infosniper.net/' \
  90. 'http://wtfismyip.com/' \
  91. 'http://ipinfo.io/' \
  92. 'http://httpbin.org/ip')
  93. function create_freedns_updater {
  94. if [[ $ONION_ONLY != "no" ]]; then
  95. return
  96. fi
  97. # currently inadyn doesn't work as expected with freeDNS, so this is a workaround
  98. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  99. return
  100. fi
  101. if [[ $DDNS_PROVIDER != *"freedns"* ]]; then
  102. return
  103. fi
  104. if [[ $SYSTEM_TYPE == "mesh"* ]]; then
  105. return
  106. fi
  107. # remove any legacy command
  108. if [ -f /usr/bin/dynamicdns ]; then
  109. rm /usr/bin/dynamicdns
  110. fi
  111. if grep -q "dynamicdns" /etc/crontab; then
  112. sed -i '/dynamicdns/d' /etc/crontab
  113. fi
  114. # add the update command to cron
  115. if ! grep -q "/usr/local/bin/freedombone-freedns" /etc/crontab; then
  116. function_check cron_add_mins
  117. cron_add_mins 3 '/usr/local/bin/freedombone-freedns'
  118. systemctl restart cron
  119. fi
  120. mark_completed $FUNCNAME
  121. }
  122. function add_ddns_domain {
  123. if [ ! $1 ]; then
  124. echo $'ddns domain not specified'
  125. exit 5638
  126. fi
  127. CURRENT_DDNS_DOMAIN="$1"
  128. if [[ $ONION_ONLY != "no" ]]; then
  129. return
  130. fi
  131. if [[ "$DDNS_PROVIDER" == 'none' ]]; then
  132. return
  133. fi
  134. if [ ! -f /etc/inadyn.conf ]; then
  135. echo $'Unable to find inadyn configuration file /etc/inadyn.conf'
  136. exit 5745
  137. fi
  138. if ! grep -q "$DDNS_PROVIDER" /etc/inadyn.conf; then
  139. echo '' >> /etc/inadyn.conf
  140. echo "system $DDNS_PROVIDER" >> /etc/inadyn.conf
  141. echo ' ssl' >> /etc/inadyn.conf
  142. echo " checkip-url $GET_IP_ADDRESS_URL /" >> /etc/inadyn.conf
  143. if [ $DDNS_USERNAME ]; then
  144. echo " username $DDNS_USERNAME" >> /etc/inadyn.conf
  145. fi
  146. if [ $DDNS_PASSWORD ]; then
  147. echo " password $DDNS_PASSWORD" >> /etc/inadyn.conf
  148. fi
  149. fi
  150. if ! grep -q "$CURRENT_DDNS_DOMAIN" /etc/inadyn.conf; then
  151. echo " alias $CURRENT_DDNS_DOMAIN" >> /etc/inadyn.conf
  152. fi
  153. chmod 600 /etc/inadyn.conf
  154. systemctl restart inadyn
  155. systemctl daemon-reload
  156. }
  157. function remove_ddns_domain {
  158. if [ ! $1 ]; then
  159. echo $'ddns domain not specified'
  160. exit 5638
  161. fi
  162. CURRENT_DDNS_DOMAIN="$1"
  163. if [[ $ONION_ONLY != "no" ]]; then
  164. return
  165. fi
  166. if [[ "$DDNS_PROVIDER" == 'none' ]]; then
  167. return
  168. fi
  169. if [ ! -f /etc/inadyn.conf ]; then
  170. echo $'Unable to find inadyn configuration file /etc/inadyn.conf'
  171. exit 5745
  172. fi
  173. if grep -q "$CURRENT_DDNS_DOMAIN" /etc/inadyn.conf; then
  174. systemctl stop inadyn
  175. sed -i "/alias $CURRENT_DDNS_DOMAIN/d" /etc/inadyn.conf
  176. systemctl start inadyn
  177. systemctl daemon-reload
  178. fi
  179. }
  180. function configure_dns {
  181. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  182. return
  183. fi
  184. apt-get -yq install resolvconf
  185. resolvconf=/etc/resolvconf/resolv.conf.d/head
  186. # allow changes to resolv.conf
  187. chattr -i $resolvconf
  188. echo 'domain localdomain' > $resolvconf
  189. echo 'search localdomain' >> $resolvconf
  190. echo "nameserver $NAMESERVER1" >> $resolvconf
  191. echo "nameserver $NAMESERVER2" >> $resolvconf
  192. echo "nameserver $NAMESERVER3" >> $resolvconf
  193. echo "nameserver $NAMESERVER4" >> $resolvconf
  194. echo "nameserver $NAMESERVER5" >> $resolvconf
  195. echo "nameserver $NAMESERVER6" >> $resolvconf
  196. # prevent resolv.conf from changing
  197. resolvconf -u
  198. mark_completed $FUNCNAME
  199. }
  200. function set_hostname {
  201. DEFAULT_DOMAIN_NAME="$1"
  202. echo "$DEFAULT_DOMAIN_NAME" > /etc/hostname
  203. hostname $DEFAULT_DOMAIN_NAME
  204. echo "$DEFAULT_DOMAIN_NAME" > /etc/mailname
  205. if grep -q "127.0.1.1" /etc/hosts; then
  206. sed -i "s/127.0.1.1.*/127.0.1.1 $DEFAULT_DOMAIN_NAME/g" /etc/hosts
  207. else
  208. echo "127.0.1.1 $DEFAULT_DOMAIN_NAME" >> /etc/hosts
  209. fi
  210. }
  211. function set_your_domain_name {
  212. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  213. return
  214. fi
  215. function_check set_hostname
  216. set_hostname $DEFAULT_DOMAIN_NAME
  217. mark_completed $FUNCNAME
  218. }
  219. function configure_firewall_for_dns {
  220. if [[ $(is_completed $FUNCNAME) == "1" ]]; then
  221. return
  222. fi
  223. if [[ $INSTALLED_WITHIN_DOCKER == "yes" ]]; then
  224. # docker does its own firewalling
  225. return
  226. fi
  227. iptables -A INPUT -p udp -m udp --dport 1024:65535 --sport 53 -j ACCEPT
  228. function_check save_firewall_settings
  229. save_firewall_settings
  230. mark_completed $FUNCNAME
  231. }
  232. # NOTE: deliberately no exit 0