Configure networking using nmtui as done in the networking section of Lab 03
with the IP Address of 10.0.5.4/24
a hostname of web01-jude
and the rest is the same except the DNS is 10.0.5.6
Install httpd with the using yum install httpd
enable httpd using systemctl
start httpd using systemctl
Configure the sshd_config located in /etc/ssh/sshd_config
for the permitrootlogin option change yes to no
then restart sshd using systemctl and then log in with the host that was created
if all went well ad01 or wsk03 should be able to ssh to web01-jude
to add ports to the firewall us the command firewall-cmd --zone=public --add-port=80/tcp --permanent and firewall-cmd --zone=public --add-port=433/tcp --permanent
similarly to add HTTP and https as services use firewall-cmd --zone=public --add-service=http --permanent and firewall-cmd --zone=public --add-service=https --permanent
once that is done reload the firewall using firewall-cmd --reload