Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
vagrant:start [2020/12/18 12:25] – [Tipps & Tricks] jsvagrant:start [2020/12/18 13:50] (current) js
Line 13: Line 13:
   * [[https://app.vagrantup.com/boxes/search|Vagrant Boxes]] - find vagrant boxes   * [[https://app.vagrantup.com/boxes/search|Vagrant Boxes]] - find vagrant boxes
  
-====== Tipps & Tricks ======+  * [[vagrant:tipps|Vagrant Tipps & Tricks]] - a list of solved problems
  
-  * [[https://github.com/hashicorp/vagrant/issues/12045|Can't connect to linux box]] - ssh login to local loopback 127.0.0.1 is not working. \\ \\ Add to local global config file <wrap em>~/.vagrant.d/Vagrantfile</wrap> the following<code bash>Vagrant.configure("2") do |config| 
-  config.vm.provider : vmware_fusion do |v| 
-    v.ssh_info_public = true 
-  end 
-end</code>