Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds documentation for virtual bridge error #183

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,16 @@ oOo oOO| | | | | (| | | (_) | _) :_
Listening on port 8123...
```

In this step you may face the following error:
levihackerman-102 marked this conversation as resolved.
Show resolved Hide resolved

```text
access denied by acl file
qemu-system-ppc64: -netdev bridge,br=virbr0,id=net0: bridge helper failed
```

To fix this, check if the `/etc/qemu/bridge.conf` file exists.
If it doesn't, then create it first and then add the line `allow virbr0` to it to allow your bridge to run.

The boot message confirms the assigning of the `172.44.0.2/24` IP address to the virtual machine.
It's listening on port 8123 for HTTP connections on that IP address.
We use `wget` to validate it's working properly and we are able to get the `index.html` file:
Expand Down