VPS'mde bağlanmamış bir DNS sunucusu tanımladım ve çalışıyor gibi görünüyor. Bazı ISS'ler genel DNS IP'lerini engellediğinden, genel DNS sunucuları yerine DNS sunucusunu kullanmam gerekiyor. Openvpn.conf dosyam şudur:
dev tun
proto tcp
# Notice: here I set the listening port to be 80 to avoid possible port blockage
port 80
ca /etc/openvpn/easy-rsa/2.0/keys/ca.crt
cert /etc/openvpn/easy-rsa/2.0/keys/server.crt
key /etc/openvpn/easy-rsa/2.0/keys/server.key
dh /etc/openvpn/easy-rsa/2.0/keys/dh1024.pem
user nobody
group nogroup
server 10.8.0.0 255.255.255.0
persist-key
persist-tun
#status openvpn-status.log
#verb 3
client-to-client
push "redirect-gateway def1"
#pushing public DNS IPs
push "dhcp-option DNS 208.67.222.222"
push "dhcp-option DNS 208.67.222.220"
comp-lzo
Önerilmiştir gibi burada , benim sunucunun IP'leri kullanmaya çalıştı (11.22.33.44 derler). Yani yerine
push "dhcp-option DNS 208.67.222.222"
push "dhcp-option DNS 208.67.222.220"
Sadece koydum
push "dhcp-option DNS 11.22.33.44"
Yukarıdaki openvpn.conf dosyasında. Ancak, openvpn'yi yeniden başlattıktan sonra, istemcimin OpenVPN sunucusuna hala bağlanabileceğini, ancak artık sayfa görüntülenemediğini görüyorum.
Burada ne yanlış olabilir? Bu sorunu nasıl çözebilirim?