How To Install Dns in Linux ?

Reply

Join Date: Oct 2006
Posts: 4
Reputation: saqib389 is an unknown quantity at this point 
Solved Threads: 0
saqib389 saqib389 is offline Offline
Newbie Poster

How To Install Dns in Linux ?

 
0
  #1
Nov 7th, 2006
hi All

can any one tell me how can i install DNS by using LINUX..
basically i have installed RED HAT.. and i havnt install BIND in that..

now i want to know that how can i install BIND by using commands.. and how can i install BIND by using commands...

can any one tell me ?

Thank you for your time..

Saqib
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 5,051
Reputation: John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold 
Solved Threads: 332
Team Colleague
John A's Avatar
John A John A is offline Offline
Vampirical Lurker

Re: How To Install Dns in Linux ?

 
0
  #2
Nov 7th, 2006
Hello,

Installing Bind is not complex. First of all, you'll want to download an RPM for Bind:

http://penguinman.com/rh9/bind-9.2.3-1.i386.rpm

Once it's finished downloading, you can install it (as root):
rpm -Uvh bind-9.2.3-1.i386.rpm

Then you can edit named.conf to configure Bind.

See here for more information:
http://www.linuxhelp.net/guides/bind/
"Technological progress is like an axe in the hands of a pathological criminal."

All my posts may be freely redistributed under the terms of the MIT license.
Reply With Quote Quick reply to this message  
Join Date: Oct 2006
Posts: 4
Reputation: saqib389 is an unknown quantity at this point 
Solved Threads: 0
saqib389 saqib389 is offline Offline
Newbie Poster

Re: How To Install Dns in Linux ?

 
0
  #3
Nov 8th, 2006
Originally Posted by joeprogrammer View Post
Hello,

Installing Bind is not complex. First of all, you'll want to download an RPM for Bind:

http://penguinman.com/rh9/bind-9.2.3-1.i386.rpm

Once it's finished downloading, you can install it (as root):
rpm -Uvh bind-9.2.3-1.i386.rpm

Then you can edit named.conf to configure Bind.

See here for more information:
http://www.linuxhelp.net/guides/bind/
what is RPM -Uvh bind -9.2.3-1.i386.rpm ?
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 5,051
Reputation: John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold 
Solved Threads: 332
Team Colleague
John A's Avatar
John A John A is offline Offline
Vampirical Lurker

Re: How To Install Dns in Linux ?

 
0
  #4
Nov 8th, 2006
Originally Posted by saqib389 View Post
what is RPM -Uvh bind -9.2.3-1.i386.rpm ?
It's a command you enter at the command prompt to install the rpm file that you've downloaded.

Additionally, you'll need to provide the complete path to the RPM and gain root access, so the final command that you enter might be like:
cd /home/you/Desktop
su
[enter your password here, although it won't show up onscreen]
rpm -Uvh bind-9.2.3-1.i386.rpm
Replace /home/you/Desktop with the path to the rpm (where your web browser saved it).
"Technological progress is like an axe in the hands of a pathological criminal."

All my posts may be freely redistributed under the terms of the MIT license.
Reply With Quote Quick reply to this message  
Join Date: Apr 2005
Posts: 16,201
Reputation: jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all 
Solved Threads: 538
Moderator
Featured Poster
jbennet's Avatar
jbennet jbennet is offline Offline
Moderator

Re: How To Install Dns in Linux ?

 
0
  #5
Nov 15th, 2006
can someone explain the whole conecpt of domains?
If i am helpful, please give me reputation points.
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 5,051
Reputation: John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold 
Solved Threads: 332
Team Colleague
John A's Avatar
John A John A is offline Offline
Vampirical Lurker

Re: How To Install Dns in Linux ?

 
0
  #6
Nov 18th, 2006
On a local area network, when a computer wants to view something other than an IP address, it first looks in its internal DNS routing table. On Linux, this is usually in /etc/resolv.conf. If it can't find it in there, it asks the local DNS server (whose IP address is in its config) for the IP address of this name that it's trying to find. The DNS server than returns the IP address (if it can be found) to the computer.

When you enter a domain into your address bar, the first thing that happens when you press return is your browser sends a lookup domain request to your DNS server.

DNS servers are servers that contain tables of domains and their IP address that they point to, and these DNS servers are all around the world. They all contain the same data, so it doesn't matter which one you use. Usually, your ISP has a DNS server, so that is usually the one your browser uses to lookup domains, as it's the closest.

When the DNS server recieves the request, it looks up in its domain table, finds the IP address, and sends this back to your computer. Now that your browser has this information, it can then communicate directly with the web server to get the website.
"Technological progress is like an axe in the hands of a pathological criminal."

All my posts may be freely redistributed under the terms of the MIT license.
Reply With Quote Quick reply to this message  
Join Date: Apr 2005
Posts: 16,201
Reputation: jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all jbennet is a name known to all 
Solved Threads: 538
Moderator
Featured Poster
jbennet's Avatar
jbennet jbennet is offline Offline
Moderator

Re: How To Install Dns in Linux ?

 
0
  #7
Nov 19th, 2006
so if i wanted to point say, www.ben.net to my fixed IP adress, what would i need to do?

also, is thier any benefit of having domains on a linux LAN as opposed to just hostnames
If i am helpful, please give me reputation points.
Reply With Quote Quick reply to this message  
Join Date: Apr 2006
Posts: 5,051
Reputation: John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold John A is a splendid one to behold 
Solved Threads: 332
Team Colleague
John A's Avatar
John A John A is offline Offline
Vampirical Lurker

Re: How To Install Dns in Linux ?

 
0
  #8
Nov 19th, 2006
Originally Posted by jbennet View Post
so if i wanted to point say, www.ben.net to my fixed IP adress, what would i need to do?
On your local DNS server, you would need to edit the /etc/named/named.your.domain and /etc/named.conf and add an entry pointing www.ben.net to your fixed IP address. If you don't know how to do this, try looking here:
http://www.xenocafe.com/tutorials/dn...dhat-part2.php

also, is thier any benefit of having domains on a linux LAN as opposed to just hostnames
Domains are useful as you can use an entire domain to represent your LAN, and each individual computer can use a subdomain. Or, if you have a larger computer, you can use subdomains for subnetworks inside your LAN. Simply having hostnames works, but it's not as easy to see which network and computer it points to.
"Technological progress is like an axe in the hands of a pathological criminal."

All my posts may be freely redistributed under the terms of the MIT license.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:



Similar Threads
Other Threads in the Domains and DNS Forum
Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC