Difference between revisions of "OPS235 Lab 8 - CentOS6"
(→Investigation 2: What configuration options and directives need to be set in dhcpd.conf?) |
|||
(6 intermediate revisions by one other user not shown) | |||
Line 1: | Line 1: | ||
− | {{Admon/caution| | + | {{Admon/caution|THIS IS AN OLD VERSION OF THE LAB|'''This is an archived version. Do not use this in your OPS235 course.'''}} |
= Setting Up, Using & Maintaining a DHCP Server = | = Setting Up, Using & Maintaining a DHCP Server = | ||
Line 56: | Line 56: | ||
{{Admon/important | Backup your VMs before proceeding | If you did not do it at the end of Lab 7, stop all of your VMs and backup your VM disk images.}} | {{Admon/important | Backup your VMs before proceeding | If you did not do it at the end of Lab 7, stop all of your VMs and backup your VM disk images.}} | ||
− | {{Admon/note |ISC DHCP packages Overview | The version of DHCP server that comes with CentOS is maintained and distributed by the Internet Software Consortium (http://www.isc.org). The source package that you can download from ISC includes not only the DHCP server, but also a DHCP client and a DHCP relay agent. CentOS | + | {{Admon/note |ISC DHCP packages Overview | The version of DHCP server that comes with CentOS is maintained and distributed by the Internet Software Consortium (http://www.isc.org). The source package that you can download from ISC includes not only the DHCP server, but also a DHCP client and a DHCP relay agent. CentOS separates it into two RPM packages: the DHCP client package and the DHCP server package. The DHCP client package is installed by default by the workstation installation.}} |
=== Investigation 1: How do you install the DHCP Server? === | === Investigation 1: How do you install the DHCP Server? === | ||
Line 97: | Line 97: | ||
=== Investigation 3: How do I configure dhcpd settings to be applied to all subnets?=== | === Investigation 3: How do I configure dhcpd settings to be applied to all subnets?=== | ||
− | {{Admon/note | Use your | + | {{Admon/note | Use your centos3 VM | Complete the following steps on your centos3 VM.}} |
# Edit <code>/etc/dhcp/dhcpd.conf</code> and examine the top section of the file. | # Edit <code>/etc/dhcp/dhcpd.conf</code> and examine the top section of the file. | ||
Line 111: | Line 111: | ||
'''Answer the Investigation 3 observations / questions in your lab log book.''' | '''Answer the Investigation 3 observations / questions in your lab log book.''' | ||
− | |||
=== Investigation 4: How do I configure dhcpd to provide IP configuration to my virtual network?=== | === Investigation 4: How do I configure dhcpd to provide IP configuration to my virtual network?=== | ||
− | {{Admon/note | Use your | + | {{Admon/note | Use your centos3 VM | Complete the following steps on your centos3 VM.}} |
# Edit <code>/etc/dhcp/dhcpd.conf</code> for a second time, and add a new subnet delcaration for your virtual network | # Edit <code>/etc/dhcp/dhcpd.conf</code> for a second time, and add a new subnet delcaration for your virtual network | ||
Line 120: | Line 119: | ||
# Also add a default gateway for the virtual network of '''192.168.235.1''' | # Also add a default gateway for the virtual network of '''192.168.235.1''' | ||
# Save your editing session, and exit the text editor. | # Save your editing session, and exit the text editor. | ||
− | {{Admon/note | Recall Secure SSH Connection Method from Lab7 | Do not forget that you | + | {{Admon/note | Recall Secure SSH Connection Method from Lab7 | Do not forget that you made ssh more secure in the previous lab. Therefore, you will need to use the same command in lab7 to securely connect to your VM.}} |
− | <ol><li value="5">Open another terminal window (ssh into | + | <ol><li value="5">Open another terminal window (ssh into centos3 from the centos host as user root) and issue the following command: |
::: <code>tail -f /var/log/messages</code> | ::: <code>tail -f /var/log/messages</code> | ||
<li>This will show you the last 10 lines of <code>/var/log/messages</code> continue to display new lines as they are added to the log.</li> | <li>This will show you the last 10 lines of <code>/var/log/messages</code> continue to display new lines as they are added to the log.</li> | ||
Line 137: | Line 136: | ||
'''Answer the Investigation 4 observations / questions in your lab log book.''' | '''Answer the Investigation 4 observations / questions in your lab log book.''' | ||
− | |||
=== Investigation 5: How do I test my dhcpd service on my virtual network?=== | === Investigation 5: How do I test my dhcpd service on my virtual network?=== | ||
− | {{Admon/note | Use your | + | {{Admon/note | Use your centos2 and centos3 VMs | Complete the following steps on your centos2 and centos3 VMs.}} |
− | # On a | + | # On a centos3 terminal window make sure that the command <code>tail -f /var/log/messages</code> is running. |
− | # On your | + | # On your centos2 VM, change the configuration of '''eth0''' (or your interface name) to receive dynamic address configuration. |
# Save your changes and restart the <code>NetworkManager</code> service. | # Save your changes and restart the <code>NetworkManager</code> service. | ||
# Observe the messages that get logged. You should see output similar to the following: | # Observe the messages that get logged. You should see output similar to the following: | ||
<pre > | <pre > | ||
− | Mar 24 13:28:24 | + | Mar 24 13:28:24 centos3 dhcpd: DHCPDISCOVER from 52:54:00:61:00:e7 via eth2 |
− | Mar 24 13:28:25 | + | Mar 24 13:28:25 centos3 dhcpd: DHCPOFFER on 192.168.235.51 to 52:54:00:61:00:e7 via eth2 |
− | Mar 24 13:28:25 | + | Mar 24 13:28:25 centos3 dhcpd: DHCPREQUEST for 192.168.235.51 (192.168.235.13) from 52:54:00:61:00:e7 via eth2 |
− | Mar 24 13:28:25 | + | Mar 24 13:28:25 centos3 dhcpd: DHCPACK on 192.168.235.51 to 52:54:00:61:00:e7 via eth2 |
</pre> | </pre> | ||
{{Admon/note | Identifying DHCP Lease Transaction Information | These messages record the DHCP lease transaction that consists of 4 broadcast packets, DISCOVER, OFFER, REQUEST and ACKNOWLEDGE. Try researching on the internet how this transaction differs from a DHCP lease renewal.}} | {{Admon/note | Identifying DHCP Lease Transaction Information | These messages record the DHCP lease transaction that consists of 4 broadcast packets, DISCOVER, OFFER, REQUEST and ACKNOWLEDGE. Try researching on the internet how this transaction differs from a DHCP lease renewal.}} | ||
− | <ol><li value="5">On | + | <ol><li value="5">On centos2, confirm the IP address assignment using <code>ifconfig</code></li> |
</ol> | </ol> | ||
'''Answer the Investigation 5 observations / questions in your lab log book.''' | '''Answer the Investigation 5 observations / questions in your lab log book.''' | ||
− | |||
− | |||
== Obtaining Lease Information & Lease Permanent IP Address == | == Obtaining Lease Information & Lease Permanent IP Address == | ||
Line 165: | Line 161: | ||
=== Investigation 6: Where does the dhcp server store a record of leased addresses?=== | === Investigation 6: Where does the dhcp server store a record of leased addresses?=== | ||
− | {{Admon/note | Use your | + | {{Admon/note | Use your centos2 and centos3 VMs | Complete the following steps on your centos2 and centos3 VMs.}} |
− | # If your | + | # If your centos3 DHCP server successfully issued the proper IP address configuration values to centos2, check the file called <code>/var/lib/dhcpd/dhcpd.leases</code> |
# You should see contents similar to: | # You should see contents similar to: | ||
<pre> | <pre> | ||
Line 180: | Line 176: | ||
</pre> | </pre> | ||
{{Admon/note | Purpose of <code>dhcpd.leases</code> File | dhcpd records address leases in this file. If the service is restarted it reads in the file to know which addresses are currently leased and for how long.}} | {{Admon/note | Purpose of <code>dhcpd.leases</code> File | dhcpd records address leases in this file. If the service is restarted it reads in the file to know which addresses are currently leased and for how long.}} | ||
− | <ol><li value="3">On the client | + | <ol><li value="3">On the client centos2 check the contents of the <code>/var/lib/dhclient</code> directory. The files in this directory is where the dhclient stores its record of leases.</li> |
</ol> | </ol> | ||
Line 187: | Line 183: | ||
=== Investigation 7: How can I lease the same address every time? === | === Investigation 7: How can I lease the same address every time? === | ||
− | {{Admon/note | Use your | + | {{Admon/note | Use your centos2 and centos3 VMs | Complete the following steps on your centos2 and centos3 VMs.}} |
{{Admon/note | Reserving IP Addresses with DHCP | Even though DHCP gives out IP address dynamically, it also has the ability to reserve an IP address for a certain computer. In this sense it's almost as if the client computer has a static IP even though it uses DHCP to get it. This is useful if you want to be able to put entries in your /etc/hosts file and not have to worry about the entry becoming invalid over time. In Linux we refer to this as supplying a fixed address to a host. Microsoft calls it a reservation.}} | {{Admon/note | Reserving IP Addresses with DHCP | Even though DHCP gives out IP address dynamically, it also has the ability to reserve an IP address for a certain computer. In this sense it's almost as if the client computer has a static IP even though it uses DHCP to get it. This is useful if you want to be able to put entries in your /etc/hosts file and not have to worry about the entry becoming invalid over time. In Linux we refer to this as supplying a fixed address to a host. Microsoft calls it a reservation.}} | ||
− | # Make certain that you are located in your | + | # Make certain that you are located in your centos3 virtual machine. |
− | # Create a host declaration for | + | # Create a host declaration for centos2. Make sure you record the correct <code>hardware ethernet</code> setting that corresponds to the MAC address of the interface in centos2. |
# Give it the fixed-address 192.168.235.12 | # Give it the fixed-address 192.168.235.12 | ||
{{Admon/tip | Avoiding IP Address Conflicts | When supplying fixed-address it is important that the address assigned is exclusive of any ranges that have been declared. Otherwise it may be possible for 2 different hosts to receive the same address.}} | {{Admon/tip | Avoiding IP Address Conflicts | When supplying fixed-address it is important that the address assigned is exclusive of any ranges that have been declared. Otherwise it may be possible for 2 different hosts to receive the same address.}} | ||
− | <ol><li value="3">Start your service and test the address assignment by releasing your current address on | + | <ol><li value="3">Start your service and test the address assignment by releasing your current address on centos2 and then requesting a new address. Use the following commands on centos2:</li> |
</ol> | </ol> | ||
::: <code>ifdown eth1</code> | ::: <code>ifdown eth1</code> |
Latest revision as of 11:18, 27 November 2019
Contents
- 1 Setting Up, Using & Maintaining a DHCP Server
- 1.1 Overview
- 1.2 Objectives
- 1.3 Required Materials (Bring to All Labs)
- 1.4 Prerequisites
- 1.5 Linux Command Online Reference
- 1.6 Resources on the web
- 1.7 Install and Configure a DHCP Server
- 1.7.1 Lab Preparation
- 1.7.2 Investigation 1: How do you install the DHCP Server?
- 1.7.3 Investigation 2: What configuration options and directives need to be set in dhcpd.conf?
- 1.7.4 Investigation 3: How do I configure dhcpd settings to be applied to all subnets?
- 1.7.5 Investigation 4: How do I configure dhcpd to provide IP configuration to my virtual network?
- 1.7.6 Investigation 5: How do I test my dhcpd service on my virtual network?
- 1.8 Obtaining Lease Information & Lease Permanent IP Address
- 1.9 Completing the lab
- 1.10 Preparing for Quizzes
Setting Up, Using & Maintaining a DHCP Server
Overview
- In this lab, you will learn how to setup, and run a DHCP server on your centos3 machine, and then test-out the DHCP server by setting up your other VMs to receive an IP addresses from the DHCP server.
Objectives
- To install, configure, and test ISC's DHCP Server.
- To obtain log information from DHCP server including lease address information.
- To lease the same IP address every-time from VM boot-up (instead of having DHCP server randomly assign IP address).
Required Materials (Bring to All Labs)
- CentOS 6.5 x86_64 Live DVD
- CentOS 6.5 x86_64 Installation DVD1
- SATA Hard Disk (in removable disk tray)
- USB Memory Stick
- Lab Logbook
Prerequisites
- Completion and Instructor "Sign-off" of Lab 7: OPS235 Lab 7 - CentOS6
Linux Command Online Reference
Each Link below displays online manpages for each command (via http://linuxmanpages.com):
Networking Utilities: | Additional Utilities: | Configuration Files: |
Resources on the web
Additional links to tutorials and HOWTOs:
Install and Configure a DHCP Server
Lab Preparation
Investigation 1: How do you install the DHCP Server?
- To check that you have
dhclient
installed, enter the command:
-
rpm -q dhclient
-
- If the package is not installed, you will get the message "package dhclient is not installed", otherwise, you will get the version information of the rpm package. Install the
dhclient
package if it was not installed. - Check to see if the dhcp server package is installed. If not - install it.
- Enter the command to list all the files installed from the DHCP server package.
- What file appears to be a sample configuration file?
- Copy the sample
dhcpd.conf
file to the/etc/dhcp
directory making sure it is named/etc/dhcp/dhcpd.conf
Answer the Investigation 1 observations / questions in your lab log book.
Investigation 2: What configuration options and directives need to be set in dhcpd.conf?
- Study the man pages of
dhcpd
,dhcpd.conf
,dhcp-options
, anddhcpd.leases
and make notes in your log book. In particular, look up the meaning and possible value(s), if any, for the following configuration options:
-
broadcast-address
-
default-lease-time
-
max-lease-time
(How is this different fromdefault-lease-time
?) -
domain-name
-
domain-name-servers
-
fixed-address
-
group
-
hardware
-
host
-
host-name
-
range
-
routers
-
subnet
-
subnet-mask
-
- Study the sample
dhcpd.conf
file to see examples of how these options are used.
Answer the Investigation 2 observations / questions in your lab log book.
Investigation 3: How do I configure dhcpd settings to be applied to all subnets?
- Edit
/etc/dhcp/dhcpd.conf
and examine the top section of the file. - Make the following changes to the global settings:
-
domain-name
should be set to ops235.org -
domain-name-servers
should be set to 192.168.235.1 -
default-lease-time
should be set to 20 minutes -
max-lease-time
should be set to 1 hour
-
- Save and exit your editing session.
Answer the Investigation 3 observations / questions in your lab log book.
Investigation 4: How do I configure dhcpd to provide IP configuration to my virtual network?
- Edit
/etc/dhcp/dhcpd.conf
for a second time, and add a new subnet delcaration for your virtual network - The network address is 192.168.235.0/255.255.255.0 and the range of host addresses should be from 51 to 60
- Also add a default gateway for the virtual network of 192.168.235.1
- Save your editing session, and exit the text editor.
- Open another terminal window (ssh into centos3 from the centos host as user root) and issue the following command:
-
tail -f /var/log/messages
-
- This will show you the last 10 lines of
/var/log/messages
continue to display new lines as they are added to the log. - In your original terminal prompt attempt to start the
dhcpd
service. - You should see new lines being added to the messages file.
- If the
dhcpd
service fails to start any error messages will be logged in the messages file. Read the errors and attempt to fix your configuration file. - If the
dhcpd
service starts successfully you should see success messages in the log. - If your
dhcpd
service starts successfully, try to generate errors by editing the configuration file and introduce an error by removing a semicolon or closing curly bracket. - Restart your
dhcpd
service and observe the error messages generated. This is good practice to learn how to trouble-shoot and solve dhcpd errors. - Make certain that you have corrected those errors, and that your dhcpd service works properly.
Answer the Investigation 4 observations / questions in your lab log book.
Investigation 5: How do I test my dhcpd service on my virtual network?
- On a centos3 terminal window make sure that the command
tail -f /var/log/messages
is running. - On your centos2 VM, change the configuration of eth0 (or your interface name) to receive dynamic address configuration.
- Save your changes and restart the
NetworkManager
service. - Observe the messages that get logged. You should see output similar to the following:
Mar 24 13:28:24 centos3 dhcpd: DHCPDISCOVER from 52:54:00:61:00:e7 via eth2 Mar 24 13:28:25 centos3 dhcpd: DHCPOFFER on 192.168.235.51 to 52:54:00:61:00:e7 via eth2 Mar 24 13:28:25 centos3 dhcpd: DHCPREQUEST for 192.168.235.51 (192.168.235.13) from 52:54:00:61:00:e7 via eth2 Mar 24 13:28:25 centos3 dhcpd: DHCPACK on 192.168.235.51 to 52:54:00:61:00:e7 via eth2
- On centos2, confirm the IP address assignment using
ifconfig
Answer the Investigation 5 observations / questions in your lab log book.
Obtaining Lease Information & Lease Permanent IP Address
Investigation 6: Where does the dhcp server store a record of leased addresses?
- If your centos3 DHCP server successfully issued the proper IP address configuration values to centos2, check the file called
/var/lib/dhcpd/dhcpd.leases
- You should see contents similar to:
lease 192.168.235.51 { starts 3 2010/03/24 17:28:25; ends 3 2010/03/24 17:48:25; cltt 3 2010/03/24 17:28:25; binding state active; next binding state free; hardware ethernet 52:54:00:61:00:e7; }
- On the client centos2 check the contents of the
/var/lib/dhclient
directory. The files in this directory is where the dhclient stores its record of leases.
Answer the Investigation 6 observations / questions in your lab log book.
Investigation 7: How can I lease the same address every time?
- Make certain that you are located in your centos3 virtual machine.
- Create a host declaration for centos2. Make sure you record the correct
hardware ethernet
setting that corresponds to the MAC address of the interface in centos2. - Give it the fixed-address 192.168.235.12
- Start your service and test the address assignment by releasing your current address on centos2 and then requesting a new address. Use the following commands on centos2:
-
ifdown eth1
-
ifup eth1
-
- Confirm that you received the fixed address you were supposed to.
Answer the Investigation 7 observations / questions in your lab log book.
Completing the lab
Arrange proof of the following on the screen:
- DHCP server log file showing a lease occuring
- DHCP server configuration file showing subnet and host declaration
- DHCP server lease file
- DHCP client lease file
Preparing for Quizzes
- What protocol and port does dhcp use?
- What file is used to configure dhcpd?
- Can a dhcp server also be a dhcp client?
- What is the difference between max-lease-time and default-lease-time?
- What unit of measurement does default-lease-time require?
- What dhcp option is used for configuring a default gateway?
- What is the parameter range in the DHCP server configuration file used for?
- What is the purpose of a dhcp relay agent?
- Why might a dhcp relay agent be required?