Difference between revisions of "OPS335 DNS Lab"

From CDOT Wiki
Jump to: navigation, search
m (Updating machine names)
m (Updates for fall 2015)
Line 4: Line 4:
 
In this lab you will configure a Linux machine to be a DNS server for the rest of the machines in your intranet. You'll use your learn ID as your domain with IP addresses in the range 192.168.X.1 - 192.168.X.254. The server will handle all queries for names in the <learnid>.org domain and all reverse lookups for addresses in the given range of local IP numbers. The server will pass DNS queries for other names and addresses out to the Internet (i.e. to Seneca's DNS server).
 
In this lab you will configure a Linux machine to be a DNS server for the rest of the machines in your intranet. You'll use your learn ID as your domain with IP addresses in the range 192.168.X.1 - 192.168.X.254. The server will handle all queries for names in the <learnid>.org domain and all reverse lookups for addresses in the given range of local IP numbers. The server will pass DNS queries for other names and addresses out to the Internet (i.e. to Seneca's DNS server).
 
===Instructions===
 
===Instructions===
Prior to beginning this lab ensure that the iptables rules you created for your virtual machines in lab 2 are loading when they boot.  If they are not, repair them now.  You will be building on those rules for the rest of the course.  Remove the rules that are preventing your host from using ssh and ping to contact your VMs.
+
Prior to beginning this lab ensure that the firewall rules you created for your machines in lab 2 are loading when they boot.  If they are not, repair them now.  You will be building on those rules for the rest of the course.
  
 
You're going to populate your server with the following records:
 
You're going to populate your server with the following records:
Line 39: Line 39:
 
   directory "/var/named/";
 
   directory "/var/named/";
 
  allow-query {127.0.0.1; 192.168.X.0/24;};
 
  allow-query {127.0.0.1; 192.168.X.0/24;};
  forwarders { 142.204.1.2; 142.204.43.43;};
+
  forwarders { 142.204.33.54;};
 
   };
 
   };
 
   zone "localhost" {
 
   zone "localhost" {
 
   type master;
 
   type master;
   file "localhost.zone";
+
   file "named.localhost";
 
   notify NO;
 
   notify NO;
 
   };
 
   };
Line 58: Line 58:
  
 
* Set the filesystem permissions for the above file to 644
 
* Set the filesystem permissions for the above file to 644
* Create the file /var/named/localhost.zone and enter the following (note: if you copy-paste this code, there should be NO leading spaces before the "@" or the "$"):
 
  $TTL 3D
 
  @ IN SOA vm1.<learnid>.org. webmaster.<learnid>.org. (
 
  1 ; Serial
 
  8H ; Refresh
 
  2H ; Retry
 
  1W ; Expire
 
  1D ; Negative Cache TTL
 
  );
 
  @ IN NS localhost.
 
IN A 127.0.0.1
 
  
*Now edit /var/named/mydb-for-<learnid>-org and enter the following: But use your own X value where applicable.
+
*Now edit /var/named/mydb-for-<learnid>-org and enter the following: But use your own X value where applicable. (note: if you copy-paste this code, there should be NO leading spaces before the "@" or the "$"):
  
 
   $TTL 3D
 
   $TTL 3D
Line 109: Line 98:
 
*or
 
*or
 
  systemctl status named.service
 
  systemctl status named.service
 +
 +
*Set the service to start automatically when this virtual machine boots.
  
 
*When starting or restarting your name server view the log file (/var/log/messages) to ensure it started without error.
 
*When starting or restarting your name server view the log file (/var/log/messages) to ensure it started without error.
Line 126: Line 117:
 
*You'll notice that only the queries for vm1 worked.  That's because you only have the resource records for vm1.  Go back to the zone files and add the appropriate records for your other machines.
 
*You'll notice that only the queries for vm1 worked.  That's because you only have the resource records for vm1.  Go back to the zone files and add the appropriate records for your other machines.
 
**Once you have done so, restart the service and try querying for those records again.
 
**Once you have done so, restart the service and try querying for those records again.
*Add rules to your iptables to allow the other machines in your network to query your new DNS server.
+
*Modify your firewall to allow the other machines to query your new DNS server.
  
 
===DNS client configuration===
 
===DNS client configuration===
Line 160: Line 151:
 
*If you have made any changes to the /etc/hosts file, undo them.  Your machines must be relying on your DNS server.
 
*If you have made any changes to the /etc/hosts file, undo them.  Your machines must be relying on your DNS server.
 
*Ensure that your machines can ping and SSH to each other by IP address and by name (hostname only, and hostname with domain).
 
*Ensure that your machines can ping and SSH to each other by IP address and by name (hostname only, and hostname with domain).
*Add PEERDNS=no to the ifcfg file on your host.  This tells it to ignore the DNS information given to it by the DHCP server, so it will use the domain and DNS information you provide it.
+
*Modify the ifcfg file on your host so that it will still get a DHCP address, but ignore the DNS information given to it by the DHCP server in favour of the domain and DNS information you provide it.
  
 
==Completing the Lab==
 
==Completing the Lab==
Upon completion of this lab you should have a DNS server in your network.  Ensure that the service starts automatically when the VM boots and that your other machines are able to use it to resolve internal and external hostnames and ip addresses.  Due to the changes made in this lab, you will now need your VM 1 running in order for you host to be able to contact any other machines.
+
Upon completion of this lab you have a DNS server in your network and every machine is using it to resolve internal and external hostnames and ip addresses.
 +
 
 +
You have now gained experience with some common configuration settings for named, as well as common resource records.
 +
 
 +
Note: Due to the changes made in this lab, you will now need your VM 1 running in order for you host to be able to contact any other machines.
  
 
Exploration questions:
 
Exploration questions:

Revision as of 13:11, 3 September 2015

Domain Name System

Objectives

In this lab you will configure a Linux machine to be a DNS server for the rest of the machines in your intranet. You'll use your learn ID as your domain with IP addresses in the range 192.168.X.1 - 192.168.X.254. The server will handle all queries for names in the <learnid>.org domain and all reverse lookups for addresses in the given range of local IP numbers. The server will pass DNS queries for other names and addresses out to the Internet (i.e. to Seneca's DNS server).

Instructions

Prior to beginning this lab ensure that the firewall rules you created for your machines in lab 2 are loading when they boot. If they are not, repair them now. You will be building on those rules for the rest of the course.

You're going to populate your server with the following records:

Fully Qualified Domain Name  IP Address
host.<learnid>.org           192.168.X.1
vm1.<learnid>.org           192.168.X.2
vm2.<learnid>.org           192.168.X.3
vm3.<learnid>.org           192.168.X.4


Here's what your network will look like:
Lab03.png

Perform these steps on your gateway/firewall

  • Start up your host machine, open a terminal window and "su -" to root. This PC will be named "host". It will be your gateway/firewall.
  • Ensure you are connected to the Internet. Use Firefox to authenticate yourself so you can surf the web outside of the Seneca domain.
  • Use yum to update your system if necessary.
yum update
  • If you have not already done so, permanently set the host name of the 'host' machine to "host.<learnid>.org" (without the < and >, they are just there to tell you put your learnid there instead of the literal word learnid).


Perform these steps on your VM1

  • Start your VM 1. This machine will be the domain name server for your intranet.
  • On the VM
    • Use yum to update your system if necessary.
yum update
    • Use yum to install the DNS server.
yum install bind

Edit /etc/named.conf

  • Still on the virtual machine create a back up of the existing '/etc/named.conf', delete the existing contents and add the following: But use your own X value where applicable.
 options {
 	directory "/var/named/";
	allow-query {127.0.0.1; 192.168.X.0/24;};
	forwarders { 142.204.33.54;};
 };
 zone "localhost" {
 	type master;
 	file "named.localhost";
 	notify NO;
 };
 zone "X.168.192.in-addr.arpa" {
 	type master;
 	file "mydb-for-192-168-X";
 	notify NO;
 };
 zone "<learnid>.org" {
 	type master;
 	file "mydb-for-<learnid>-org";
 	notify NO;
 };
  • Set the filesystem permissions for the above file to 644
  • Now edit /var/named/mydb-for-<learnid>-org and enter the following: But use your own X value where applicable. (note: if you copy-paste this code, there should be NO leading spaces before the "@" or the "$"):
 $TTL	3D
 @	IN	SOA	vm1.<learnid>.org.	webmaster.<learnid>.org.(
 			1	; Serial
 			8H	; Refresh
 			2H	; Retry
 			1W	; Expire
 			1D	; Negative Cache TTL
 );
 @	IN	NS	vm1.<learnid>.org.
 vm1	IN	A	192.168.X.2
  • Next, edit /var/named/mydb-for-192-168-X and enter the following:
 $TTL	3D
 @	IN	SOA	vm1.<learnid>.org.	webmaster.<learnid>.org. ( 
 			1	; Serial
 			8H	; Refresh
 			2H	; Retry
 			1W	; Expire
 			1D	; Negative Cache TTL
 );
 @	IN	NS	vm1.<learnid>.org.
 2	IN	PTR	vm1.<learnid>.org.
  • Now set up your resolver to point to itself. Edit /etc/resolv.conf, delete what's there and enter this data instead. Remember to use your value for X.
nameserver 192.168.X.2
search <learnid>.org
  • Note that this is only temporary, and will go away when the machine reboots. There is another step later that will make this change permanently.
  • Start your DNS server with the command
systemctl start named.service
  • Check that your name server is running
ps ax | grep named
  • or
systemctl status named.service
  • Set the service to start automatically when this virtual machine boots.
  • When starting or restarting your name server view the log file (/var/log/messages) to ensure it started without error.
  • Try a few lookups:
 host host.<learnid>.org
 host vm1.<learnid>.org
 host vm2.<learnid>.org
 host vm3.<learnid>.org
 host cbc.ca
  • Now try a few reverse lookups:
 host 192.168.X.1
 host 192.168.X.2
 host 192.168.X.3
 host 192.168.X.4
  • You'll notice that only the queries for vm1 worked. That's because you only have the resource records for vm1. Go back to the zone files and add the appropriate records for your other machines.
    • Once you have done so, restart the service and try querying for those records again.
  • Modify your firewall to allow the other machines to query your new DNS server.

DNS client configuration

  • Perform the following steps on your Centos host.
    • Edit the /etc/resolv.conf file and enter the following:
 nameserver 192.168.X.2
 domain <learnid>.org
    • Now try the commands
 host host.<learnid>.org
 host vm1.<learnid>.org
 host vm2.<learnid>.org
 host vm3.<learnid>.org
 host yahoo.ca
    • And the commands
 host 192.168.X.1
 host 192.168.X.2
 host 192.168.X.3
 host 192.168.X.4
  • Now configure your other virtual machines to also use VM 1 as their DNS server.
  • Also on the VMs use a text browser such as lynx to access the Web.
    • (NOTE: you do not need to authenticate yourself through SeneNet on this machine, as they connects through the host which is already authenticated)
  • On all machines in your network, experiment with the following commands. Be sure to use several different command options to learn and understand how they work.
 host
 dig
 nslookup


Important.png
This final step is important.
Failure to complete this will cause problems with future labs.
  • Finally, ensure each machine is using the static IP address and hostname that matches what the DNS server now claims they use. Double check that this address, and the ability to search using your DNS server, persist after reboot.
  • On each machine add the entry to your interface configuration file that will cause it to permanently use your VM 1 as its primary DNS server.
  • If you have made any changes to the /etc/hosts file, undo them. Your machines must be relying on your DNS server.
  • Ensure that your machines can ping and SSH to each other by IP address and by name (hostname only, and hostname with domain).
  • Modify the ifcfg file on your host so that it will still get a DHCP address, but ignore the DNS information given to it by the DHCP server in favour of the domain and DNS information you provide it.

Completing the Lab

Upon completion of this lab you have a DNS server in your network and every machine is using it to resolve internal and external hostnames and ip addresses.

You have now gained experience with some common configuration settings for named, as well as common resource records.

Note: Due to the changes made in this lab, you will now need your VM 1 running in order for you host to be able to contact any other machines.

Exploration questions:

  1. What iptables rules apply to DNS?
  2. Under what circumstances does DNS use TCP vs UDP?
  3. What is a zone file and what is it used for?
  4. Name the zone files used in this lab, and their purpose.
  5. What file did you edit to set a static IP address?
  6. What parameter did you set in that file to tell the machine to refer to your own DNS server?
  7. What is the purpose of /etc/resolv.conf?
  8. What is meant by the term "negative cache"?
  9. What are MX records used for?
  10. What security features are available for DNS?