add snippet: openssl with debug mode (more verbose)'

- signed-off-by: trimstray <trimstray@gmail.com>
pull/153/head
trimstray 2020-01-23 13:18:17 +01:00
parent a91cffc46b
commit 67ef811b0f
1 changed files with 6 additions and 0 deletions

View File

@ -2407,6 +2407,12 @@ ___
echo | openssl s_client -connect google.com:443 -showcerts
```
###### Testing connection to the remote host (debug mode)
```bash
echo | openssl s_client -connect google.com:443 -showcerts -tlsextdebug -status
```
###### Testing connection to the remote host (with SNI support)
```bash