PowerDNS: Instalasi DNS Recursor: Difference between revisions

From OnnoCenterWiki
Jump to navigationJump to search
Onnowpurbo (talk | contribs)
New page: Installing PowerDNS Recursor June 14, 2010 by aip·0 Comment PowerDNS Recursor is a resolving DNS server, that runs as a separate process. The authoritative pdns_server can be configured...
 
Onnowpurbo (talk | contribs)
No edit summary
Line 1: Line 1:
Installing PowerDNS Recursor
June 14, 2010 by aip·0 Comment
PowerDNS Recursor is a resolving DNS server, that runs as a separate process. The authoritative pdns_server can be configured to proxy recursive queries to the recursor, and optionally overlay authoritative zone data.
PowerDNS Recursor is a resolving DNS server, that runs as a separate process. The authoritative pdns_server can be configured to proxy recursive queries to the recursor, and optionally overlay authoritative zone data.


Line 8: Line 5:
1. Install the pdns-recursor package
1. Install the pdns-recursor package


apt-get install pdns-recursor
apt-get install pdns-recursor


2. Configure the server to listen to all interfaces and allow queries from the local network (pico /etc/powerdns/recursor.conf)
2. Configure the server to listen to all interfaces and allow queries from the local network (pico /etc/powerdns/recursor.conf)


allow-from=192.168.1.0/24
allow-from=192.168.1.0/24
local-address=0.0.0.0
local-address=0.0.0.0


Replace 192.168.1.0/24 with your local network or the network allowed to query the resolving NS server.
Replace 192.168.1.0/24 with your local network or the network allowed to query the resolving NS server.
Line 19: Line 16:
3. Restart the DNS server
3. Restart the DNS server


/etc/init.d/pdns-recursor restart
/etc/init.d/pdns-recursor restart





Revision as of 03:48, 1 June 2015

PowerDNS Recursor is a resolving DNS server, that runs as a separate process. The authoritative pdns_server can be configured to proxy recursive queries to the recursor, and optionally overlay authoritative zone data.

The Recursor is used by several of the largest Internet providers of the world, including AOL, Shaw Cable and Neuf Cegetel.

1. Install the pdns-recursor package

apt-get install pdns-recursor

2. Configure the server to listen to all interfaces and allow queries from the local network (pico /etc/powerdns/recursor.conf)

allow-from=192.168.1.0/24
local-address=0.0.0.0

Replace 192.168.1.0/24 with your local network or the network allowed to query the resolving NS server.

3. Restart the DNS server

/etc/init.d/pdns-recursor restart


Referensi