#!/bin/bash # # Parses options from openvpn to update resolv.conf # # The only way to enforce that a linux system will not leak DNS # queries is to replace /etc/resolv.conf with a file that only # has the DNS resolver specified by the VPN. # # That is what this script does. This is what resolvconf is for, # but sadly it does not always work. # # Example envs set from openvpn: # foreign_option_1='dhcp-option DNS 193.43.27.132' # foreign_option_2='dhcp-option DNS 193.43.27.133' # foreign_option_3='dhcp-option DOMAIN be.bnc.ch' # function up() { comment=$( cat < /etc/resolv.conf } function down() { if [ -f /etc/resolv.conf.bak ] ; then cat /etc/resolv.conf.bak > /etc/resolv.conf rm /etc/resolv.conf.bak fi } case $script_type in up) up ;; down) down ;; esac