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
Copy file name to clipboardExpand all lines: samples/secure_tunneling/secure_tunnel/README.md
+2-2
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Create a new secure tunnel in the AWS IoT console (https://console.aws.amazon.co
13
13
To run the sample with a destination access token in destination mode (default), you can use the following command:
14
14
15
15
```sh
16
-
./secure_tunnel --signing_region <signing_region> --access_token_file <path to destination access token>
16
+
./secure-tunnel --signing_region <signing_region> --access_token_file <path to destination access token>
17
17
```
18
18
19
19
The sample will create a Secure Tunnel connection and remain connected in `DESTINATION MODE` and will echo any messages it receives through the Secure Tunnel back to the Source Device.
@@ -23,7 +23,7 @@ The sample will create a Secure Tunnel connection and remain connected in `DESTI
23
23
While the focus of the Secure Tunnel Client for the IoT Device SDK is to connect with Secure Tunnels in `DESTINATION MODE` we also support connecting in `SOURCE MODE`. The token file should be the Source Token in this instance and you must add the `--localProxyModeSource` flag:
24
24
25
25
```sh
26
-
./secure_tunnel --signing_region <signing_region> --access_token_file <path to source access token> --localProxyModeSource
26
+
./secure-tunnel --signing_region <signing_region> --access_token_file <path to source access token> --localProxyModeSource
27
27
```
28
28
29
29
Then two samples will then connect to each other through the AWS Secure Tunnel endpoint and establish a stream through which data can be transmitted in either direction.
0 commit comments