diff --git a/README.md b/README.md index 76a1a56..c53c5fa 100644 --- a/README.md +++ b/README.md @@ -31,5 +31,5 @@ vagrant up - This will bring the vms up - Your home dir is synced to the vm in /vagrant_home on each vm - Vms created - - `kafka` at `10.10.10.10` -- Run `vagrant help` for more info \ No newline at end of file + - `kafka` at `192.168.10.10` +- Run `vagrant help` for more info diff --git a/Vagrantfile b/Vagrantfile index 1b9fc68..61e952f 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -12,7 +12,7 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| # VM specific settings config.vm.define "kafka" do |kafka| - kafka.vm.network :private_network, ip: "10.10.10.10" + kafka.vm.network :private_network, ip: "192.168.10.10" kafka.vm.provision :chef_solo do |chef| chef.roles_path = "roles" chef.data_bags_path = "data_bags"