# -*- mode: ruby -*- # vi: set ft=ruby : Vagrant.configure("2") do |config| config.vm.define "client" do |client| client.vm.box = "ubuntu/jammy64" client.vm.network "private_network", ip: "192.168.56.100" client.vm.provider "virtualbox" do |vb| # Display the VirtualBox GUI when booting the machine vb.gui = true # Customize the amount of memory on the VM: vb.memory = "4096" end end config.vm.define "gateway" do |gateway| gateway.vm.box = "kalilinux/rolling" gateway.vm.network "private_network", ip: "192.168.56.10" gateway.vm.provider "virtualbox" do |vb| # Display the VirtualBox GUI when booting the machine vb.gui = true # Customize the amount of memory on the VM: vb.memory = "4096" end end end