web-dev-qa-db-ja.com

OpenVPNクライアントのDNSを設定するには?

次の設定ファイルでOpenVPNサーバーを実行しています

port 1194
proto tcp
dev tun
ca ca.crt
cert server.crt
key server.key 
dh dh2048.pem
topology subnet
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
Push "redirect-gateway def1 bypass-dhcp"
Push "dhcp-option DNS 8.8.8.8"
Push "dhcp-option DNS 8.8.4.4"
keepalive 10 120
tls-crypt myvpn.tlsauth
cipher AES-256-CBC
compress lz4-v2
Push "compress lz4-v2"
user nobody
group nobody
persist-key
persist-tun
status openvpn-status.log
log /var/log/openvpn.log
verb 3
remote-cert-eku "TLS Web Client Authentication"

別のクライアントを接続していて、Debianマシンで次の設定ファイルを使用しました

client
tls-client
ca ca.crt
cert pibox.crt
key pibox.key
tls-crypt myvpn.tlsauth
proto tcp
remote X.X.X.X 1194 tcp
dev tun
topology subnet
cipher AES-256-CBC
log /var/log/openvpn.log
pull
script-security 2                     
up /etc/openvpn/update-resolv-conf
down /etc/openvpn/update-resolv-conf

すべてが正常に機能しています。VPNにアクセスでき、インターネットにもアクセスできます。同じ構成ファイルを使用したCentOS 7クライアントをセットアップしようとしていますが、

script-security 2
up /etc/openvpn/update-resolv-conf
down /etc/openvpn/update-resolv-conf

使用できません。DNSの構成方法がわかりません。調査したところ、openresolvについて言及している人もいます。

pull-filter ignore "dhcp-option DNS"

しかし、何も機能しません、また、私は this を読みましたが、持っていません

/usr/share/openvpn/update-resolv-conf
/usr/share/openvpn/update-resolv-conf

CentOSクライアントでDNSを構成するための正しい手順は何ですか?

2

私はなんとかそれを修正しました、私がしたことは

cd /etc/yum.repos.d
Sudo wget https://copr.fedorainfracloud.org/coprs/macieks/openresolv/repo/epel-7/macieks-openresolv-epel-7.repo
Sudo yum update
Sudo yum install openresolv

/etc/resolv.conf

次に、カスタムDNSを設定するように変更しました

# Generated by NetworkManager
search Home
nameserver 8.8.8.8
nameserver 8.8.4.4

クライアント

client
tls-client
ca ca.crt
cert i7box.crt
key i7box.key
tls-crypt myvpn.tlsauth
proto tcp
remote x.x.x.x 1194 tcp
dev tun
topology subnet
cipher AES-256-CBC
log /var/log/openvpn.log
pull

また、自動DNSを無効にして静的DNSを配置しました。

GUI静的DNS

3