Difference between revisions of "OPS335 Lab 4"

From CDOT Wiki
Jump to: navigation, search
Line 71: Line 71:
 
===Checking the Message Store (MS) of Received Mail Messages===
 
===Checking the Message Store (MS) of Received Mail Messages===
  
We will now view the Message Store where messages are sent to be retrieved from the mail program. We will also show you how to save mail messages into another message store file in another directory.
+
We will now view the Message Store where messages are sent to be retrieved from the mail program.<br>We will also show you how to save mail messages into another message store file in another directory.
  
 
'''Perform the following Steps:'''
 
'''Perform the following Steps:'''

Revision as of 15:55, 17 February 2016


MAIL SERVER RESOURCES

Online References:


OVERVIEW & PREPARATION

This lab will show you how to set up a Mail User Agent (mailx package) on your VM2 machine to allow users of that VM to send and receive e-mails locally on your VM2 machine, and to send a text-based e-mail to your Seneca mail account (only to send to an external server, but not receive). You will also learn which Mail Transfer Agent (MTA) is allowing messages to be sent locally in your VM2 and externally to your Seneca College account. You will also learn where the message store (MS) is located, and how messages can be saved to other folders.

In order to send e-mail messages between your different VMs, a more complex set-up is required, and will be addressed in the second part of lab4.

The diagram below shows the layout of the what this lab should be able to accomplish:


Email-setup-simple.png



INVESTIGATION 1: INSTALL, SET-UP, AND USE THE MAIL USER AGENT (mailx Package)

We will be using a simple text-based Mail User Agent (MUA) called mailx in this lab to send and receive mail messages within your VM2 machine and to send mail messages to your Seneca e-mail account.

NOTE: Due to the simplicity of this mail server setup, and the setup of Seneca College's mail server, you cannot send Seneca e-mail messages to your VM2 machine.

Installing the Mail User Agent (MUA)

Perform the following Steps:

  1. Make certain you are in your vm2 machine.
  2. Issue the following command to install the mailx application (MUA):
    yum install mailx

NOTE: You can refer to the link below to acquaint yourself on how to send e-mail messages using mailx application:
Mail Send Command Examples

Sending a Mail Message from your VM2 Machine to your Seneca Email Account

We will now test to see if your MTA for your VM2 machine is correctly running by sending email messages from your VM2 machine to your Seneca e-mail account.

Perform the following steps:

  1. Make certain you are still in your vm2 machine.
  2. Test email from your machine by sending an email to your Seneca email account using the following command:
    mail -s "Lab4a - test1" <Your Seneca email address>

    NOTE: after you type in the body of the mail message, move to an empty line, type period "." and press the ENTER key to send the message.

  3. Check your Seneca email account to see if you got the email (note that it may take a few minutes to arrive, so you may also wish to try an alternate email account if you have one like gmail, etc). When you do receive that email, make a note of the return address.
  4. If you did not receive the mail, check the mail logs on your vm2 machine to determine any errors messages that would indicate a mail server setup problem.
  5. Test email from your Host Machine by sending an email to your Seneca account using the following command:
    mail -r "hacker.com (Canadian Revenue Agency)" -s "Lab4a - test2" <Your Seneca email address>
  6. Check your Seneca email to see if you got the email. If you did, make a note of the return address. How would you think that including the -r option could be used by penetration hackers to gain access to a computer system? What sort of steps do you think should be taken to help prevent this type of attack from happening?

Sending a Mail Message within your VM2 Machine (vm2)

We will now test both your MUA (mailx) and MTA (postfix) by sending and receiving e-mail messages on the local VM2 machine only.

Perform the following Steps:

  1. Send an email message locally (i.e. only within) your VM2 machine by issuing the command:
    mail -s "Lab4a - Local - Test1" <yourSenecaID>
  2. After you type in the body of the mail message, move to an empty line, type period "." and press the ENTER key to send the message.
  3. Issue the following command: cat /var/log/spool/mail/<yourSenecaID>
    What do you see? What does this show you in terms of where mail is stored on your e-mail server?
  4. Issue the following command to read the mail message you send to yourself:
    mail

    NOTE: You can refer to the link below to view a reference chart on how to read and delete received e-mail messages at the mail command prompt:
    Commands to View and Manage Received e-mail Mesages

  5. If you received an e-mail message, the message and subject line should appear as a listing in your mail command.
    If you did not receive a mail message, check your mail server settings, check to see if you mail server is running and also check /var/log/messages.
  6. Type the mail message number that is displayed in your e-mail message list in the prompt and press ENTER. You should be able to confirm the message body that you sent.
  7. Exit the mail program by typing the letter q and press ENTER.
  8. Re-issue the mail command. What happened?
  9. Exit the mail command.

Checking the Message Store (MS) of Received Mail Messages

We will now view the Message Store where messages are sent to be retrieved from the mail program.
We will also show you how to save mail messages into another message store file in another directory.

Perform the following Steps:

  1. Create a directory in your home directory called: mail.
  2. Re-issue the mail command, and enter the following command at the mail prompt: save   1   mail/msg1
    Use the cat command to check the contents of /var/spool/mail<yourSenecaID> and ~/mail/msg1. Exit the mail command.
  3. Try sending another e-mail from your VM2 account to yourself, but using your first name instead by issuing the following command:
    mail -s "Lab4a - Local - Test2" <yourFirstName>
  4. Issue the mailq command on your VM2 machine (you will need to be root) to view the mail queue. Why would this command be useful for an administrator?
  5. Now, issue the mail command to see if you received that e-mail message. Did it work? If so, why?
    Record your observations in your OPS335 lab logbook.

Record steps, commands, and your observations in INVESTIGATION 1 in your OPS335 lab log-book


INVESTIGATION 2: DETERMINING THE DEFAULT MAIL TRANSFER AGENT (MTA)

Obviously the Mail Transfer Agent must be running in order to send e-mail messages locally or to external mail server (like myseneca.ca). In this section, we will determine information relating to Seneca College's MTA when email messages are sent via your VM2 machine.

Viewing Email Headers

Normally, email headers are seldom seen with our e-mail applications such as web-mail, MS Outlook, or Thunderbird. There are way in order to view detailed header information for each email we send that provides information how the email message was sent, including the name of the program that is running as the Mail Transfer Agent and its IPADDR. Although these email headers may look complicated, they can trace the steps of sending the e-mail messages among the MTAs to gain a better understanding of the email transmission process.

Perform the following Steps:

If your MS outlook application looks like above, then your MS Outlook application is in lite-mode, and needs to be changed from lite-mode to regular-mode).
If your MS outlook application looks like above, then your MS Outlook application is in regular-mode, so you can skip the procedure to set from lite-mode to regular-mode.
  1. Make certain you are in your vm2 machine.
  2. Send another email message from your VM2 machine to your Seneca email account using the command:
    mail -s "Lab4a - Header Message" <Your Seneca email address>

    NOTE: after you type in the body of the mail message, move to an empty line, type period "." and press the ENTER key to send the message.

  3. View your e-mail message in your Seneca email account.

Switching Modes in MS Outlook:


If you are using web-mail to read your Seneca e-mail message, then your Mail User Agent is probably using the MS Outlook program. This program can run in regular-mode or lite-mode. If it is currently running in "lite-mode", your program show appear in a similar fashion as the left-most image displayed next to this text. If it appears that your MS Outlook program is using regular-mode (same as image on right-most side), then you can skip the following procedure.
Procedure to Change from Lite-mode to Regular mode:
  1. x
  2. x
  3. x


Record steps, commands, and your observations in INVESTIGATION 2 in your OPS335 lab log-book


COMPLETING THE LAB

Arrange proof that you can send e-mail from your VM2 machine to your Seneca College e-mail account, and than you can send and receive e-mail messages locally on your VM2 machine only.


EXPLORATION QUESTIONS

  1. Briefly list the students to install the MUA on your server for text-based messaging.
  2. Briefly list the steps to trouble-shoot your server if you could not send e-mail messages from your VM2 machine to an external e-mail server.
  3. Write the command to send an e-mail message from your VM2 to your Seneca College e-mail account.
  4. What are the commands to issue in the mail prompt to:
    • Read the first e-mail message displayed
    • Save the 4th e-mail message to the file pathname: ~/maildir/3.msg.txt
    • Delete the 3rd e-mail message displayed
    • Exit the mail command prompt and return to the shell

  5. What were the results of sending emails locally on your VM2 machine? Show log segments to verify your answers.
  6. List the steps to show your email header to trace the transmission between Mail Transfer Agents among different mail servers.