diff options
author | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-02-16 18:12:24 +0000 |
---|---|---|
committer | james <james@e7ae566f-a301-0410-adde-c780ea21d3b5> | 2006-02-16 18:12:24 +0000 |
commit | 6add6b2fe78c549d174729869e26cee917e31d5f (patch) | |
tree | 7b0786b12c40853bd9742d61e07417ade430f3d2 /openvpn.8 | |
parent | Added "bytecount" command to management interface. (diff) | |
download | openvpn-6add6b2fe78c549d174729869e26cee917e31d5f.tar.xz |
Added --port-share option for allowing OpenVPN and HTTPS
server to share the same port number.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@893 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to '')
-rw-r--r-- | openvpn.8 | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -217,6 +217,7 @@ openvpn \- secure IP tunnel daemon. [\ \fB\-\-pkcs12\fR\ \fIfile\fR\ ] [\ \fB\-\-plugin\fR\ \fImodule\-pathname\ init\-string\fR\ ] [\ \fB\-\-port\fR\ \fIport\fR\ ] +[\ \fB\-\-port\-share\fR\ \fIhost\ port\fR\ ] [\ \fB\-\-proto\fR\ \fIp\fR\ ] [\ \fB\-\-pull\fR\ ] [\ \fB\-\-push\-reset\fR\ ] @@ -2971,6 +2972,23 @@ authentication, use the authenticated username as the common name, rather than the common name from the client cert. .\"********************************************************* +.TP +.B --port-share host port +When run in TCP server mode, share the OpenVPN port with +another application, such as an HTTPS server. If OpenVPN +senses a connection to its port which is using a non-OpenVPN +protocol, it will proxy the connection to the server at +.B host:port. +Currently only designed to work with HTTPS, +though it would be theoretically possible to extend to +other protocols such as ssh. + +Currently only implemented +on Linux, though porting to BSDs should be straightforward. +The reason for the non-portability is that the current implementation +uses sendmsg and recvmsg for passing file descriptors between +processes. +.\"********************************************************* .SS Client Mode Use client mode when connecting to an OpenVPN server which has |