You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use native host to get network access for Cyphal/UDP traffic:
31
+
30
32
```bash
31
-
finch run -it --network host --cap-add=NET_RAW --cap-add=NET_ADMIN cyphal-tools
33
+
finch run -it --network host --cap-add=NET_RAW --cap-add=NET_ADMIN docker-opencyphal-debug-tools
32
34
```
33
35
34
36
or
35
37
36
38
```bash
37
-
docker run -it --net host cyphal-tools
39
+
docker run -it --net host docker-opencyphal-debug-tools
38
40
```
39
41
40
-
You can use both the `tshark` and `yakut` tools in the container to observer multicast Cyphal/UDP
41
-
traffic.
42
+
You can either run the container with `--network host` to get direct network access for Cyphal/UDP traffic or expose the UDP port 9382 to access it from outside the container `-p 9382:9382`.
43
+
44
+
You can use both the `tshark` and `yakut` tools in the container to observe multicast Cyphal/UDP traffic.
42
45
43
46
### Terminal Shark
44
47
@@ -62,6 +65,7 @@ Capturing on 'eth0'
62
65
```
63
66
64
67
### Yakut
68
+
65
69
See Yakut's readme for more information: [here](https://github.com/opencyphal/yakut)
66
70
67
71
Be sure to set `UAVCAN__NODE__ID` and `UAVCAN__UDP__IFACE` as appropriate before running `yakut`.
0 commit comments