Connecting to Vagrant with the Plain SSH Command
vagrant ssh-config command is used to output a valid SSH configuration
After the earlier Vagrant does not respond , it would be a problem if the vagrant ssh command became unusable, so — belatedly — I set up connecting over plain SSH.
Connecting with plain ssh rather than using vagrant ssh seems to be faster and more responsive
In my own Vagranfile the connection is already bridged, and the default port is 2222
Copy config.vm.network "public_network", ip: "192.168.1.10", bridge: "en0: Ethernet" If you have not configured the network part, write it as follows
[Read More]