Hello! I have to build a bridge server with just 2 openvpn clients. The goal is to create one network with 3 sites with a layer 2 vpn. The 2 openvpn clients have the same remote server, so i decided to use xinetd with the nowait option in order to create more than one instance of the server.
But the condition is, with openvpn, i have to use SSL/TLS! but the use of the static key is sufficient. So i modified the source and delete the SSL/TLS condition on the --inetd nowait option (option.c file). Now it is ok, xinetd create a new server instance on demand, with the static key. All i want to say with this example is i don't think that the SSL/TLS requirement for the nowait inetd option is not justified for a network arch like mine, and the use of the static key has to be possible. Let the openvpn user decide what to do (ssl/tls or static key) with the nowait option, what do you think of this? Cedric