LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Server (https://www.linuxquestions.org/questions/linux-server-73/)
-   -   Start service line OpenDNS, GooglePublicDNS.. (https://www.linuxquestions.org/questions/linux-server-73/start-service-line-opendns-googlepublicdns-4175480334/)

mariobrosandi 10-10-2013 03:37 PM

Start service line OpenDNS, GooglePublicDNS..
 
Hello.

I want to start service in my country like OpenDNS, and Google Public DNS.

I am using BIND9 on my server(s) and I tried to add the IP(s) of my server into IPv4 settings in Local Area Connections and then I got Unknown Host and could not connect any website domain, but I can connect direct to IP.

Do I need to configure something so everybody can use my DNS services?

Is there any manual online for setting up service like that for Debian?

(Please don't ask me why I do not use their service.)

Hope for help
Regards

mariobrosandi 10-10-2013 05:35 PM

I solved my problems

Quote:

options {
directory "/var/cache/bind";

// If there is a firewall between you and nameservers you want
// to talk to, you may need to fix the firewall to allow multiple
// ports to talk. See http://www.kb.cert.org/vuls/id/800113

// If your ISP provided one or more IP addresses for stable
// nameservers, you probably want to use them as forwarders.
// Uncomment the following block, and insert the addresses replacing
// the all-0's placeholder.

// forwarders {
// 0.0.0.0;
// };

//========================================================================
// If BIND logs error messages about the root key being expired,
// you will need to update your keys. See https://www.isc.org/bind-keys
//========================================================================
dnssec-validation auto;

allow-query { any; };
allow-recursion { trusted; };
allow-query-cache { trusted; };

auth-nxdomain no; # conform to RFC1035
listen-on-v6 { any; };
};

acl "trusted" {
157.157.157.10;
localhost;
localnets;
};

But now I have another question.
Can I allow my users to access one valid page from my server (IP).

I do not know to describe it.
Maybe like this

If I am user from Belgium, and I wan't to access site in USA but when I have belgium IP address I cannot access it. But if it use my DNS server it can access it like it is from USA.

Thanks.

John VV 10-11-2013 01:49 AM

Quote:


But now I have another question.
Can I allow my users to access one valid page from my server (IP).
first provide a legal and valid certification say a CA
http://www.webopedia.com/TERM/C/cert...authority.html
"man in the middle" DNS redirect issues can be a royal problem .


All times are GMT -5. The time now is 06:00 PM.