Skip to content

aglasson/vagrant-nix-jumpbox

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Vagrant Nix Jumpbox

https://github.com/aglasson/vagrant-nix-jumpbox

Managing Linux systems from Windows made easy.
Why not WSL? WSL is great but it's not the most portable environment if you need to reinstall, change computers or have the ability to "start fresh". Vagrant gives you a local Linux environment you can spin up on-demand with a consistent (from code) environment ready to use.

Features

  • Spins up a Vagrant Ubuntu VM on Windows
  • Adds your account (based on windows username) and your authorised keys to base vagrant VM
  • Adds your private key to VM for SSH'ing to other systems

Installation

Vagrant Setup

Only if vagrant not already installed
  • Install Virtual Box, Vagrant's preferred/default provider (hypervisor), or your desired Vagrant provider (hypervisor)
  • Install Vagrant
  • vagrant up will usually prompt for a username and password for SMB. This is required. You can use your account with local admin privileges however I suggest adding a new local user (non-admin) with at least read privileges to the directory containing the Vagrantfile.

SSH Keys

  • This utility expects the following SSH keys in directory %USERPROFILE%\Documents\Keys\
    • %USERNAME%_private.ssh - Your OpenSSH format private key
    • %USERNAME%_public.pub - Your OpenSSH authorized_keys format public key
  • I recommend securing this directory with Windows EFS Folder Encryption for key safety, default EFS settings are fine as long as you're also keeping your keys in your prefered credential vault (eg. KeyPass) elsewhere