Difference between pages "DNS" and "Firewall"

From WeWeWeb Wiki
(Difference between pages)
Jump to navigationJump to search
(Created page with "In CentOS, the following packages are related to DNS: # bind..............................DNS 主程式 # bind-chroot..................將 bind 主程式關在家理 # bind-u...")
 
(Created page with "Related links: Homepage of iptables & netfitler: http://www.netfilter.org/ <br/> FireStarter Firewall: http://firestarter.sourceforge.net/ <br/> Shoreline Firewall: http://ww...")
 
Line 1: Line 1:
In CentOS, the following packages are related to DNS:
+
Related links:
  
# bind..............................DNS 主程式
+
Homepage of iptables & netfitler: http://www.netfilter.org/ <br/>
# bind-chroot..................將 bind 主程式關在家理
+
FireStarter Firewall: http://firestarter.sourceforge.net/ <br/>
# bind-utils......................用戶搜詢主機名稱的相關指令
+
Shoreline Firewall: http://www.shorewall.net/ <br/>
# system-config-bind
 
# caching-nameserver
 
  
Only the first three packages are required to install.
 
 
Following the following steps:
 
 
1. In /usr/share/doc/bind-9.3.6/sample/ there are two directories etc/ and var/ copy the files to etc/ 及 var/named/ under /var/named/chroot/.
 
 
2. Update the named.conf file.
 
 
3. There are lines like:
 
 
  key ddns_key {
 
        algorithm hmac-md5;
 
        secret "use /usr/sbin/dns-keygen to generate TSIG keys";
 
  };
 
 
If you don't need dynamic update, you can disable it. For gen the key accordingly. You can also use:
 
  Include "/etc/named.keys";
 
And put all key values in that file.
 
 
4. Put all the zone information inside the view section.
 
 
5. To enable write of master zone, put 'ENABLE_ZONE_WRITE=yes' in /etc/sysconfig/named.
 
 
6. Start named service
 
  service named start
 
 
----
 
----
 
Goto [[Linux]]
 
Goto [[Linux]]

Latest revision as of 11:59, 27 January 2022

Related links:

Homepage of iptables & netfitler: http://www.netfilter.org/
FireStarter Firewall: http://firestarter.sourceforge.net/
Shoreline Firewall: http://www.shorewall.net/


Goto Linux