Hello,
I am attempting to get an Ubuntu 24.04 instance running on my Void Linux host machine, but when I start the instance I can’t get networks access. I don’t have a firewall running or Docker/Podman installed.
Here’s what I’ve done so far:
incus launch images:ubuntu/24.04/cloud TEST --storage pool-btrfs --network datacenter
incus network show datacenter
config:
ipv4.address: 10.134.0.1/16
ipv6.address: none
description: ""
name: datacenter
type: bridge
used_by:
- /1.0/instances/TEST?project=my-project
managed: true
status: Created
locations:
- none
project: default
I then run the following commands:
incus shell TEST
root@TEST:~# ping 1.1.1.1
PING 1.1.1.1 (1.1.1.1) 56(84) bytes of data.
^C
--- 1.1.1.1 ping statistics ---
2 packets transmitted, 0 received, 100% packet loss, time 1044ms
I don’t get a “Network unreachable” error…but I can’t ping anything. Is there anything obvious that I’m doing wrong? Thank you!
sudo iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT icmp -- anywhere anywhere icmp parameter-problem /* generated for Incus network incusbr0 */
ACCEPT icmp -- anywhere anywhere icmp time-exceeded /* generated for Incus network incusbr0 */
ACCEPT icmp -- anywhere anywhere icmp destination-unreachable /* generated for Incus network incusbr0 */
ACCEPT tcp -- anywhere anywhere tcp dpt:domain /* generated for Incus network incusbr0 */
ACCEPT udp -- anywhere anywhere udp dpt:domain /* generated for Incus network incusbr0 */
ACCEPT udp -- anywhere anywhere udp dpt:bootps /* generated for Incus network incusbr0 */
ACCEPT icmp -- anywhere anywhere icmp parameter-problem /* generated for Incus network datacenter */
ACCEPT icmp -- anywhere anywhere icmp time-exceeded /* generated for Incus network datacenter */
ACCEPT icmp -- anywhere anywhere icmp destination-unreachable /* generated for Incus network datacenter */
ACCEPT tcp -- anywhere anywhere tcp dpt:domain /* generated for Incus network datacenter */
ACCEPT udp -- anywhere anywhere udp dpt:domain /* generated for Incus network datacenter */
ACCEPT udp -- anywhere anywhere udp dpt:bootps /* generated for Incus network datacenter */
Chain FORWARD (policy ACCEPT)
target prot opt source destination
ACCEPT all -- anywhere anywhere /* generated for Incus network incusbr0 */
ACCEPT all -- anywhere anywhere /* generated for Incus network incusbr0 */
ACCEPT all -- anywhere anywhere /* generated for Incus network datacenter */
ACCEPT all -- anywhere anywhere /* generated for Incus network datacenter */
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
ACCEPT icmp -- anywhere anywhere icmp parameter-problem /* generated for Incus network incusbr0 */
ACCEPT icmp -- anywhere anywhere icmp time-exceeded /* generated for Incus network incusbr0 */
ACCEPT icmp -- anywhere anywhere icmp destination-unreachable /* generated for Incus network incusbr0 */
ACCEPT tcp -- anywhere anywhere tcp spt:domain /* generated for Incus network incusbr0 */
ACCEPT udp -- anywhere anywhere udp spt:domain /* generated for Incus network incusbr0 */
ACCEPT udp -- anywhere anywhere udp spt:bootps /* generated for Incus network incusbr0 */
ACCEPT icmp -- anywhere anywhere icmp parameter-problem /* generated for Incus network datacenter */
ACCEPT icmp -- anywhere anywhere icmp time-exceeded /* generated for Incus network datacenter */
ACCEPT icmp -- anywhere anywhere icmp destination-unreachable /* generated for Incus network datacenter */
ACCEPT tcp -- anywhere anywhere tcp spt:domain /* generated for Incus network datacenter */
ACCEPT udp -- anywhere anywhere udp spt:domain /* generated for Incus network datacenter */
ACCEPT udp -- anywhere anywhere udp spt:bootps /* generated for Incus network datacenter */