Difference between revisions of "BIND Utilities"

From CBLFS
Jump to navigationJump to search
 
 
(7 intermediate revisions by 4 users not shown)
Line 1: Line 1:
Here are the instructions to install the ISC utilities '''dig''', '''nslookup''', and '''host'''.  See the [[BIND]] section for instructions for setting up a DNS nameserver.
 
 
 
{| style="text-align: left; background-color: AliceBlue;"
 
{| style="text-align: left; background-color: AliceBlue;"
 
|-
 
|-
 
!Download Source:
 
!Download Source:
| ftp://ftp.isc.org/isc/bind9/9.3.2/bind-9.3.2.tar.gz
+
| ftp://ftp.isc.org/isc/bind{{BIND-Version2}}/{{BIND-Version}}/bind-{{BIND-Version}}.tar.gz
|}
 
 
 
{| style="text-align: left; background-color: AliceBlue;"
 
 
|-
 
|-
 
!Alternate Download Source:
 
!Alternate Download Source:
| http://gd.tuwien.ac.at/infosys/servers/isc/bind9/9.3.2/bind-9.3.2.tar.gz
+
| http://gd.tuwien.ac.at/infosys/servers/isc/bind{{BIND-Version2}}/{{BIND-Version}}/bind-{{BIND-Version}}.tar.gz
 
|}
 
|}
=== Dependencies ===
 
  
== Optional ==
+
{{Package-Introduction|BIND (Berkeley Internet Name Domain) is an implementation of the DNS protocols and provides an openly redistributable reference implementation of the major components of the Domain Name System.|http://www.bind9.net/}}
  
 +
== Dependencies ==
 +
 +
=== Optional ===
 
* [[OpenSSL]] (Recommended for secure environments)
 
* [[OpenSSL]] (Recommended for secure environments)
  
Line 38: Line 35:
 
=== 32Bit ===
 
=== 32Bit ===
  
Please contribute to this section
+
Compile the package:
 +
 
 +
CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
 +
make -C lib/dns &&
 +
make -C lib/isc &&
 +
make -C lib/bind9 &&
 +
make -C lib/isccfg &&
 +
make -C lib/lwres &&
 +
make -C bin/dig
 +
 
 +
Install the package
 +
 
 +
make -C bin/dig install
  
 
=== N32 ===
 
=== N32 ===
  
Please contribute to this section
+
Compile the package:
 +
 
 +
CC="gcc ${BUILDN32}" ./configure --prefix=/usr &&
 +
make -C lib/dns &&
 +
make -C lib/isc &&
 +
make -C lib/bind9 &&
 +
make -C lib/isccfg &&
 +
make -C lib/lwres &&
 +
make -C bin/dig
 +
 
 +
Install the package
 +
 
 +
make -C bin/dig install
  
 
=== 64Bit ===
 
=== 64Bit ===
  
Please contribute to this section
+
Compile the package:
 +
 
 +
CC="gcc ${BUILD64}" ./configure --prefix=/usr &&
 +
make -C lib/dns &&
 +
make -C lib/isc &&
 +
make -C lib/bind9 &&
 +
make -C lib/isccfg &&
 +
make -C lib/lwres &&
 +
make -C bin/dig
 +
 
 +
Install the package
 +
 
 +
make -C bin/dig install
 +
 
 +
[[Category:Network Utilities]]

Latest revision as of 17:15, 19 March 2009

Download Source: ftp://ftp.isc.org/isc/bind9/9.6.1-P2/bind-9.6.1-P2.tar.gz
Alternate Download Source: http://gd.tuwien.ac.at/infosys/servers/isc/bind9/9.6.1-P2/bind-9.6.1-P2.tar.gz

Introduction to BIND Utilities

BIND (Berkeley Internet Name Domain) is an implementation of the DNS protocols and provides an openly redistributable reference implementation of the major components of the Domain Name System.

Project Homepage: http://www.bind9.net/

Dependencies

Optional

  • OpenSSL (Recommended for secure environments)

Non-Multilib

Compile the package:

./configure --prefix=/usr &&
make -C lib/dns &&
make -C lib/isc &&
make -C lib/bind9 &&
make -C lib/isccfg &&
make -C lib/lwres &&
make -C bin/dig

Install the package

make -C bin/dig install

Multilib

32Bit

Compile the package:

CC="gcc ${BUILD32}" ./configure --prefix=/usr &&
make -C lib/dns &&
make -C lib/isc &&
make -C lib/bind9 &&
make -C lib/isccfg &&
make -C lib/lwres &&
make -C bin/dig

Install the package

make -C bin/dig install

N32

Compile the package:

CC="gcc ${BUILDN32}" ./configure --prefix=/usr &&
make -C lib/dns &&
make -C lib/isc &&
make -C lib/bind9 &&
make -C lib/isccfg &&
make -C lib/lwres &&
make -C bin/dig

Install the package

make -C bin/dig install

64Bit

Compile the package:

CC="gcc ${BUILD64}" ./configure --prefix=/usr &&
make -C lib/dns &&
make -C lib/isc &&
make -C lib/bind9 &&
make -C lib/isccfg &&
make -C lib/lwres &&
make -C bin/dig

Install the package

make -C bin/dig install