Skip to content

Commit 0b21d49

Browse files
committed
feat(Vagrantfile): use "virtio" network devices by default
1 parent f5105e1 commit 0b21d49

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)