Re: [vagrant-up] Not able to ping from one Host Virtual machine to different host Virtual machine in Vagrant

2021-05-17 Thread Alvaro Miranda Aguilera
from the 2 machines in different host that can' t ping each other

can you share

in the old days should have been

ifconfig -a
route print

in the new commands, i think is like

ip route
ip address



On Mon, May 17, 2021 at 10:41 AM Raghu H  wrote:

> No.. It's connected over the coprate LAN network
>
> On Mon, 17 May, 2021, 2:08 PM Alvaro Miranda Aguilera, 
> wrote:
>
>> are you using wifi on any of those host ?
>>
>>
>>
>> On Thu, May 13, 2021 at 9:14 PM Raghu H  wrote:
>>
>>> I am not able to ping between two virtual machines on different Host,
>>> But can ping between two virtual machines if they are in the same Host
>>> machine, using a Bridge network to communicate between the two different
>>> VM’s.
>>>
>>> Vagrantfile look like this on both VM,
>>> ENV['VAGRANT_NO_PARALLEL'] = 'yes' Vagrant.configure(2) do |config|
>>> config.vm.provision "shell", path: "bootstrap.sh" MasterCount = 1
>>> (1..MasterCount).each do |i| config.vm.define "kmaster2" do
>>> |masternode| masternode.vm.network "forwarded_port", guest: "80", host:
>>> "5050", auto_correct: "true" masternode.vm.box = "bento/ubuntu-20.04"
>>> masternode.vm.hostname = "kmaster2.example.com" masternode.vm.network
>>> "public_network", ip: "172.16.16.50", bridge: "ens160"
>>> masternode.vm.provider "virtualbox" do |v| v.name = "kmaster2" v.memory
>>> = 2048 v.cpus = 2 end end end
>>>
>>> please refer to the text diagrams below Ping between the Physical
>>> machine (241) and Physical machine (242) works ping between VM-11 and VM-12
>>> within the same physical machine works. Ping from VM-21 in Physical machine
>>> (242) to Physical machine (241) works But ping between VM-11 and VM-21 does
>>> not work. Also, ping from Physical machine 241 to VM-21 (in Phy machine
>>> 242) does not work
>>>
>>> Any leads would help.
>>>
>>> Physical machine (241)
>>>  | --- | | |VM-11 | | | --- | | | | 
>>> ---
>>> | | |VM-12 | | | --- | |--|
>>>
>>> Physical machine (242)
>>>  | --- | | |VM-21 | | | --- | | | | 
>>> ---
>>> | | |VM-22 | | | --- | |--|
>>>
>>> --
>>> 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/hashicorp/vagrant/issues
>>> Discuss: https://discuss.hashicorp.com/c/vagrant/24
>>> ---
>>> 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+unsubscr...@googlegroups.com.
>>> To view this discussion on the web visit
>>> https://groups.google.com/d/msgid/vagrant-up/36a404c2-b788-41ba-adbe-24c811470e5cn%40googlegroups.com
>>> 
>>> .
>>>
>>
>>
>> --
>> Alvaro
>>
>> --
>> 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/hashicorp/vagrant/issues
>> Discuss: https://discuss.hashicorp.com/c/vagrant/24
>> ---
>> 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+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/vagrant-up/CAHqq0ezGDJBsVK4Q7vdDqihTTgkJSA4mPKmAw1GZTY48ZLe16w%40mail.gmail.com
>> 
>> .
>>
> --
> 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/hashicorp/vagrant/issues
> Discuss: https://discuss.hashicorp.com/c/vagrant/24
> ---
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/vagrant-up/CA%2BUEWD_hLYAJK7%2B3MxMBMi-29AhRqU82fM4iKtaKOV2SP9UEjA%40mail.gmail.com
> 
> .
>


-- 
Alvaro

-- 
This mailing list is governed under the HashiCorp Community Guidelines 

Re: [vagrant-up] Not able to ping from one Host Virtual machine to different host Virtual machine in Vagrant

2021-05-17 Thread Raghu H
No. its connected over the LAN  network

On Monday, May 17, 2021 at 2:08:04 PM UTC+5:30 kik...@gmail.com wrote:

> are you using wifi on any of those host ?
>
>
>
> On Thu, May 13, 2021 at 9:14 PM Raghu H  wrote:
>
>> I am not able to ping between two virtual machines on different Host, But 
>> can ping between two virtual machines if they are in the same Host machine, 
>> using a Bridge network to communicate between the two different VM’s.
>>
>> Vagrantfile look like this on both VM,
>> ENV['VAGRANT_NO_PARALLEL'] = 'yes' Vagrant.configure(2) do |config| 
>> config.vm.provision "shell", path: "bootstrap.sh" MasterCount = 1 
>> (1..MasterCount).each do |i| config.vm.define "kmaster2" do |masternode| 
>> masternode.vm.network "forwarded_port", guest: "80", host: "5050", 
>> auto_correct: "true" masternode.vm.box = "bento/ubuntu-20.04" 
>> masternode.vm.hostname = "kmaster2.example.com" masternode.vm.network 
>> "public_network", ip: "172.16.16.50", bridge: "ens160" 
>> masternode.vm.provider "virtualbox" do |v| v.name = "kmaster2" v.memory 
>> = 2048 v.cpus = 2 end end end 
>>
>> please refer to the text diagrams below Ping between the Physical machine 
>> (241) and Physical machine (242) works ping between VM-11 and VM-12 within 
>> the same physical machine works. Ping from VM-21 in Physical machine (242) 
>> to Physical machine (241) works But ping between VM-11 and VM-21 does not 
>> work. Also, ping from Physical machine 241 to VM-21 (in Phy machine 242) 
>> does not work
>>
>> Any leads would help.
>>
>> Physical machine (241)
>>  | --- | | |VM-11 | | | --- | | | | 
>> --- 
>> | | |VM-12 | | | --- | |--| 
>>
>> Physical machine (242)
>>  | --- | | |VM-21 | | | --- | | | | 
>> --- 
>> | | |VM-22 | | | --- | |--| 
>>
>> -- 
>> 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/hashicorp/vagrant/issues
>> Discuss: https://discuss.hashicorp.com/c/vagrant/24
>> --- 
>> 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/36a404c2-b788-41ba-adbe-24c811470e5cn%40googlegroups.com
>>  
>> 
>> .
>>
>
>
> -- 
> Alvaro
>
>

-- 
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/hashicorp/vagrant/issues
Discuss: https://discuss.hashicorp.com/c/vagrant/24
--- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vagrant-up/59aabb5c-6cce-45c4-b590-be613e07d089n%40googlegroups.com.


Re: [vagrant-up] Not able to ping from one Host Virtual machine to different host Virtual machine in Vagrant

2021-05-17 Thread Raghu H
No.. It's connected over the coprate LAN network

On Mon, 17 May, 2021, 2:08 PM Alvaro Miranda Aguilera, 
wrote:

> are you using wifi on any of those host ?
>
>
>
> On Thu, May 13, 2021 at 9:14 PM Raghu H  wrote:
>
>> I am not able to ping between two virtual machines on different Host, But
>> can ping between two virtual machines if they are in the same Host machine,
>> using a Bridge network to communicate between the two different VM’s.
>>
>> Vagrantfile look like this on both VM,
>> ENV['VAGRANT_NO_PARALLEL'] = 'yes' Vagrant.configure(2) do |config|
>> config.vm.provision "shell", path: "bootstrap.sh" MasterCount = 1
>> (1..MasterCount).each do |i| config.vm.define "kmaster2" do |masternode|
>> masternode.vm.network "forwarded_port", guest: "80", host: "5050",
>> auto_correct: "true" masternode.vm.box = "bento/ubuntu-20.04"
>> masternode.vm.hostname = "kmaster2.example.com" masternode.vm.network
>> "public_network", ip: "172.16.16.50", bridge: "ens160"
>> masternode.vm.provider "virtualbox" do |v| v.name = "kmaster2" v.memory
>> = 2048 v.cpus = 2 end end end
>>
>> please refer to the text diagrams below Ping between the Physical machine
>> (241) and Physical machine (242) works ping between VM-11 and VM-12 within
>> the same physical machine works. Ping from VM-21 in Physical machine (242)
>> to Physical machine (241) works But ping between VM-11 and VM-21 does not
>> work. Also, ping from Physical machine 241 to VM-21 (in Phy machine 242)
>> does not work
>>
>> Any leads would help.
>>
>> Physical machine (241)
>>  | --- | | |VM-11 | | | --- | | | | 
>> ---
>> | | |VM-12 | | | --- | |--|
>>
>> Physical machine (242)
>>  | --- | | |VM-21 | | | --- | | | | 
>> ---
>> | | |VM-22 | | | --- | |--|
>>
>> --
>> 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/hashicorp/vagrant/issues
>> Discuss: https://discuss.hashicorp.com/c/vagrant/24
>> ---
>> 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+unsubscr...@googlegroups.com.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msgid/vagrant-up/36a404c2-b788-41ba-adbe-24c811470e5cn%40googlegroups.com
>> 
>> .
>>
>
>
> --
> Alvaro
>
> --
> 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/hashicorp/vagrant/issues
> Discuss: https://discuss.hashicorp.com/c/vagrant/24
> ---
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/vagrant-up/CAHqq0ezGDJBsVK4Q7vdDqihTTgkJSA4mPKmAw1GZTY48ZLe16w%40mail.gmail.com
> 
> .
>

-- 
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/hashicorp/vagrant/issues
Discuss: https://discuss.hashicorp.com/c/vagrant/24
--- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vagrant-up/CA%2BUEWD_hLYAJK7%2B3MxMBMi-29AhRqU82fM4iKtaKOV2SP9UEjA%40mail.gmail.com.


Re: [vagrant-up] Not able to ping from one Host Virtual machine to different host Virtual machine in Vagrant

2021-05-17 Thread Alvaro Miranda Aguilera
are you using wifi on any of those host ?



On Thu, May 13, 2021 at 9:14 PM Raghu H  wrote:

> I am not able to ping between two virtual machines on different Host, But
> can ping between two virtual machines if they are in the same Host machine,
> using a Bridge network to communicate between the two different VM’s.
>
> Vagrantfile look like this on both VM,
> ENV['VAGRANT_NO_PARALLEL'] = 'yes' Vagrant.configure(2) do |config|
> config.vm.provision "shell", path: "bootstrap.sh" MasterCount = 1
> (1..MasterCount).each do |i| config.vm.define "kmaster2" do |masternode|
> masternode.vm.network "forwarded_port", guest: "80", host: "5050",
> auto_correct: "true" masternode.vm.box = "bento/ubuntu-20.04"
> masternode.vm.hostname = "kmaster2.example.com" masternode.vm.network
> "public_network", ip: "172.16.16.50", bridge: "ens160"
> masternode.vm.provider "virtualbox" do |v| v.name = "kmaster2" v.memory =
> 2048 v.cpus = 2 end end end
>
> please refer to the text diagrams below Ping between the Physical machine
> (241) and Physical machine (242) works ping between VM-11 and VM-12 within
> the same physical machine works. Ping from VM-21 in Physical machine (242)
> to Physical machine (241) works But ping between VM-11 and VM-21 does not
> work. Also, ping from Physical machine 241 to VM-21 (in Phy machine 242)
> does not work
>
> Any leads would help.
>
> Physical machine (241)
>  | --- | | |VM-11 | | | --- | | | | 
> ---
> | | |VM-12 | | | --- | |--|
>
> Physical machine (242)
>  | --- | | |VM-21 | | | --- | | | | 
> ---
> | | |VM-22 | | | --- | |--|
>
> --
> 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/hashicorp/vagrant/issues
> Discuss: https://discuss.hashicorp.com/c/vagrant/24
> ---
> 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+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/vagrant-up/36a404c2-b788-41ba-adbe-24c811470e5cn%40googlegroups.com
> 
> .
>


-- 
Alvaro

-- 
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/hashicorp/vagrant/issues
Discuss: https://discuss.hashicorp.com/c/vagrant/24
--- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vagrant-up/CAHqq0ezGDJBsVK4Q7vdDqihTTgkJSA4mPKmAw1GZTY48ZLe16w%40mail.gmail.com.


[vagrant-up] Not able to ping from one Host Virtual machine to different host Virtual machine in Vagrant

2021-05-13 Thread Raghu H


I am not able to ping between two virtual machines on different Host, But 
can ping between two virtual machines if they are in the same Host machine, 
using a Bridge network to communicate between the two different VM’s.

Vagrantfile look like this on both VM,
ENV['VAGRANT_NO_PARALLEL'] = 'yes' Vagrant.configure(2) do |config| 
config.vm.provision "shell", path: "bootstrap.sh" MasterCount = 1 
(1..MasterCount).each do |i| config.vm.define "kmaster2" do |masternode| 
masternode.vm.network "forwarded_port", guest: "80", host: "5050", 
auto_correct: "true" masternode.vm.box = "bento/ubuntu-20.04" 
masternode.vm.hostname = "kmaster2.example.com" masternode.vm.network 
"public_network", ip: "172.16.16.50", bridge: "ens160" 
masternode.vm.provider "virtualbox" do |v| v.name = "kmaster2" v.memory = 
2048 v.cpus = 2 end end end 

please refer to the text diagrams below Ping between the Physical machine 
(241) and Physical machine (242) works ping between VM-11 and VM-12 within 
the same physical machine works. Ping from VM-21 in Physical machine (242) 
to Physical machine (241) works But ping between VM-11 and VM-21 does not 
work. Also, ping from Physical machine 241 to VM-21 (in Phy machine 242) 
does not work

Any leads would help.

Physical machine (241)
 | --- | | |VM-11 | | | --- | | | | 
--- 
| | |VM-12 | | | --- | |--| 

Physical machine (242)
 | --- | | |VM-21 | | | --- | | | | 
--- 
| | |VM-22 | | | --- | |--| 

-- 
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/hashicorp/vagrant/issues
Discuss: https://discuss.hashicorp.com/c/vagrant/24
--- 
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+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/vagrant-up/36a404c2-b788-41ba-adbe-24c811470e5cn%40googlegroups.com.