Lab 2.2 ‐ Syslog Organization - devinziegler/Devin-Tech-Journal GitHub Wiki

Lab Overview

This lab involved setting up a new machine mgmt01. This will also go over setting up chrome remote desktop as well as ssh-keygen.

mgmt01 config

mgmt01 is a LAN machine and should be configured with such interface. This is a list of things that need to be configured on mgmt01

  • Update networking

This will be done though netplan because this is a Debian based system. The networking config for this system can be found here:

SSH Keygen refresher

  1. Create a keypair with the following command and follow instructions:
ssh-keygen -t rsa
  1. Copy the public key to a remote system wishing to connect using this command:
ssh-copy-id -i ~/.ssh/id/id_rsa.pub <user>@<remote_system_ip>
  1. The remote machine should now ask for a passphrase instead of a password when connecting through SSH.
⚠️ **GitHub.com Fallback** ⚠️