Configurando o vagrantfile para "public network" com DHCP a VM não sobe.
Fica perguntando qual a interface deve ser usada em modo bridge.
Porém não é dada nenhuma opção de interface.
Vou colocar a tela completa:
$ vagrant up
Bringing machine 'default' up with 'virtualbox' provider...
==> default: Importing base box 'ubuntu/bionic64'...
==> default: Matching MAC address for NAT networking...
==> default: Checking if box 'ubuntu/bionic64' version '20200930.0.0' is up to date...
==> default: Setting the name of the VM: bionic_default_1602086255615_89977
==> default: Fixed port collision for 22 => 2222. Now on port 2200.
==> default: Clearing any previously set network interfaces...
==> default: Available bridged network interfaces:
==> default: When choosing an interface, it is usually the one that is
==> default: being used to connect to the internet.
==> default:
default: Which interface should the network bridge to?
Meu vagrantfile:
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.network "forwarded_port", guest: 80, host: 8090
config.vm.network "public_network"
end