Tech Journal Week 4 - ArtTHEbard/SYS255FA19-Notes GitHub Wiki
Lab
- I the lab today, I configured my dhcp01 VM at act as a dynamic DHCP server. I fist installed PuTTY (www.chiark.greenend.org.uk) and used it to log in to the dhcp01 VM from the ad01 VM. once inside, I used yum to install dhcp services (yum install dhcp). I configured the DHCP config file (/etc/dhcp/dhcpd.conf) and set it up to my domain.
- Once the DHCP server was set up, I switched to my WKS01 VM and switched my IP conf from static to dynamic. Using the commands ipconfig, ipconfig /release, ipconfig/renew, I tested that my DHCP server was functional. I observed this in WIreshark by using the udp.port==67 filer.
config add option routers 10.0.5.2; option subnet-mask 255.255.255.0; option domain-name sam.local; option domain-name-servers 10.0.5.5 range 10.0.5.100 10.0.5.150;
Issues
- My one issue in this lab was that I mistyped my config file, and dhcp broke. BUt other than that, I was all good.