System Specifications and Setup
Traveler02-hanne
A WAN based road warrior user running Windows 10. (this replaces the linux rw01)
Adapter
WAN
Find this in
VM hardware
Make sure machine is OFF before you do this
Hostname
Open Settings
Select System
Select About
Select Rename this PC
Enter a new name
Select Next
Choose to restart your computer now or later
Make a named user on windows:
Open Settings
Select Accounts
Select Family & other users
Under Other users, click Add someone else to this PC
Add user to local admin group on windows:

Go to Settings > Network & Internet > Ethernet (or Wi-Fi) > Change adapter options > right-click your network adapter > Properties > Internet Protocol Version 4 (TCP/IPv4) > Properties, then select "Use the following IP address"

Other Specifications
DHCP02-hanne
A LAN based dhcp server running Ubuntu
Adapter
Set to LAN
Find this in
VM hardware
Make sure machine is OFF before you do this
Hostname
sudo hostnamectl set-hostname rw01-hanne
User
sudo adduser hanne
# only sudo can add a user
sudo usermod -aG sudo hanne
# adds the user to the admin group
IP Address
sudo nano /etc/netplan/99_config.yaml
network:
version: 2
renderer: networkd
ethernets:
ens160: (make sure you change this)
addresses:
- 10.0.17.43/24 (this should be your IP address)
routes:
- to: default
via: 10.0.17.2 (this is your default gateway)
sudo netplan apply
Other Specifications
Edge02-hanne
A vyOS Firewall with three interfaces (WAN, DMZ, LAN). You will need to add an interface using vCenter. (this replaces fw01)
Adapter
WAN
DMZ
LAN
Find this in
VM hardware
Make sure machine is OFF before you do this

Hostname
configure
set system host-name edge02-hanne (this should be whatever hostname you choose)
commit
save
exit
IP Address
Nginx02-hanne
A DMZ based nginx web server running Ubuntu (this replaces web01 and apache)
Adapter
DMZ
Find this in
VM hardware
Make sure machine is OFF before you do this
Hostname
sudo hostnamectl set-hostname rw01-hanne
User
sudo adduser hanne
# only sudo can add a user
sudo usermod -aG sudo hanne
# adds the user to the admin group
IP Address
sudo nano /etc/netplan/99_config.yaml
network:
version: 2
renderer: networkd
ethernets:
ens160: (make sure you change this)
addresses:
- 10.0.17.43/24 (this should be your IP address)
routes:
- to: default
via: 10.0.17.2 (this is your default gateway)
Mgmt02-hanne
should be able to surf the internet
should be able to navigate to nginx02
mgmt01 should be able to ssh to nginx01
Wsk01-hanne
should be able to surf the internet
should be able to navigate to nginx02
Use DHCP addressing
Last updated