vagrant up eos freezes system completely, not able to bring up eos
0
I am just learning to use the python NAPALM library. The tutorials suggest set up a lab using VirtualBox and Vagrant, with a virtual Arista device I am not able to bring up eos. I am having the following configuration : ubuntu : 16.04 LTS, OS type 32-bit virtual box : Version 5.2.22 r126460 (Qt5.6.1) Vagrant 2.2.1 vEOS-lab-4.21.1.1F-virtualbox My Vagrantfile contents are as follows : VEOS_BOX = "vEOS-lab-4.21.1.1F-virtualbox" Vagrant.configure(2) do |config| config.vm.provider "virtualbox" do |vb| vb.gui = true end config.vm.define "base" do |base| base.vm.box = "hashicorp/precise64" base.vm.network :forwarded_port, guest: 22, host: 12200, id: 'ssh' base.vm.network "private_network...
