Difference between revisions of "OPS335 Email Lab"

From CDOT Wiki
Jump to: navigation, search
(Install and configure Postfix on a VM)
 
Line 3: Line 3:
 
This lab will show you how to set up a Postfix email server using a Fedora 20 installation.
 
This lab will show you how to set up a Postfix email server using a Fedora 20 installation.
 
*You will need at least two systems to do this lab. If for some reason you have not set up your virtual machines, do so before continuing.
 
*You will need at least two systems to do this lab. If for some reason you have not set up your virtual machines, do so before continuing.
{{Admon/important|Prerequistites|Your virtual machines should be running Fedora 20, 64 bit edition.<br />Ensure all machines have been updated and that the clocks are set to the correct date and time.}}
+
{{Admon/important|Prerequistites|Ensure all machines have been updated and that the clocks are set to the correct date and time.}}
 
=== Testing your network ===
 
=== Testing your network ===
 
*Start Firefox on your host and authenticate yourself on Senenet with your Seneca account.
 
*Start Firefox on your host and authenticate yourself on Senenet with your Seneca account.
Line 10: Line 10:
  
 
=== Reviewing the mail command ===
 
=== Reviewing the mail command ===
*Read the mail manual page to remind yourself how it works.
+
 
  
  
Line 16: Line 16:
 
*On Vm 2 do the following:
 
*On Vm 2 do the following:
 
**Check the status of the sendmail service.  If it show up as running or enabled, stop and disable it.  
 
**Check the status of the sendmail service.  If it show up as running or enabled, stop and disable it.  
**Install Postfix
+
**Install Postfix and mail
  yum install postfix
+
  yum install postfix mailx
**Edit the Postfix configuration file, /etc/postfix/main.cf, and change the following lines:
+
**While that is installing, you may wish to read the mail manual page to remind yourself how it works.
 +
**Edit the Postfix configuration file, /etc/postfix/main.cf, and change the following parameters:
 
   mydomain = <senecaID>.org
 
   mydomain = <senecaID>.org
 
   myorigin = $mydomain
 
   myorigin = $mydomain
Line 36: Line 37:
 
**Check your /var/log/messages file to see that your postfix servers started without error.
 
**Check your /var/log/messages file to see that your postfix servers started without error.
 
***If there are any errors, correct them before continuing.
 
***If there are any errors, correct them before continuing.
 
**Tell your machine to use your newly configured postfix server as its MTA
 
***Run the followuing command and select postix from the options:
 
  alternatives --config mta
 
  
 
===Testing mail with the internet===
 
===Testing mail with the internet===
Line 46: Line 43:
 
Note:  <Your  Seneca email address> is your Seneca email address.<br />
 
Note:  <Your  Seneca email address> is your Seneca email address.<br />
 
Note: after you type in your letter, enter a period in the first column on the last line and hit the ENTER key.
 
Note: after you type in your letter, enter a period in the first column on the last line and hit the ENTER key.
*Check your learn email to see if you got the email. If you did make a note of the return address.
+
*Check your learn email 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). When you do receive that email make a note of the return address.
 
*If you did not receive the mail, check the mail logs on your machine to determine what the error is.
 
*If you did not receive the mail, check the mail logs on your machine to determine what the error is.
 
*Test email from the host by sending an email to your Seneca account.  
 
*Test email from the host by sending an email to your Seneca account.  
Line 55: Line 52:
  
 
===Testing email using IP Addresses===
 
===Testing email using IP Addresses===
*If you have problems with the following adjust your firewall to allow traffic to/from port 25.
+
*Adjust your firewall to allow traffic to port 25 on both VMs.
 
**Also check your /var/log/maillog file to see the log entries that get created when mail is sent and received, and when something goes wrong.
 
**Also check your /var/log/maillog file to see the log entries that get created when mail is sent and received, and when something goes wrong.
 
*Try sending an email from vm2 to your vm3.  
 
*Try sending an email from vm2 to your vm3.  
Line 69: Line 66:
  
 
Now try sending mail to yourself on both machines. For example, as <senecaID> on VM 3, use the command:
 
Now try sending mail to yourself on both machines. For example, as <senecaID> on VM 3, use the command:
  $ mail <senecaID>@vm2
+
  $ mail <senecaID>@vm2.<yourdomain>.org
 
the machine will prompt for a subject: enter "testing" without the quotes.
 
the machine will prompt for a subject: enter "testing" without the quotes.
  
Line 78: Line 75:
  
 
==Completing the Lab==
 
==Completing the Lab==
Upon completion of this lab you should have postfix mail servers running on two machines, and starting automatically when they do.  These servers must have sent email both ways between each other (from VM 2 to VM 3, and from VM 3 to VM 2), and to your seneca email.
+
Upon completion of this lab you should have postfix mail servers running on two machines, and starting automatically when they do.  These servers must have sent email both ways between each other (from VM 2 to VM 3, and from VM 3 to VM 2), and to your seneca email (or other external mail server).
  
 
Exploration questions:
 
Exploration questions:

Latest revision as of 10:38, 14 September 2015

Basic Mail (Postfix) Setup

This lab will show you how to set up a Postfix email server using a Fedora 20 installation.

  • You will need at least two systems to do this lab. If for some reason you have not set up your virtual machines, do so before continuing.
Important.png
Prerequistites
Ensure all machines have been updated and that the clocks are set to the correct date and time.

Testing your network

  • Start Firefox on your host and authenticate yourself on Senenet with your Seneca account.
  • Ensure you can surf the web on your host machine. As your host should be using VM 1 as its DNS server, you will need to start it as well.
  • Ensure you can access the web on your VM2 (you can use wget or lynx for that). NOTE: you should not have to authenticate yourself on the guest.

Reviewing the mail command

Install and configure Postfix on a VM

  • On Vm 2 do the following:
    • Check the status of the sendmail service. If it show up as running or enabled, stop and disable it.
    • Install Postfix and mail
yum install postfix mailx
    • While that is installing, you may wish to read the mail manual page to remind yourself how it works.
    • Edit the Postfix configuration file, /etc/postfix/main.cf, and change the following parameters:
 mydomain = <senecaID>.org
 myorigin = $mydomain
 mynetworks = 127.0.0.0/8, 192.168.X.0/24
 relay_domains =
 inet_interfaces=all
Important.png
Warning
Make sure there are no other uncommented copies of these parameters in the file.
    • Create the database file of mail aliases
 postalias hash:/etc/aliases
    • Start and enable Postfix:
systemctl start postfix.service
systemctl enable postfix.service
    • Check your /var/log/messages file to see that your postfix servers started without error.
      • If there are any errors, correct them before continuing.

Testing mail with the internet

  • Test email from your machine by sending an email to your Seneca account.
mail -s "PART C3" <Your Seneca email address>

Note: <Your Seneca email address> is your Seneca email address.
Note: after you type in your letter, enter a period in the first column on the last line and hit the ENTER key.

  • Check your learn email 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). When you do receive that email make a note of the return address.
  • If you did not receive the mail, check the mail logs on your machine to determine what the error is.
  • Test email from the host by sending an email to your Seneca account.
mail -s "PART C4" -r hacker@evil.com <Your Seneca email address>

Note: after you type in your letter, enter a period in the first column on the last line and hit the ENTER key.

  • Check your Seneca email to see if you got the email. If you did make a note of the return address.
  • Repeat the steps for 'Install and Configure Postfix on a vm' on your VM 3.

Testing email using IP Addresses

  • Adjust your firewall to allow traffic to port 25 on both VMs.
    • Also check your /var/log/maillog file to see the log entries that get created when mail is sent and received, and when something goes wrong.
  • Try sending an email from vm2 to your vm3.
mail -s "PART E2" yyyyyy@[192.168.X.4]

Note: yyyyyy is your Seneca ID
Note: the square brackets around the host IP address

  • Try sending an email from your vm3 to vm2.
mail -s "PART E3" root@[192.168.X.3] 

Test email using host names

  • Use the host and hostname commands to check that each of your machines has the same hostname that the DNS service says they have.
    • Restart postfix if you change the hostname on either mail server.

Now try sending mail to yourself on both machines. For example, as <senecaID> on VM 3, use the command:

$ mail <senecaID>@vm2.<yourdomain>.org

the machine will prompt for a subject: enter "testing" without the quotes.

  • Now enter the body of your letter. When you're done, enter a period (.) in column 1 on the last line of your letter. This will signal end-of-file and your letter will be mailed. You should end up back at the $ prompt. If you mess up use CTRL-C to cancel the email, DO NOT USE CTRL-Z.
  • Use the mailq command on both machines (you will need to be root) to view the mail queue.

Use the mail command to check if you have mail.

Completing the Lab

Upon completion of this lab you should have postfix mail servers running on two machines, and starting automatically when they do. These servers must have sent email both ways between each other (from VM 2 to VM 3, and from VM 3 to VM 2), and to your seneca email (or other external mail server).

Exploration questions:

  1. What did changing the relay_domains parameter do?
  2. What firewall rule or rules, if any, did you have to enter so that email between your VMs would work?
  3. What is the meaning of the square brackets surrounding the IP address in the examples?
  4. What were the results of sending email between the VMs? Show log segments to verify your answers.