Skip to content

Commit

Permalink
docs(troubleshooting): add multicast settings (#144)
Browse files Browse the repository at this point in the history
* docs(troubleshooting): add multicast settings

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* apply review comments

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>
  • Loading branch information
kenji-miyake authored Jun 13, 2022
1 parent 5f137d3 commit caab3ba
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion docs/support/troubleshooting.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ Next, confirm that you are able to access the base Autoware image that is stored
docker run --rm -it ghcr.io/autowarefoundation/autoware-universe:latest
```

## Runtime errors
## Runtime issues

### Map does not display when running the Planning Simulator

Expand All @@ -160,3 +160,11 @@ net.core.rmem_default=8388608 // only add if CycloneDDS is confgured
```bash
echo $RMW_IMPLEMENTATION // if Cyclone DDS is configured, this command will return "rmw_cyclonedds_cpp"
```
### Multicast is disabled
If you get the error message `selected interface "{your-interface-name}" is not multicast-capable: disabling multicast`, run the following command to allow multicast.
```bash
sudo ip link set multicast on {your-interface-name}
```

0 comments on commit caab3ba

Please sign in to comment.