99-origin-dns.sh 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #!/bin/bash -x
  2. # This NetworkManager dispatcher script replicates the functionality of
  3. # NetworkManager's dns=dnsmasq however, rather than hardcoding the listening
  4. # address and /etc/resolv.conf to 127.0.0.1 it pulls the IP address from the
  5. # interface that owns the default route. This enables us to then configure pods
  6. # to use this IP address as their only resolver, where as using 127.0.0.1 inside
  7. # a pod would fail.
  8. #
  9. # To use this,
  10. # - If this host is also a master, reconfigure master dnsConfig to listen on
  11. # 8053 to avoid conflicts on port 53 and open port 8053 in the firewall
  12. # - Drop this script in /etc/NetworkManager/dispatcher.d/
  13. # - systemctl restart NetworkManager
  14. # - Configure node-config.yaml to set dnsIP: to the ip address of this
  15. # node
  16. #
  17. # Test it:
  18. # host kubernetes.default.svc.cluster.local
  19. # host google.com
  20. #
  21. # TODO: I think this would be easy to add as a config option in NetworkManager
  22. # natively, look at hacking that up
  23. cd /etc/sysconfig/network-scripts
  24. . ./network-functions
  25. [ -f ../network ] && . ../network
  26. if [[ $2 =~ ^(up|dhcp4-change)$ ]]; then
  27. # couldn't find an existing method to determine if the interface owns the
  28. # default route
  29. def_route=$(/sbin/ip route list match 0.0.0.0/0 | awk '{print $3 }')
  30. def_route_int=$(/sbin/ip route get to ${def_route} | awk '{print $3}')
  31. def_route_ip=$(/sbin/ip route get to ${def_route} | awk '{print $5}')
  32. if [[ ${DEVICE_IFACE} == ${def_route_int} && \
  33. -n "${IP4_NAMESERVERS}" ]]; then
  34. if [ ! -f /etc/dnsmasq.d/origin-dns.conf ]; then
  35. cat << EOF > /etc/dnsmasq.d/origin-dns.conf
  36. strict-order
  37. no-resolv
  38. domain-needed
  39. server=/cluster.local/172.30.0.1
  40. server=/30.172.in-addr.arpa/172.30.0.1
  41. EOF
  42. fi
  43. # zero out our upstream servers list and feed it into dnsmasq
  44. echo -n > /etc/dnsmasq.d/origin-upstream-dns.conf
  45. for ns in ${IP4_NAMESERVERS}; do
  46. if [[ ! -z $ns ]]; then
  47. echo "server=${ns}" >> /etc/dnsmasq.d/origin-upstream-dns.conf
  48. fi
  49. done
  50. systemctl restart dnsmasq
  51. sed -i '0,/^nameserver/ s/^nameserver.*$/nameserver '"${def_route_ip}"'/g' /etc/resolv.conf
  52. if ! grep -q '99-origin-dns.sh' /etc/resolv.conf; then
  53. echo "# nameserver updated by /etc/NetworkManager/dispatcher.d/99-origin-dns.sh" >> /etc/resolv.conf
  54. fi
  55. fi
  56. fi