vagrant up eos freezes system completely, not able to bring up eos
up vote
0
down vote
favorite
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", virtualbox__intnet: "link_1", ip: "10.0.1.100"
base.vm.network "private_network", virtualbox__intnet: "link_2", ip: "10.0.2.100"
base.vm.provision "shell", inline: "apt-get update; apt-get install lldpd -y"
end
config.vm.define "eos" do |eos|
eos.vm.box = VEOS_BOX
eos.vm.network :forwarded_port, guest: 22, host: 12201, id: 'ssh'
eos.vm.network :forwarded_port, guest: 443, host: 12443, id: 'https'
eos.vm.network "private_network", virtualbox__intnet: "link_1", ip: "169.254.1.11", auto_config: false
eos.vm.network "private_network", virtualbox__intnet: "link_2", ip: "169.254.1.11", auto_config: false
end
end
When I execute vagrant up
, the system successfully starts the base, starts booting up eos, but finally freezes (is recoverable only through hard reset) after trying to do EOS initilization
.
Please help. I have tried out lot of things after reading various suggestions on the internet
python vagrant eos
add a comment |
up vote
0
down vote
favorite
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", virtualbox__intnet: "link_1", ip: "10.0.1.100"
base.vm.network "private_network", virtualbox__intnet: "link_2", ip: "10.0.2.100"
base.vm.provision "shell", inline: "apt-get update; apt-get install lldpd -y"
end
config.vm.define "eos" do |eos|
eos.vm.box = VEOS_BOX
eos.vm.network :forwarded_port, guest: 22, host: 12201, id: 'ssh'
eos.vm.network :forwarded_port, guest: 443, host: 12443, id: 'https'
eos.vm.network "private_network", virtualbox__intnet: "link_1", ip: "169.254.1.11", auto_config: false
eos.vm.network "private_network", virtualbox__intnet: "link_2", ip: "169.254.1.11", auto_config: false
end
end
When I execute vagrant up
, the system successfully starts the base, starts booting up eos, but finally freezes (is recoverable only through hard reset) after trying to do EOS initilization
.
Please help. I have tried out lot of things after reading various suggestions on the internet
python vagrant eos
add a comment |
up vote
0
down vote
favorite
up vote
0
down vote
favorite
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", virtualbox__intnet: "link_1", ip: "10.0.1.100"
base.vm.network "private_network", virtualbox__intnet: "link_2", ip: "10.0.2.100"
base.vm.provision "shell", inline: "apt-get update; apt-get install lldpd -y"
end
config.vm.define "eos" do |eos|
eos.vm.box = VEOS_BOX
eos.vm.network :forwarded_port, guest: 22, host: 12201, id: 'ssh'
eos.vm.network :forwarded_port, guest: 443, host: 12443, id: 'https'
eos.vm.network "private_network", virtualbox__intnet: "link_1", ip: "169.254.1.11", auto_config: false
eos.vm.network "private_network", virtualbox__intnet: "link_2", ip: "169.254.1.11", auto_config: false
end
end
When I execute vagrant up
, the system successfully starts the base, starts booting up eos, but finally freezes (is recoverable only through hard reset) after trying to do EOS initilization
.
Please help. I have tried out lot of things after reading various suggestions on the internet
python vagrant eos
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", virtualbox__intnet: "link_1", ip: "10.0.1.100"
base.vm.network "private_network", virtualbox__intnet: "link_2", ip: "10.0.2.100"
base.vm.provision "shell", inline: "apt-get update; apt-get install lldpd -y"
end
config.vm.define "eos" do |eos|
eos.vm.box = VEOS_BOX
eos.vm.network :forwarded_port, guest: 22, host: 12201, id: 'ssh'
eos.vm.network :forwarded_port, guest: 443, host: 12443, id: 'https'
eos.vm.network "private_network", virtualbox__intnet: "link_1", ip: "169.254.1.11", auto_config: false
eos.vm.network "private_network", virtualbox__intnet: "link_2", ip: "169.254.1.11", auto_config: false
end
end
When I execute vagrant up
, the system successfully starts the base, starts booting up eos, but finally freezes (is recoverable only through hard reset) after trying to do EOS initilization
.
Please help. I have tried out lot of things after reading various suggestions on the internet
python vagrant eos
python vagrant eos
asked Nov 20 at 3:50
user3282758
464213
464213
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
0
down vote
In general, if you see the system is freezing, you can always turn debug trace to see what is going on, it might be that the system is looping on the same command or really freezing.
vagrant up --debug
In your case, I believe the issue is with the network, you should associate IP from the private IP range so changing the IP to a private IP will solve your case and you could boot the VM
I am already running with debug on. But I am new to networking and so I am not able to understand how to implement your suggestion
– user3282758
Nov 20 at 14:03
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
0
down vote
In general, if you see the system is freezing, you can always turn debug trace to see what is going on, it might be that the system is looping on the same command or really freezing.
vagrant up --debug
In your case, I believe the issue is with the network, you should associate IP from the private IP range so changing the IP to a private IP will solve your case and you could boot the VM
I am already running with debug on. But I am new to networking and so I am not able to understand how to implement your suggestion
– user3282758
Nov 20 at 14:03
add a comment |
up vote
0
down vote
In general, if you see the system is freezing, you can always turn debug trace to see what is going on, it might be that the system is looping on the same command or really freezing.
vagrant up --debug
In your case, I believe the issue is with the network, you should associate IP from the private IP range so changing the IP to a private IP will solve your case and you could boot the VM
I am already running with debug on. But I am new to networking and so I am not able to understand how to implement your suggestion
– user3282758
Nov 20 at 14:03
add a comment |
up vote
0
down vote
up vote
0
down vote
In general, if you see the system is freezing, you can always turn debug trace to see what is going on, it might be that the system is looping on the same command or really freezing.
vagrant up --debug
In your case, I believe the issue is with the network, you should associate IP from the private IP range so changing the IP to a private IP will solve your case and you could boot the VM
In general, if you see the system is freezing, you can always turn debug trace to see what is going on, it might be that the system is looping on the same command or really freezing.
vagrant up --debug
In your case, I believe the issue is with the network, you should associate IP from the private IP range so changing the IP to a private IP will solve your case and you could boot the VM
answered Nov 20 at 8:35
Frédéric Henri
33k55283
33k55283
I am already running with debug on. But I am new to networking and so I am not able to understand how to implement your suggestion
– user3282758
Nov 20 at 14:03
add a comment |
I am already running with debug on. But I am new to networking and so I am not able to understand how to implement your suggestion
– user3282758
Nov 20 at 14:03
I am already running with debug on. But I am new to networking and so I am not able to understand how to implement your suggestion
– user3282758
Nov 20 at 14:03
I am already running with debug on. But I am new to networking and so I am not able to understand how to implement your suggestion
– user3282758
Nov 20 at 14:03
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53385955%2fvagrant-up-eos-freezes-system-completely-not-able-to-bring-up-eos%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown