Skip to content

Commit 1db9954

Browse files
committed
Merge pull request #2157 from mboersma/use-vagrant-virtio
feat(Vagrantfile): use "virtio" network devices in virtualbox
2 parents 5e780a9 + 0b21d49 commit 1db9954

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Vagrantfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ Vagrant.configure("2") do |config|
5454
end
5555

5656
config.vm.provider :virtualbox do |vb, override|
57-
# Use AMD Lance nic which seems less problematic than Intel
58-
vb.customize ["modifyvm", :id, "--nictype1", "Am79C973"]
59-
vb.customize ["modifyvm", :id, "--nictype2", "Am79C973"]
57+
# Use paravirtualized network adapters
58+
vb.customize ["modifyvm", :id, "--nictype1", "virtio"]
59+
vb.customize ["modifyvm", :id, "--nictype2", "virtio"]
6060
end
6161

6262
config.vm.provider :virtualbox do |v|

0 commit comments

Comments
 (0)