Skip to content

Commit

Permalink
add --no-daemon and --spin-time explanation in readme.
Browse files Browse the repository at this point in the history
Signed-off-by: Tomoya Fujita <[email protected]>
  • Loading branch information
fujitatomoya committed May 8, 2024
1 parent 07608ab commit 2283fe0
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
11 changes: 7 additions & 4 deletions SROS2_Linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,24 +120,27 @@ To be able to use the ros2 CLI tools to interact with your secured system, you n
export ROS_SECURITY_ENCLAVE_OVERRIDE=/talker_listener/listener
```

Then use the CLI as usual:
Then use the CLI with `--no-daemon` and `--spin-time`:

> [!NOTE]
> Avoid using `ros2 daemon` since it may not have security enclaves, and enough time duration should be given for the discovery in secured network.
```bash
ros2 node list
ros2 node list --no-daemon --spin-time 3
```
```
/talker
```
```bash
ros2 topic list
ros2 topic list --no-daemon --spin-time 3
```
```
/chatter
/parameter_events
/rosout
```
```bash
ros2 topic echo /chatter
ros2 topic echo /chatter --spin-time 3
```
```
[INFO] [1714897092.882384995] [rcl]: Found security directory: /root/sros2_demo/demo_keystore/enclaves/talker_listener/listener
Expand Down
11 changes: 7 additions & 4 deletions SROS2_MacOS.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,24 +130,27 @@ To be able to use the ros2 CLI tools to interact with your secured system, you n
export ROS_SECURITY_ENCLAVE_OVERRIDE=/talker_listener/listener
```

Then use the CLI as usual:
Then use the CLI with `--no-daemon` and `--spin-time`:

> [!NOTE]
> Avoid using `ros2 daemon` since it may not have security enclaves, and enough time duration should be given for the discovery in secured network.
```bash
ros2 node list
ros2 node list --no-daemon --spin-time 3
```
```
/talker
```
```bash
ros2 topic list
ros2 topic list --no-daemon --spin-time 3
```
```
/chatter
/parameter_events
/rosout
```
```bash
ros2 topic echo /chatter
ros2 topic echo /chatter --spin-time 3
```
```
[INFO] [1714897092.882384995] [rcl]: Found security directory: /root/sros2_demo/demo_keystore/enclaves/talker_listener/listener
Expand Down
11 changes: 7 additions & 4 deletions SROS2_Windows.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,24 +129,27 @@ To be able to use the ros2 CLI tools to interact with your secured system, you n
set ROS_SECURITY_ENCLAVE_OVERRIDE=/talker_listener/listener
```

Then use the CLI as usual:
Then use the CLI with `--no-daemon` and `--spin-time`:

> [!NOTE]
> Avoid using `ros2 daemon` since it may not have security enclaves, and enough time duration should be given for the discovery in secured network.
```bat
ros2 node list
ros2 node list --no-daemon --spin-time 3
```
```
/talker
```
```bat
ros2 topic list
ros2 topic list --no-daemon --spin-time 3
```
```
/chatter
/parameter_events
/rosout
```
```bat
ros2 topic echo /chatter
ros2 topic echo /chatter --spin-time 3
```
```
[INFO] [1714897092.882384995] [rcl]: Found security directory: /root/sros2_demo/demo_keystore/enclaves/talker_listener/listener
Expand Down

0 comments on commit 2283fe0

Please sign in to comment.