Accept or reject network connections to system services using firewalld rules.
Task 1:
You will configure a server running on your system serving content using a non standard port (82)
Solution:
systemctl status httpd #check port
vim /etc/httpd/conf/httpd.conf #change from 80 to 82
---
semanage port -l | grep 80
semanage port -a -t http_port_t tcp 82
sysstemctl restart httpd
systemctl enable httpd