Cant ping VMs ip:10.76.249.1

Why is it not possible to ping 10.76.249.1 but its possible to ping 192.168.64.12 on the same VM
Also i cant ping a server running in the vms container but i can ping the server while inside the VM

aOKs-MacBook-Pro:~ aok$ multipass ls
Name                    State             IPv4             Image
ubuntuvm                Running           192.168.64.12    Ubuntu 23.04
                                          10.76.249.1
aOKs-MacBook-Pro:~ aok$ ping 10.76.249.1
PING 10.76.249.1 (10.76.249.1): 56 data bytes
ping: sendto: No route to host
Request timeout for icmp_seq 0
ping: sendto: No route to host
Request timeout for icmp_seq 1
^C
--- 10.76.249.1 ping statistics ---
3 packets transmitted, 0 packets received, 100.0% packet loss
aOKs-MacBook-Pro:~ aok$ ping -c3 192.168.64.12
PING 192.168.64.12 (192.168.64.12): 56 data bytes
64 bytes from 192.168.64.12: icmp_seq=0 ttl=64 time=42.402 ms
64 bytes from 192.168.64.12: icmp_seq=1 ttl=64 time=1.008 ms
64 bytes from 192.168.64.12: icmp_seq=2 ttl=64 time=1.049 ms

--- 192.168.64.12 ping statistics ---
3 packets transmitted, 3 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 1.008/14.820/42.402/19.504 ms
1 Like

Hi @anondeki!

One of those IP addresses corresponds to the Multipass network, while the other one corresponds to your local network, on a bridged interface you created on the instance. For that reason, the 192.168.64.0 network is accessible from outside the instance (i.e., from other computer in the same network), but not the other one.

We are currently working on filtering out the “default” instance address, so as to avoid confusion among the users.

Hope this explanation helps!