Difference between revisions of "Konfigurasi Untuk OpenDNS"

From OnnoWiki
Jump to navigation Jump to search
 
(5 intermediate revisions by the same user not shown)
Line 1: Line 1:
Di kutip dari situs OpenDNS http://www.opendns.com
+
Di kutip dari situs [[OpenDNS]] http://www.opendns.com
  
''"OpenDNS protects millions of people a day across hundreds of thousands of schools, businesses and homes as they navigate the Internet. We block phishing sites and give you the power to block adult sites, proxies and individual domains."
+
''"[[OpenDNS]] protects millions of people a day across hundreds of thousands of schools, businesses and homes as they navigate the Internet. We block phishing sites and give you the power to block adult sites, proxies and individual domains."
 
''
 
''
  
Line 16: Line 16:
  
  
Konfigurasi untuk BIND DNS Server. Edit named.conf
+
Konfigurasi untuk [[BIND]] [[DNS Server]]. Edit named.conf
  
 
  # vi /etc/bind/named.conf.options
 
  # vi /etc/bind/named.conf.options
Line 23: Line 23:
  
 
         options {
 
         options {
        forwarders { 208.67.222.222; 208.67.220.220; };
+
                forwarders { 208.67.222.222; 208.67.220.220; };
        ...
+
                ...
 
         };
 
         };
  
  
Reload BIND
+
Reload [[BIND]]
  
 
  # rndc reload
 
  # rndc reload
 +
 +
 +
 +
 +
==Pranala Menarik==
 +
 +
* [[Linux Howto]]
 +
* [[Teknik Memblok Situs Tidak Baik]]
 +
* [[Memblokir Situs Tidak Baik: Menggunakan Sistem Operasi]]
 +
* [[Memblokir Situs Tidak Baik: Desktop Untuk Anak]]
 +
* [[Memblokir Situs Tidak Baik: Setting Internet Explorer & Default Browser Page Bagi Putra-Putri Anda]]
 +
* [[Memblokir Situs Tidak Baik: Software Parental Control]]
 +
* [[Memblokir Situs Tidak Baik: Teknik Filter pada Browser]]
 +
* [[Memblokir Situs Tidak Baik: Teknik Filter Content]]
 +
* [[Memblokir Situs Tidak Baik: Teknik Berbasis DNS]]
 +
* [[Memblokir Situs Tidak Baik: Teknik Berbasis Proxy]]
 +
* [[Memblokir Situs Tidak Baik: Teknik Berbasis Firewall]]
 +
* [[Memblokir Situs Tidak Baik: Anti Virus dan Trojan]]
 +
* [[Memblokir Situs Tidak Baik: ISO / Appliance]]
 +
 +
 +
[[Category: Internet Sehat]]
 +
[[Category: DNS]]

Latest revision as of 12:26, 11 May 2010

Di kutip dari situs OpenDNS http://www.opendns.com

"OpenDNS protects millions of people a day across hundreds of thousands of schools, businesses and homes as they navigate the Internet. We block phishing sites and give you the power to block adult sites, proxies and individual domains."


Konfigurasinya sangat sederhana. Edit /etc/resolv.conf

# vi /etc/resolv.conf

Pastikan isinya

       nameserver 208.67.222.222
       nameserver 208.67.220.220


Konfigurasi untuk BIND DNS Server. Edit named.conf

# vi /etc/bind/named.conf.options

Pastikan isinya ada

       options {
               forwarders { 208.67.222.222; 208.67.220.220; };
               ...
       };


Reload BIND

# rndc reload



Pranala Menarik