FreeBSD > How to setup FreeBSD as DNS client?

by on December 1, 2004 · 1 comment· LAST UPDATED December 1, 2004

in

Local name resolution is done via /etc/hosts file. If you have small network then use /etc/hosts file. DNS (domain name service is accountable for associating domain names with ip address, for example domain yahoo.com is easy to remember than IP address 202.66.66.12) provides better name resolution. To configure FreeBSD as DNS client you need to edit or modify /etc/resolv.conf file. This file defines which name servers to use.

Steps to configure FreeBSD as DNS client
1) Login as a root user

$ su -

2) Open /etc/resolv.conf file using text editor

# vi /etc/resolv.conf

3) Add ISP nameserver as follows:

search isp.com
nameserver 202.54.1.110
nameserver 202.54.1.112
nameserver 202.54.1.115

Note Max. three nameserver can be used/defined at a time.

4) Save file

5) Test dns using ping, dig or nslookup commands:

$ dig www.cyberciti.biz
$ dig mx google.com
$ dig a yahoo.com
$ nslookup nixcraft.com
$ ping www.cyberciti.biz

OR
Use browser to browse Internet.

See also:



If you would like to be kept up to date with our posts, you can follow us on Twitter, Facebook, Google+, or even by subscribing to our RSS Feed.


{ 0 comments… add one now }

Leave a Comment

You can use these HTML tags and attributes for your code and commands: <strong> <em> <ol> <li> <u> <ul> <blockquote> <pre> <a href="" title="">
What is 7 + 13 ?
Please leave these two fields as-is:
Solve the simple math so we know that you are a human and not a bot.

Previous post:

Next post: