Skip to content

Commit ba0aa7d

Browse files
kaanturkmenmeta-codesync[bot]
authored andcommitted
Fix typos and inconsistencies in TLS support documentation
Reviewed By: RollerMatic Differential Revision: D92540555 fbshipit-source-id: 9de5c2b5b2bcf66837a6484b5d42cecebda7c3e5
1 parent 5e5d84c commit ba0aa7d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/tls_support.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ echo | timeout 5 openssl s_client -connect localhost:6653 -CAfile ca.crt \
227227

228228
The TLS implementation follows these key principles:
229229

230-
1. **TLS Version**: Requires TLS 1.3 as specified in the IETF draft
230+
1. **TLS Version**: Requires TLS 1.3 as specified in the IETF draft. Note: The server does not currently enforce TLS 1.3 to allow existing deployments time to migrate.
231231
2. **Certificate Validation**: Properly validates server and client certificates with SAN extensions
232232
3. **Packet Processing**: TACACS+ packets are sent unencrypted within the TLS tunnel (with UnencryptedFlag set)
233233
4. **Backward Compatibility**: The server can still operate in non-TLS mode for backward compatibility
@@ -392,7 +392,7 @@ execute pap authentication
392392
3. Check that client sends unencrypted packets within TLS tunnel
393393
4. Verify server expects unencrypted packets for TLS connections
394394

395-
### 10. Useful OpenSSL Commands Reference
395+
### 9. Useful OpenSSL Commands Reference
396396

397397
```bash
398398
# Generate certificates with debugging
@@ -401,8 +401,8 @@ openssl req -new -key server.key -out server.csr -config server.conf -verbose
401401
# View certificate details
402402
openssl x509 -in server.crt -text -noout
403403

404-
# Test specific cipher suites
405-
echo | openssl s_client -connect localhost:6653 -cipher ECDHE-RSA-AES256-GCM-SHA384
404+
# Test specific TLS 1.3 cipher suites
405+
echo | openssl s_client -connect localhost:6653 -ciphersuites TLS_AES_256_GCM_SHA384
406406

407407
# Check certificate expiration
408408
openssl x509 -in server.crt -noout -dates

0 commit comments

Comments
 (0)