I created a custom openSUSE box for vagrant following the steps given in here
The host name for my box is vagrant-opensuse-131-x64 and I packaged the box using the commands
$ vagrant package --base opensuse13.1x64-vagrant --output vagrant-opensuse-131-x64.box
$ vagrant box add mybox vagrant-opensuse-131-x64.box
I then try to run the box using the commands.
$ vagrant init mybox
$ vagrant up
The vagrant box is booting up but there is a time-out when vagrant tries to establish ssh connection. I rechecked '~/.ssh/authorized_keys` file and the network connection settings are all as mentioned in the link above.
My Vagrantfile looks like this
VAGRANTFILE_API_VERSION = "2"
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.box = "mybox"
end
Can someone help me debug what is going wrong here?