Jack Moore

Email: jack(at)jmoore53.com
Project Updates

Homelab Network

02 Nov 2020 » automation, system configuration, sysadmin, homelab

Getting to the Switch

Physical Layout (as a description):

  • Laptop connected to wifi
  • Workstation conneced to wifi
  • Switch connected to Workstation with a cat6 cable

Opened a reverse proxy from my current workstation to the workstation connected to the switch.

ssh -D 1337 -q -C -N -f -l jack -i ~/.ssh/id_rsa 192.168.200.55

Had to configure the wired connection from the manjaro workstation with:

nmcli con show
sudo nmcli con mod "Connection name" ipv4.addresses xxx.xxx.xxx.xxx/24 ipv4.dns x.x.x.x ipv4.gateway x.x.x.x

or

nmcli dev show
nmcli con delete eno2
nmcli con add type ethernet con-name "Wired Connection 1" ifname eno2 ip4 192.168.1.2/24
sudo nmcli con reload
# or
sudo reboot

Enable SSH

ssh -l jack -oKexAlgorithms=+diffie-hellman-group1-sha1 192.168.1.254
© Jack Moore