~# cat /etc/netplan/50-cloud-init.yaml
# This file is generated from information provided by
# the datasource. Changes to it will not persist across an instance.
# To disable cloud-init's network configuration capabilities, write a file
# /etc/cloud/cloud.cfg.d/99-disable-network-config.cfg with the following:
# network: {config: disabled}
network:
ethernets:
enp1s0f0:
addresses: [192.184.16.92/24,192.184.16.242/32]
gateway4: 192.184.14.1
nameservers:
addresses:
- 1.1.1.1
Here is my VM config:
# cat Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
# /*=====================================
# = FREE VERSION! =
# =====================================*/
# This is the free (still awesome) version of Scotch Box.
# Please go Pro to support the project and get more features.
# Check out https://box.scotch.io to learn more. Thanks
config.vm.box = "scotch/box"
config.vm.network "public_network", ip: "192.184.16.242"
config.vm.hostname = "scotchbox"
config.vm.synced_folder ".", "/var/www", :mount_options => ["dmode=777", "fmode=666"]
# Optional NFS. Make sure to remove other synced_folder line too
#config.vm.synced_folder ".", "/var/www", :nfs => { :mount_options => ["dmode=777","fmode=666"] }
end
####################
How in the world do I SSH to the 192.184.16.242 scotch box from the public internet?
Is it even possible?
--
This mailing list is governed under the HashiCorp Community Guidelines - https://www.hashicorp.com/community-guidelines.html. Behavior in violation of those guidelines may result in your removal from this mailing list.
GitHub Issues: https://github.com/mitchellh/vagrant/issues
IRC: #vagrant on Freenode
---
You received this message because you are subscribed to the Google Groups "Vagrant" group.
To unsubscribe from this group and stop receiving emails from it, send an email to vagrant-up+...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/vagrant-up/5eb85d1e-9df6-49d4-8853-f478a3f961f4%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
addresses: [192.184.16.92/24,192.184.16.242/32]
gateway4: 192.184.14.1
is incorrect. It doesn't appear that these two addresses can reach the gateway. Hence why ingress SSH connection cannot be established.
addresses: [192.184.16.92/16,192.184.16.242/16]
gateway4: 192.184.14.1