Changes

Jump to: navigation, search

OPS235 Lab 8

2,021 bytes added, 00:13, 11 September 2019
no edit summary
= LAB PREPARATION =
<div style="page-break-before:always"></div>
{{Admon/caution|DO NOT START THIS LAB BEFORE GETTING LABS 1-7 CHECKED OFF|'''This lab will change some system values that make previous lab checks fail. For best results, have your professor check off Labs 1-7 before proceeding.'''}}
===Overview===
[http://linux.die.net/man/8/dhcpd dhcpd]<br>
[http://man7.org/linux/man-pages/man8/ifconfig.8.html ifconfig]<br><br>
Managing Services<br>
[http://www.dsm.fordham.edu/cgi-bin/man-cgi.pl?topic=systemctl systemctl]<br><br>
Additional Utilities<br>
[http://man7.org/linux/man-pages/man1/tail.1.html tail]<br>
[http://www.centos.org/docs/5/html/Deployment_Guide-en-US/s1-dhcp-configuring-server.html Configuring a DHCP Server ]
|}
 
=INVESTIGATION 1: INSTALL AND CONFIGURE A DHCP SERVER=
|- valign="top"
|width="8%" | <u>'''O'''</u>ffer:
|width="40%" |The DHCP server receives the request from the client, '''reserves an IP ADDRESS''' for the client and sends a '''DHCPOFFER'''to the client.
|- valign="top"
|width="8%" | <u>'''R'''</u>equest:
|width="40%" |The After receiving a '''DHCPOFFER''', the DHCP server client broadcasts a message '''request for acceptance''' ('''DHCPREQUEST''') to all DHCP servers and, but also in doing so, the DHCP client notifies other all DHCP serverswhich DHCP server this DHCP client is requesting acceptance from.
|- valign="top"
|width="8%" | <u>'''A'''</u>cknowledgement:
|width="40%" |The client DHCP server identified in the '''DHCPREQUEST''' sends a '''message of acceptance to the serverclient'''. In turn, and the client then receives from the that DHCP server a '''packet of information''' containing the lease duration and other configuration information.
|}
:'''Perform the following steps:'''
# Perform this section in Launch your c7host machine and your centos3 VM.# Switch to your '''centos3''' VM.<br><br>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.<br><br>
# To check that you have <b>dhclient</b> installed, enter the command:
#:: <b><code><span style="color:#3366CC;font-size:1.2em;">rpm -q dhclientqla dhcp</span></code></b># If the package is not installed, you will get the message ''"package dhclient is not installed"'', otherwisethere are no files displayed, you will get the version information of the rpm package. Install the <b>dhclient</b> package if it was not installed.# Issue then issue the following command to install the dhcp server package: <b><code><span style="color:#3366CC;font-size:1.2em;">yum install dhcp</span></code></b># Enter Again, enter the command to list all the files installed from the DHCP server package by issuing the command: <b><code><span style="color:#3366CC;font-size:1.2em;">rpm -qla dhcp</span></code></b># which Which file appears to be a sample (example) '''configuration file for dhcpd.conf'''?
# Copy the '''dhcpd.conf.example''' file to the '''/etc/dhcp''' directory making sure it is named: '''/etc/dhcp/dhcpd.conf'''
# Study the sample '''dhcpd.conf''' file to see examples of how these options are used.
# Edit '''/etc/dhcp/dhcpd.conf''' and examine the top section of the file.
# Below the comment labeled: '''"option definitions common to all supported networks"'''. Change the existing global options with the <u>newer values</u> shown below:<br><br>'''option domain-name''' '''"ops235.org";'''<br>'''option domain-name-servers''' '''192.168.235.1;'''<br>'''default-lease-time''' '''1200;'''<br>'''max-lease-time''' '''3600;'''<br><br>'''Note:''' Any values for time are stated in seconds.<br><br>
# View your editing sessions for typos (check for missing semicolons), then save and exit your editing session.<br><br>
|}
 
=== Part 3: Configuring DHCP Server for Static IP Addresses===
# Now, add a new subnet delcaration for your virtual network:<br><br>The network address is: '''192.168.235.0/255.255.255.0'''<br>range of host addresses should be from: '''51 to 60'''<br>default gateway (routers) for the virtual network is: '''192.168.235.1'''<br><br>
# Save your editing session, and exit the text editor.
<ol><li value="6">Open another terminal window ('''Tip: ssh''' into your '''centos3''' VM from your '''c7host''' as '''root''') and issue the following command:<br><b><code><span style="color:#3366CC;font-size:1.2em;">tail -f /var/log/messages</span></code></b><br><br>(This will show you the last lines of '''/var/log/messages''' continue to display new lines as they are added to the logfor confirmation and troubleshooting.)<br><br></li>
<li>In your '''centos3''' terminal, attempt to start the '''dhcpd''' service.</li>
<li>You should see new lines being added to the messages file.</li>
# Use your '''centos1''' and '''centos3''' VMs for this section.
# On your '''centos3''' terminal window (via ssh from your c7hsot machine) make sure that the command<br><b>tail -f /var/log/messages</b> is running.
# On your '''centos1''' VM, Graphically change the configuration of '''eth0''' (or your interface name) to receive dynamic address configuration (i.e. via graphical application, for IVP4 tab, change ''Address'' from '''Manual''' to '''DHCP''', and '''Apply''' settings)<br>([http://zenit.senecac.on.ca/wiki/index.php/OPS235_Lab_6_-_CentOS7#Part_2:_Configuring_VM_Network_Setup_Graphically_.28system-config-network.29 Refer to Lab6, Investigation1, Part2]).<br><br>Note: if you are configuring via command line, make certain to restart the network for centos1.
# Logout and restart your '''centos1''' VM.
# Observe the messages that get logged from the tail -f command as your centos1 VM starts. You should see output similar to the following:<br><br>
::<span style="font-family:courier;">Jun 27 22:09:50 centos3 dhcpd: DHCPACK on 192.168.235.51 to 52:54:00:7c:85:13 (centos1) via eth0<br><br></span>
<ol>
<li value="6">On your '''centos1'''VM, confirm open a terminal, andconfirm the IP address assignment using <b><code><span style="color:#3366CC;font-size:1.2em;">ifconfigeth0</span></code></b></li>
<li>Has the IP Address changed? If so, how has the IP Address been assigned according to the '''dhcpd.conf''' file settings?</li>
</ol>
'''Answer INVESTIGATION 1 observations / questions in your lab log book.'''
 
=INVESTIGATION 2: OBTAINING LEASE & LEASE PERMANENT IP ADDRESS INFORMATION=
# Remain in your '''centos1''' and '''centos3''' VMs for this section.
# If your '''centos3''' DHCP server successfully issued the proper IP address configuration values to '''centos1''', check the file called:<br>'''/var/lib/dhcpd/dhcpd.leases''' in your <u>'''centos3''' VM</u>. You should get the similar contents:<br>::<span style="font-family:courier;"> lease 192.168.235.51 {</span>::<span style="font-family:courier;">&nbsp; &nbsp;starts 1 2016/06/28 01:07:00;</span>::<span style="font-family:courier;">&nbsp; &nbsp;ends 1 2016/06/28 01:27:00;</span>::<span style="font-family:courier;">&nbsp; &nbsp;cltt 1 2016/06/28 01:07:00;</span>::<span style="font-family:courier;">&nbsp; &nbsp;binding state active;</span>::<span style="font-family:courier;">&nbsp; &nbsp;next binding state free;</span>::<span style="font-family:courier;">&nbsp; &nbsp;rewind binding state free;</span>::<span style="font-family:courier;">&nbsp; &nbsp;hardware ethernet 52:54:00:ba:75:a8;</span>::<span style="font-family:courier;">}</span><ol><li value="3">On the client '''centos1''' check the contents of the <b>/var/lib/dhclient</b> directory. The files in this directory is where the dhclient stores its record of leases.<br><br> '''NOTE:''' If there are no files, then in a shell as '''root''' in your '''centos1''' VM issue the command: <b><code><span style="color:#3366CC;font-size:1.2em;">dhclient eth0</span></code></b><br>Then check to see if there is file containing lease information in that directory. You should get the similar contents:<br></li></ol>
::<span style="font-family:courier;"> lease {</span>
::<span style="font-family:courier;">&nbsp; &nbsp;interface "eth0";</span>
::<span style="font-family:courier;">&nbsp; &nbsp;expire 2 2016/06/28 02:34:22;</span>
::<span style="font-family:courier;"> }</span>
<ol><li value="3">On the client '''centos1''' check the contents of the <b>/var/lib/dhclient</b> directory. The files in this directory is where the dhclient stores its record of leases.<br><br> '''NOTE:''' If there are no files, then in a shell as root in your centos1 VM issue the command: <b><code><span style="color:#3366CC;font-size:1.2em;">dhclient eth0</span></code></b><br>Then check to see if there is file containing lease information in that directory.<br><br></li></ol>
'''Answer Part 1 observations / questions in your lab log book.'''
# Remain in your '''centos1''' and '''cento3''' VMs for this section.
# Make certain that you are located in your '''centos3''' virtual machine.
# Edit the dchpd.conf file and make the following changes:<ul><li> Create a <u>'''host '''</u> declaration with the name: '''centos1'''<br>(tip: search for the key-word '''centos1"host"'''in the text editor to see an example). Make sure you record the correct <code/li><li>Set the '''hardware ethernet</code> setting that corresponds to ''' option for the MAC address of the interface in eth0 on your '''centos1'''VM.# Give it </li><li>Set the '''fixed-address ''' option to the ip address: '''192.168.235.42'''<br/li></ul><br>'''Note:''' 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.<br><br><ol><li value="54">Start your Restart the dhcpd service and test the address assignment by releasing your current address on '''centos1''' and then requesting a new address. Use the following commands on '''centos1''':</li>
</ol>
::: <b><code><span style="color:#3366CC;font-size:1.2em;">ifdown eth1eth0</span></code></b>::: <b><code><span style="color:#3366CC;font-size:1.2em;">ifup eth1eth0</span></code></b><ol><li value="65">Confirm that you received the fixed address you were supposed to.</li>
</ol>
:'''Perform the Following Steps:'''
#You Make certain ALL of your '''centos1''' and '''centos3''' VMs are <u>running.# Switch to your '''c7host''' VM and '''su -''' into root.# Change to the '''NOT/root/bin'''directory.# Issue the Linux command: <b><code><span style="color:#3366CC;font-size:1.2em;">wget https://uict.senecacollege.ca/~ops235/lab8/lab8-check.bash</span> required to download </code></b># Give the '''lab8-check.bash''' file execute permissions (for the file owner).# Run the shell script and if any warnings, make fixes and re-run a checking shell script for this final labuntil you receive "congratulations" message.<br><br>
#Arrange proof of the following on the screen:<br><blockquote><span style="color:green;font-size:1.5em;">&#x2713;</span> '''centos1''' VM:<blockquote><ul><li>'''ifconfig eth0''' shows IP address '''192.168.235.42'''</li><li>DHCP client lease file</li></ul></blockquote><span style="color:green;font-size:1.5em;">&#x2713;</span> '''centos3''' VM:<blockquote><ul><li>DHCP server log file showing a lease occuring</li><li>DHCP server configuration file showing subnet and host declaration</li><li>DHCP server lease file</li></ul></blockquote><span style="color:green;font-size:1.5em;">&#x2713;</span> '''Lab8''' log-book filled out.
[[Category:OPS235]]
[[Category:OPS235 Labs]]
[[Category:CentOS 7]]
[[Category:SSD2]]

Navigation menu