Skip to content

Commit

Permalink
docs: Default network unreachable
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobrombin committed Jun 17, 2024
1 parent ba53bcd commit 8dac2dd
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,21 @@ This should not happen, the image has a dedicated Polkit policy for this. If you

### Cannot connect to a remote libvirt daemon over SSH

Please, refer to [this](https://github.com/89luca89/distrobox/blob/main/docs/posts/run_libvirt_in_distrobox.md) from the Distrobox documentation.
Please, refer to [this](https://github.com/89luca89/distrobox/blob/main/docs/posts/run_libvirt_in_distrobox.md) from the Distrobox documentation.

### Default network unreachable

If the default network is unreachable, try to start it manually:

```bash
sudo virsh net-start default
virsh net-autostart default
```

if the above command fails due to missing network, try loading it from the XML:

```bash
sudo virsh net-define /usr/share/libvirt/networks/default.xml
sudo virsh net-start default
virsh net-autostart default
```

0 comments on commit 8dac2dd

Please sign in to comment.