2

Can anyone please suggest an url to check the DTLS connection. For eg. https://www.howsmyssl.com/ is used to test the TLS protocol.

Thanks in advance

Anila
  • 21
  • 4

1 Answers1

2

Mbed TLS provides a DTLS server and client sample applications, which you can use to test your DTLS solution against. If you are already using Mbed TLS as your solution, and you wish to test interoperability, you can use a third party DTLS application, such as OpenSSL s_server -dtls \ OpenSSL s_client -dtls or gnutls-serv -u \ gnutls-cli -u.

Ron Eldor
  • 210
  • 1
  • 11
  • Would have been great to see some example output from that client. Also, provide links to 3rd party apps, you used. What's the difference between `s_client` and `s_server`? – not2qubit Mar 05 '23 at 11:59