Difference between revisions of "OPS335 - Assignment 1 (Part 2)"

From CDOT Wiki
Jump to: navigation, search
(Assignment Evaluation Details)
m (Assignment Evaluation Details: - fixing typo)
(2 intermediate revisions by 2 users not shown)
Line 91: Line 91:
 
*Download and run a shell script to check your work:
 
*Download and run a shell script to check your work:
  
<ol><li>Login as '''root''' on your '''host''' machine.</li><li>Change to the '''/root/bin''' directory.</li><li>Make certain that your '''assignment VMs are running'''.</li><li>Make certain that the mailx command has been installed. If not, issue the following command to install e-mail on your '''host''' machine:<source>yum install mailx </source><li>Issue the command to download a checking script for your assignment to your '''host''' machine:<span style="font-family:courier;font-size:1em;color:#4d4dff
+
<ol><li>Login as '''root''' on your '''host''' machine.</li><li>Change to the '''/root/bin''' directory.</li><li>Make certain that your '''assignment VMs are running'''.</li><li>Make certain that the mailx command has been installed. If not, issue the following command to install e-mail on your '''host''' machine:<source>yum install mailx </source><li>Issue the command to download a checking script for your assignment to your '''host''' machine:<span font-size:1.1em;color:#000000
"><ul><li>'''Peter Callaghan (ops335 section A):'''<br><span style="font-family:courier;font-size:1em;color:#4d4dff
+
"><ul><li>'''Peter Callaghan (ops335 section A):'''<br><span style="font-family:courier;font-size:1.2em;color:#4d4dff
"><b> -=TBA=- </b></span></li></ul><ul><li>'''Ahad Mammadov (ops335 sections B, C &amp; D):'''<br><span style="font-family:courier;font-size:1em;color:#4d4dff
+
">wget https://matrix.senecacollege.ca/~peter.callaghan/files/OPS335/check-assn1-p2.bash</span></li></ul><ul><li>'''Ahad Mammadov (ops335 sections B, C &amp; D):'''<br><span style="font-family:courier;font-size:1.1em;color:#4d4dff
 
"> wget https://matrix.senecacollege.ca/~ahad.mammadov/files/OPS335/check-assn1p2.bash</span></li></ul></span><br><br>Set execute permissions and run the shell script.<br>(Your shell script contents will be mailed to your OPS335 instructor's Seneca email, and a confirmation message will be emailed to you.<br><br>If you do '''NOT''' receive an e-mail message in your Seneca email account, then there is a problem, and you '''MUST''' rerun or contact your OPS335 instructor immediately.
 
"> wget https://matrix.senecacollege.ca/~ahad.mammadov/files/OPS335/check-assn1p2.bash</span></li></ul></span><br><br>Set execute permissions and run the shell script.<br>(Your shell script contents will be mailed to your OPS335 instructor's Seneca email, and a confirmation message will be emailed to you.<br><br>If you do '''NOT''' receive an e-mail message in your Seneca email account, then there is a problem, and you '''MUST''' rerun or contact your OPS335 instructor immediately.
  

Revision as of 10:09, 3 July 2019

Purpose

In this assignment, you will use the 335assign virtual network and the concept cloning-source that you created in assignment 1 (part 1) to create two name-servers. One of the cloned VMs (hostname: wendys) will be a master name server, and the other VM (hostname: harveys) will be a slave name server. You will install and setup the master and slave servers in order to provide various domain name resolutions for existing servers, and for servers that will be created and used in assignment #2.

General Requirements

Weight: 7% of the overall grade

Due Date (Summer 2019): During Week 7 (in class)

Detailed Requirements

Important.png
It is YOUR responsibility to Backup all of your VMs for this Assignment!
You are required to frequently backup your VMs prior to exiting a work session during this assignment. Your instructor will NOT accept the fact that your hard disk crashed and lost all of your work. If you properly backed up your VM images and xml configuration files to a USB, then you can purchase a new hard-disk or wipe and recreate your hard disk and restore your VMs.

Set-up Master Name Server (wendys)

Perform the following steps for this section:

  1. Create a clone virtual machine called wendys from the concept cloning-source. Refer to the table below for address and hostname.
  2. Create a regular user for this virtual machine using your Seneca userID.
  3. Setup a DNS server on your wendys virtual machine noting the following items below:
    1. This virtual machine will be the Master DNS server for restaurant.fastfood.ops.
    2. Only harveys will be allowed to obtain zone transfers of this zone.
    3. This machine will provide forward and reverse lookups of ALL virtual machines in the restaurant.fastfood.ops. zone, including resource records for virtual machines that do not currently exist.
    4. You MUST use the following names for both the forward and reverse zone files in /var/named directory: mydb-for-restaurant.fastfood.ops and mydb-for-172.21.5
    5. Include an MX record for email sent to the domain to be directed to subway.restaurant.fastfood.ops.
    6. Any machine in the restaurant.fastfood.ops network may use this machine to perform queries of machines outside the network, however it will route all such queries through the DNS server you created in lab #3.
    7. For machines outside the restaurant.fastfood.ops domain, it will only answer queries about machines inside the network. They may not use it to query other machines.

Set-up Slave Name Server (harveys)

Perform the following steps for this section:

  1. Create a clone virtual machine called harveys from the concept cloning-source. Refer to the table below for address and hostname.
  2. Create a regular user for this virtual machine using your Seneca userID.
  3. Setup a DNS server on your harveys virtual machine noting the following items below:
    1. This virtual machine will be the Slave DNS server (in case the Master Name Server goes down).
    2. This virtual machine will obtain its zone files by copying them from the Master Name Server.
    3. This Slave DNS server will check for updated records from the Master DNS server every five days. If the initial attempt fails, then it will attempt every twelve hours until it succeeds, or two weeks have passed.
    4. This machine will provide forward and reverse lookups of ALL machines in the restaurant.fastfood.ops zone, the zone files for which will be obtained from wendys.restaurant.fastfood.ops.
    5. Only machines within the restaurant.fastfood.ops domain will be allowed to query this machine.
    6. This machine will not provide recursive lookup capabilities for any machines.

Network Configuration

As you will now have functioning primary and secondary DNS servers, modify your network configuration file on these machines and on the cloning source to specify the correct IPADDR.

Table of Virtual Machines / DNS Records

All the machines in the following table require DNS records. The rows not shaded represent future servers that will be created in Assignment #2.

Hostname / Domain Address Purpose
hungry.restaurant.fastfood.ops' (your existing host) External Facing Address: DHCP assigned
Internal Virtual Bridge (virbr1): 172.21.5.1
Your host machine
concept.restaurant.fastfood.ops 172.21.5.100 Cloning-source used to create other servers for other assignments.
wendys.restaurant.fastfood.ops 172.21.5.2 Master Name Server
harveys.restaurant.fastfood.ops 172.21.5.3 Slave Name Server
subway.restaurant.fastfood.ops 172.21.5.5 SMTP mail Server
arbys.restaurant.fastfood.ops 172.21.5.6 IMAP mail Server
mcdonalds.restaurant.fastfood.ops 172.21.5.8 Samba Server

Set-up Firewall Policies

In addition to the basic firewall established in assignment 1, ensure the following restrictions are met:

  1. Any machine may query wendys
  2. Only the machines in the restaurant.fastfood.ops network may query harveys.

Assignment Submission

The student is required to prove to their professor that their set-up works correctly during the regularly-scheduled lab period.

Assignment Evaluation Details

  • Demonstrate working assignment to your instructor in class:
    1. Students need to demonstrate their assignment functionality to their professor during a lab period (like you would for any lab for "sign-off").
    2. Students are required to prepare everything ahead of time so that you can quickly demonstrate to your instructor that all required parts of your assignment are working.
    3. Do not proceed to the next step until you have demonstrated your assignment to your instructor to check for errors that may cause problems when running the checking script.

  • Download and run a shell script to check your work:
  1. Login as root on your host machine.
  2. Change to the /root/bin directory.
  3. Make certain that your assignment VMs are running.
  4. Make certain that the mailx command has been installed. If not, issue the following command to install e-mail on your host machine:
    yum install mailx
  5. Issue the command to download a checking script for your assignment to your host machine:

    Set execute permissions and run the shell script.
    (Your shell script contents will be mailed to your OPS335 instructor's Seneca email, and a confirmation message will be emailed to you.

    If you do NOT receive an e-mail message in your Seneca email account, then there is a problem, and you MUST rerun or contact your OPS335 instructor immediately.

    Evaluation Rubric

    Here is an evaluation rubric (in table form) showing you how you will be evaluated for this assignment. Part of the rubric is marked from professor observation from student demonstration of assignment in class, and the other part is based on output from the results of an assignment checking script that the student will download and run.

    Student Demonstration (in class)
    Evaluation Item Mark
    wendys and harveys VMs created
    /1
    wendys and harveys VMs can perform DNS queries of vm1, vm2, vm3
    /1
    wendys and harveys VMs can perform forward DNS lookups for ALL machines within network (listed in the table above)
    /3
    wendys and harveys VMs can perform reverse DNS lookups for ALL machines within network (listed in the table above)
    /3
    Zone transfer occurs
    /3
    Configuration (Checking Script Output)
    Evaluation Item Mark
    Master Name Server (wendys) - Network Configuration
    correct static network configuration
    (one mark for each network config item)
    /5
    Master Name Server (wendys) - Named Configuration Options / Zone Declarations
    Zone transfer (i.e. to slave DNS server) limited to harveys only
    /1
    Allows forward and reverse lookups to restaurant.fastfood.ops
    /1
    Recursion limited to restaurant.fastfood.ops only
    /1
    wendys server is the master name-server for restaurant.fastfood.ops
    /1
    Master Name Server (wendys) - Zone Record
    SOA - three common options (determined by instructor at time of marking)
    /3
    Correct NS records in forward zone
    /2
    Correct NS records in reverse zone
    /2
    MX record
    /1
    Slave Name Server (harveys) - Network Configuration
    correct static network configuration
    (one mark for each network config item)
    /5
    Slave Name Server (harveys) - Named Configuration Options
    Queries are limited to restaurant.fastfood.ops
    /1
    Slave server is Non-recursive
    /1
    Allows forward and reverse lookup for restaurant.fastfood.ops
    /1
    harveys server is slave name-server for restaurant.fastfood.ops
    /1
    Firewall policies
    wendys allows queries from any machine (i.e. will work with vm1, vm2, vm3)
    /2
    harveys limits queries to restaurant.fastfood.ops (i.e. won't work with vm1, vm2, vm3)
    /2
    Less Deductions (1 mark per issue for EACH VM):
    • Not using zone filenames: mydb-for-restaurant.fastfood.ops and mydb-for-172.21.5
    • VM hostname NOT set
    • firewalld enabled / running
    • iptables disabled / not running
    • No Yum update
    • Named NOT active
    • Local hostname resolution appears in /etc/hosts (1 mark per entry, per vm)
    • Neglecting major safeguards (e.g. no firewall present, firewall allowing all traffic, no active SELinux) (4 marks per issue, per VM)
    • Failing to backup VMs (1 mark deduction for each VM not backed up)
    TOTAL /40