Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 5 Next »


https://github.com/jerearista/vagrant-veos/

download the virtoal.bax vEOS from Arista website  ( https://www.arista.com/en/support/software-download  )

vagrant box add --name vEOS-lab-4.15.0F ../builds/vEOS-lab-4.15.0F-virtualbox.box vagrant box list

cd ./Document/vagrant

mkdir vEOS1
cd vEOS1
vagrant init
vagrant up
vagrant ssh




Multi-VM Environments

https://friendsofvagrant.github.io/v1/docs/multivm.html



Vagrant::Config.run do |config|
  config.vm.define :web do |web_config|
    web_config.vm.box = "web"
    web_config.vm.forward_port 80, 8080
  end

  config.vm.define :db do |db_config|
    db_config.vm.box = "db"
    db_config.vm.forward_port 3306, 3306
  end
end
  • No labels