Skip to content

Instantly share code, notes, and snippets.

@awaxa
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save awaxa/648af9229d2b17d7bf5b to your computer and use it in GitHub Desktop.
Save awaxa/648af9229d2b17d7bf5b to your computer and use it in GitHub Desktop.
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure('2') do |config|
config.vm.box = "boxname"
config.vm.network :public_network
config.vm.provider "vmware_fusion" do |v|
v.vmx["ethernet1.present"] = "TRUE"
v.vmx["ethernet1.addressType"] = "static"
v.vmx["ethernet1.address"] = "DE:AD:BE:EF:38:63"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment