Skip to content

Commit 18675aa

Browse files
committed
docs: label tls troubleshooting examples by platform
1 parent a953f32 commit 18675aa

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

rules/network-troubleshoot.mdc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,11 +78,15 @@ curl -I https://<target-host>/<path>
7878

7979
### TLS
8080

81+
Linux/macOS:
82+
8183
```bash
8284
openssl s_client -connect <target-host>:443 -showcerts </dev/null
8385
echo | openssl s_client -connect <target-host>:443 2>/dev/null | openssl x509 -noout -dates
8486
```
8587

88+
Windows PowerShell:
89+
8690
```powershell
8791
try {
8892
$req = [Net.HttpWebRequest]::Create("https://<target-host>")

0 commit comments

Comments
 (0)