|
1 |
| -# Setting Up an Echo Server<a name="afr-echo-server"></a> |
| 1 | +# Setting up an echo server<a name="afr-echo-server"></a> |
2 | 2 |
|
3 |
| -Two simple echo servers, written in Go, are provided with FreeRTOS\. One server uses TLS for secure communication, and the other is unsecured\. The servers are located in the `<freertos>/tools/echo_server` folder\. The following topics walk you through setting up the echo servers\. |
| 3 | +The `freertos/tools/echo_server/` directory has the source code for a Go\-based echo server that you can use to test TCP on FreeRTOS\. You can find the TCP tests in the `freertos/libraries/abstractions/secure_sockets/test/iot_test_tcp.c` file\. Follow the instructions in this section to set up and run the echo server\. |
4 | 4 |
|
5 |
| -**Topics** |
6 |
| -+ [Setting Up the TLS Echo Server](tls-echo-server.md) |
7 |
| -+ [Setting Up the Echo Server \(Without TLS\)](notls-echo-server.md) |
| 5 | +## Prerequisites<a name="afr-echo-server-prerequisites"></a> |
| 6 | + |
| 7 | +To run the TLS echo server, you must install the following: |
| 8 | ++ Go – You can download the latest version from [ golang\.org](https://golang.org/dl/)\. |
| 9 | ++ OpenSSL – For a Linux source code download, see [OpenSSL\.org](https://www.openssl.org/source/)\. You can also use a package manager to install OpenSSL for Linux and macOS\. |
| 10 | + |
| 11 | +## Create credentials<a name="afr-echo-server-credentials"></a> |
| 12 | + |
| 13 | +After you finish the prerequisites, you must enter the following commands to create your credentials\. |
| 14 | + |
| 15 | +**Server** |
| 16 | +The following `openssl` command generates a self\-signed server certificate\. |
| 17 | + |
| 18 | +``` |
| 19 | +openssl req -newkey rsa:2048 -nodes -x509 -sha256 -out certs/server.pem -keyout certs/server.key -days 365 -subj "/C=US/ST=WA/L=Place/O=YourCompany/OU=IT/CN=www.your-company-website.com/[email protected]" |
| 20 | +``` |
| 21 | + |
| 22 | +**Client** |
| 23 | +The following `openssl` commands generate a client certificate\. |
| 24 | + |
| 25 | +``` |
| 26 | +openssl genrsa -out certs/client.key 2048 |
| 27 | +``` |
| 28 | + |
| 29 | +``` |
| 30 | +openssl req -new -key certs/client.key -out certs/client.csr -subj "/C=US/ST=WA/L=Place/O=YourCompany/OU=IT/CN=www.your-company-website.com/[email protected]" |
| 31 | +``` |
| 32 | + |
| 33 | +``` |
| 34 | +openssl x509 -req -in certs/client.csr -CA certs/server.pem -CAkey certs/server.key -CAcreateserial -out certs/client.pem -days 365 -sha256 |
| 35 | +``` |
| 36 | + |
| 37 | +## Directory structure<a name="afr-echo-server-folder-struct"></a> |
| 38 | + |
| 39 | +By default, certificates and keys are stored in a directory named `certs` that is located on a relative path specified in the configuration file, `config.json`\. If you want to move your credentials to a different directory, you can update this directory location in the configuration file\. |
| 40 | + |
| 41 | +You can find the source code for the echo server in the `echo_server.go` file\. |
| 42 | + |
| 43 | +## Server configuration<a name="afr-echo-server-config"></a> |
| 44 | + |
| 45 | +The echo server reads a JSON based configuration file\. The default location for this JSON file is `./config.json`\. To override this, specify the location of the JSON with the `-config` flag\. |
| 46 | + |
| 47 | +The JSON file contains the following options: |
| 48 | + |
| 49 | +**server\-port** |
| 50 | +Specify the port on which to open a socket\. |
| 51 | + |
| 52 | +**server\-certificate\-location** |
| 53 | +The relative or absolute path to the server certificate generated in [Create credentials](#afr-echo-server-credentials)\. |
| 54 | + |
| 55 | +**secure\-connection** |
| 56 | +Enable this option to have the echo server use TLS\. You must first [Create credentials](#afr-echo-server-credentials)\. |
| 57 | + |
| 58 | +**logging** |
| 59 | +Enable this option to output all log messages received to a file\. |
| 60 | + |
| 61 | +**verbose** |
| 62 | +Enable this option to output the contents of the message sent to the echo server\. |
| 63 | + |
| 64 | +**server\-key\-location** |
| 65 | +The relative or absolute path to the server key generated in [Create credentials](#afr-echo-server-credentials)\. |
| 66 | + |
| 67 | +**Example configuration** |
| 68 | + |
| 69 | +``` |
| 70 | +{ |
| 71 | + "verbose": false, |
| 72 | + "logging": false, |
| 73 | + "secure-connection": false, |
| 74 | + "server-port": "9000", |
| 75 | + "server-certificate-location": "./certs/server.pem", |
| 76 | + "server-key-location": "./certs/server.pem" |
| 77 | +} |
| 78 | +``` |
| 79 | + |
| 80 | +## Run the echo server from the command line<a name="afr-echo-server-run"></a> |
| 81 | + |
| 82 | +Enter the following commands to run the echo server\. |
| 83 | + |
| 84 | +``` |
| 85 | +go run echo_server.go |
| 86 | +``` |
| 87 | + |
| 88 | +Enter the following command to run with a custom config location\. |
| 89 | + |
| 90 | +``` |
| 91 | +go run echo_server.go -config=config_file_path |
| 92 | +``` |
| 93 | + |
| 94 | +If you want to run the unsecure and secure TCP tests at the same time, you must start both a secure and an unsecure echo server\. To do this, create a second, secure configuration file, and pass its location to the second instance of the echo server using the `-config` flag\. Remember to also specify a different TCP port in the second configuration file\. |
| 95 | + |
| 96 | +## Client device configuration<a name="afr-echo-server-device-config"></a> |
| 97 | + |
| 98 | +Before you run the TCP tests on your device, we recommend that you read [Getting Started with FreeRTOS](https://docs.aws.amazon.com/freertos/latest/userguide/freertos-getting-started.html) in the *FreeRTOS User Guide*\. |
| 99 | + |
| 100 | +After you complete the steps in [Create credentials](#afr-echo-server-credentials), you should have the following files: |
| 101 | ++ `certs/server.pem` |
| 102 | ++ `certs/server.key` |
| 103 | ++ `certs/client.pem` |
| 104 | ++ `certs/client.key` |
| 105 | ++ `certs/client.csr` |
| 106 | ++ `certs/server.srl` |
| 107 | + |
| 108 | +Make the following changes to these files: |
| 109 | + |
| 110 | + `freertos/tests/include/aws_clientcredential.h` |
| 111 | ++ Define the broker endpoint\. |
| 112 | ++ Define the thing name\. |
| 113 | ++ Define access to Wi\-Fi \(if not on Ethernet\)\. |
| 114 | + |
| 115 | + `freertos/tests/include/aws_clientcredential_keys.h` |
| 116 | ++ Set `keyCLIENT_CERTIFICATE_PEM` to the contents of `certs/client.pem`\. |
| 117 | ++ Leave `keyJITR_DEVICE_CERTIFICATE_AUTHORITY_PEM` as `NULL`\. |
| 118 | ++ Set `keyCLIENT_PRIVATE_KEY_PEM` to the contents of `certs/client.key`\. |
| 119 | ++ For more information, see [ Configuring the FreeRTOS demos](https://docs.aws.amazon.com/freertos/latest/userguide/freertos-configure.html)\. |
| 120 | + |
| 121 | + `freertos/tests/include/aws_test_tcp.h` |
| 122 | ++ Set `tcptestECHO_HOST_ROOT_CA` to the contents of `certs/server.pem`\. |
| 123 | ++ Set the IP address and the port of the echo server: |
| 124 | + + `tcptestECHO_SERVER_ADDR[0-3]` |
| 125 | + + `tcptestECHO_PORT` |
| 126 | ++ Set the IP address and the port of the secure echo server: |
| 127 | + + `tcptestECHO_SERVER_TLS_ADDR0[0-3]` |
| 128 | + + `tcptestECHO_PORT_TLS` |
0 commit comments