mirror of
https://github.com/pivpn/pivpn.git
synced 2024-12-18 19:00:15 +00:00
Merge pull request #493 from justinamcafee/master
Added FamilyShield DNS server as option
This commit is contained in:
commit
aa625b98ff
2 changed files with 11 additions and 0 deletions
|
@ -695,6 +695,7 @@ setClientDNS() {
|
|||
Level3 "" off
|
||||
DNS.WATCH "" off
|
||||
Norton "" off
|
||||
FamilyShield "" off
|
||||
Custom "" off)
|
||||
|
||||
if DNSchoices=$("${DNSChoseCmd[@]}" "${DNSChooseOptions[@]}" 2>&1 >/dev/tty)
|
||||
|
@ -734,6 +735,13 @@ setClientDNS() {
|
|||
$SUDO sed -i '0,/\(dhcp-option DNS \)/ s/\(dhcp-option DNS \).*/\1'${OVPNDNS1}'\"/' /etc/openvpn/server.conf
|
||||
$SUDO sed -i '0,/\(dhcp-option DNS \)/! s/\(dhcp-option DNS \).*/\1'${OVPNDNS2}'\"/' /etc/openvpn/server.conf
|
||||
;;
|
||||
FamilyShield)
|
||||
echo "::: Using FamilyShield servers."
|
||||
OVPNDNS1="208.67.222.123"
|
||||
OVPNDNS2="208.67.220.123"
|
||||
$SUDO sed -i '0,/\(dhcp-option DNS \)/ s/\(dhcp-option DNS \).*/\1'${OVPNDNS1}'\"/' /etc/openvpn/server.conf
|
||||
$SUDO sed -i '0,/\(dhcp-option DNS \)/! s/\(dhcp-option DNS \).*/\1'${OVPNDNS2}'\"/' /etc/openvpn/server.conf
|
||||
;;
|
||||
Custom)
|
||||
until [[ $DNSSettingsCorrect = True ]]
|
||||
do
|
||||
|
|
|
@ -31,4 +31,7 @@ status /var/log/openvpn-status.log 20
|
|||
status-version 3
|
||||
syslog
|
||||
verb 3
|
||||
#DuplicateCNs allow access control on a less-granular, per user basis.
|
||||
#Remove # if you will manage access by user instead of device.
|
||||
#duplicate-cn
|
||||
# Generated for use by PiVPN.io
|
||||
|
|
Loading…
Reference in a new issue