doc: S7CommPlus-over-TLS and password-auth sections#719
Merged
Conversation
The unified Client has supported V2/V3 with TLS, mutual TLS, and password authentication on master since 4.0; the docs never explained how to use them. Add a focused TLS section (covering ``use_tls=True``, ``tls_ca`` for PLC verification, and the optional mutual-TLS ``tls_cert`` / ``tls_key`` pair) plus a short authentication example for password-protected PLCs. Also notes the V1-initial S7-1200 (FW < 4.5) limitation that's tracked in #710 and links to the cryptography optional extra. Refs #718. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
use_tls=True, optional CA verification (tls_ca), and mutual TLS (tls_cert+tls_key).client.authenticate(password=...)) covering both the legacy SHA-1 and newer AES-256-CBC paths.Why
The unified Client has supported all of this on master since 4.0 — the implementation, scaffolding, and tests all exist (
s7/connection.py,tests/test_s7_tls.py,tests/test_s7_v2.py). The docs never told users how to use them.Refs #718.
Test plan
doc/connecting.rstbuilds without warnings on Read the Docs.🤖 Generated with Claude Code