Skip to content

Commit 3624ff8

Browse files
chore: change Vagrant IP address for vbox 6.1.28 compat
1 parent eb29a88 commit 3624ff8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Vagrantfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,9 @@ Vagrant.configure('2') do |config|
1212
config.disksize.size = '50GB'
1313
config.vm.box_check_update = false
1414
config.vm.host_name = 'fluentd-output-sumologic'
15-
config.vm.network :private_network, ip: "192.168.78.45"
15+
# Vbox 6.1.28+ restricts host-only adapters to 192.168.56.0/21
16+
# See: https://www.virtualbox.org/manual/ch06.html#network_hostonly
17+
config.vm.network :private_network, ip: "192.168.56.45"
1618

1719
config.vm.provider 'virtualbox' do |vb|
1820
vb.gui = false

0 commit comments

Comments
 (0)