Assignment VM Cleanup - LouisNajdek/sec440 GitHub Wiki

DEMONSTRATION VIDEO


##Vyos1 Configurations

Delete the current high availability configurations:

delete high-availability vrrp

Change the ethernet ip addresses for eth1 and eth2

delete interfaces ethernet eth1 address INSERT_ADDRESS_HERE

set interfaces ethernet eth1 address _INSERT_ADDRESS_HERE

Repeat for eth2

Then, change the port forwarding configurations for your nat destination rule.

set nat destination rule 10 translation address 10.0.6.100

Rocky1 Configurations

Configure networking to be on the OPT network, and to have the ip of 10.0.6.100.

Web server installation and configuration

Install nginx

sudo yum install nginx

Confirm installation then start with

sudo systemctl start nginx

Adjust the firewall settings

firewall-cmd --permanent --add-service=http

firewall-cmd --reload

Test accessibility to web server from the LAN, then test from the WAN.