Skip to content

Commit

Permalink
Trying HyperV
Browse files Browse the repository at this point in the history
  • Loading branch information
tbarbette committed Jan 24, 2024
1 parent 9f2bde6 commit 7e0a1bf
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions mininet/fastclick/Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,17 @@ Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/focal64"

config.vm.provider "virtualbox" do |v|
v.cpus = 3
v.memory = 3072
v.cpus = 4
v.memory = 4096
v.customize [ "modifyvm", :id, "--uartmode1", "disconnected" ]
end

config.vm.provider "hyperv" do |h|
h.enable_virtualization_extensions = true
h.linked_clone = true
h.cpus = 4
h.memory = 4096
h.maxmemory = 4096
end

config.vm.synced_folder "../../conf", "/conf"
Expand Down

0 comments on commit 7e0a1bf

Please sign in to comment.