Lines Matching refs:in

5 The comments and instructions below are for the new IP stack in Zephyr.
37 Minimally you need these settings active in your project config file.
56 If your have echo-server running in the Qemu, then you can use the echo-client
57 tool in net-tools directory to communicate with it.
68 If building with CONFIG_NET_TCP=y in your project config file, it's possible
69 to run the echo-server sample in Zephyr, and then test the TCP stack using
80 that's only available in this version (wrapper around if_nametoindex(3)).
136 Finally run the stunnel script in Linux
145 If you are running echo-client in Zephyr QEMU, then run echo-server like
151 If you want to re-create the certificates in echo-server and echo-client in
153 need to do this as the certs have been prepared already in echo-server and
160 The cert that is to be embedded into test_certs.h in echo-server and
163 $ openssl x509 -in echo-apps-cert.pem -outform DER | \
166 The private key to be embedded into test_certs.h in echo-server can be
170 -in echo-apps-key.pem | hexdump -e '8/1 "0x%02x, " "\n"' | \
174 If you want to re-create the signed certificates in echo-server in Zephyr
175 net samples and echo-client in net-tools, then they can be created like this
177 in echo-server and echo-client sources):
185 $ openssl x509 -in ca.crt -outform DER -out ca.der
193 $ openssl x509 -req -CA ca.crt -CAkey ca_privkey.pem -days 36500 -in client.csr -CAcreateserial -ou…
201 $ openssl x509 -req -CA ca.crt -CAkey ca_privkey.pem -days 36500 -in server.csr -CAcreateserial -ou…
204 $ openssl x509 -in server.crt -outform DER -out server.der
205 $ openssl pkcs8 -topk8 -inform PEM -outform DER -nocrypt -in server_privkey.pem -out server_privkey…
211 Enable NET_SAMPLE_CERTS_WITH_SC in samples/net/sockets/echo-server and build the sample.
212 Use stunnel_sc.conf in stunnel.sh to run echo-client with signed certificates.
233 If you see this error print in zephyr console
247 You can test the PPP connectivity running in Qemu in Zephyr using pppd that is
248 running in Linux host. You need to run *socat* and *pppd* to create
266 *echo-server* sample in samples/net/sockets/echo_server has _overlay-ppp.conf_