diff options
author | Christian Breunig <christian@breunig.cc> | 2024-05-09 17:12:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-09 17:12:11 +0200 |
commit | 7925402b487b93d1ae8dd4941e0981437f7fb951 (patch) | |
tree | 6671c4c96b55ba56d40c8e44901377022271cdb6 /interface-definitions | |
parent | 7d035fe85624623c2eb06bfe23b31e435456b960 (diff) | |
parent | 92b468b9a0d5eee8484601568227f7c56e71b119 (diff) | |
download | vyos-1x-7925402b487b93d1ae8dd4941e0981437f7fb951.tar.gz vyos-1x-7925402b487b93d1ae8dd4941e0981437f7fb951.zip |
Merge pull request #3436 from natali-rs1985/T4393-current
sstp: T4393: Add support to configure host-name (SNI)
Diffstat (limited to 'interface-definitions')
-rw-r--r-- | interface-definitions/vpn_sstp.xml.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/interface-definitions/vpn_sstp.xml.in b/interface-definitions/vpn_sstp.xml.in index d23a001d5..d9ed1c040 100644 --- a/interface-definitions/vpn_sstp.xml.in +++ b/interface-definitions/vpn_sstp.xml.in @@ -53,6 +53,15 @@ #include <include/accel-ppp/wins-server.xml.i> #include <include/generic-description.xml.i> #include <include/name-server-ipv4-ipv6.xml.i> + <leafNode name="host-name"> + <properties> + <help>Only allow connection to specified host with the same TLS SNI</help> + <constraint> + #include <include/constraint/host-name.xml.i> + </constraint> + <constraintErrorMessage>Host-name must be alphanumeric and can contain hyphens</constraintErrorMessage> + </properties> + </leafNode> </children> </node> </children> |