Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Streamline private network adapter config #2793

Merged
merged 1 commit into from
May 29, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 2 additions & 3 deletions Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "ubuntu/trusty64"
config.vm.box_version = "20170619.0.0"
config.vm.hostname = "refinery"
config.vm.network "private_network", ip: "192.168.50.50"
# nic_type set to virtio to increase guest network performance (https://superuser.com/a/850389)
config.vm.network "private_network", ip: "192.168.50.50", nic_type: "virtio"

config.vm.provider "virtualbox" do |v|
v.memory = 2048
v.cpus = 1
# To increase guest network performance (https://superuser.com/a/850389)
v.customize ["modifyvm", :id, "--nictype1", "virtio"]
end

config.ssh.forward_agent = true # to enable cloning from Github over SSH
Expand Down