Skip to content

Instantly share code, notes, and snippets.

@thomascate
Created June 18, 2014 16:39
Show Gist options
  • Save thomascate/e898f59f2bb7d02c55dd to your computer and use it in GitHub Desktop.
Save thomascate/e898f59f2bb7d02c55dd to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "cent5" do |cent5|
cent5.vm.box = "Cent5"
cent5.vm.synced_folder "/Users/thomascate/Python", "/mnt/Python"
end
config.vm.define "ubuntu1204", primary: true do |ubuntu1204|
ubuntu1204.vm.box = "Ubuntu1204"
ubuntu1204.vm.hostname = "Ubuntu1204"
ubuntu1204.vm.network "private_network", ip: "192.168.255.5"
end
config.vm.define "ubuntu1404" do |ubuntu1404|
ubuntu1404.vm.box = "Ubuntu1404"
ubuntu1404.vm.hostname = "Ubuntu1404"
ubuntu1404.vm.network "private_network", ip: "192.168.255.6"
ubuntu1404.vm.network "private_network", ip: "172.16.255.6"
end
config.vm.define "hashcat" do |hashcat|
hashcat.vm.box = "Ubuntu1404"
hashcat.vm.hostname = "hashcat"
hashcat.vm.provider :virtualbox do |vb|
vb.customize ["modifyvm", :id, "--memory", "2048"]
vb.customize ["modifyvm", :id, "--cpus", "6"]
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment