Hello Everyone, I read the manpage here: doc/openvpn.8
<connection> remote 198.19.34.56 443 tcp </connection> However, when you configure this in your configuration file, you cannot do this: in src/openvpn/options.c: /* * If "proto tcp" is specified, make sure we know whether it is * tcp-client or tcp-server. */ if (ce->proto == PROTO_TCPv4) msg (M_USAGE, "--proto tcp is ambiguous in this context. Please specify --proto tcp-server or --proto tcp-client"); if (ce->proto == PROTO_TCPv6) msg (M_USAGE, "--proto tcp6 is ambiguous in this context. Please specify --proto tcp6-server or --proto tcp6-client"); So the man page isn't correct? The only thing I can reliably use in p2p mode is remote host 1194 udp If I fill out a different port. The idea in my case is to have a point-to-point connection where both hosts listen on port 443 tcp instead of port 1194 udp to setup the point-to-point connection. Thanks, Reinoud.