1; Configuration file for stunnel to create SSL pipe between 2; echo-* programs running in Linux and Zephyr 3 4foreground = yes 5syslog = no 6; Debugging level (7 is greatest debugging output) 7;debug = 7 8TIMEOUTconnect = 10 9TIMEOUTclose = 10 10 11; In the settings below the port numbers are set like this: 12; *:4242 - Listen encrypted traffic from Zephyr 13; *:4243 - Listen unencrypted traffic from localhost (client) 14 15[echo-client-ipv4] 16accept = 192.0.2.2:4243 17CApath = . 18CAfile = ca.crt 19cert = client.crt 20key = client_privkey.pem 21client = yes 22connect = 192.0.2.1:4242 23 24[echo-client-ipv6] 25accept = 2001:db8::2:4243 26CApath = . 27CAfile = ca.crt 28cert = client.crt 29key = client_privkey.pem 30client = yes 31connect = 2001:db8::1:4242 32