Both have OpenVPN Server and stunnel4 installed and configured - identically.
Wheezy works great. Connect with stunnel client on my Android with SSLDroid and OpenVPN for Android and data flows like it should.
Jessie does not. If I connect straight with OpenVPN (no stunnel), data flows great. Try to go through stunnel, and OpenVPN connects, but no data flows (no web pages, email, internet)
Here's my stunnel.conf:
Code: Select all
sslVersion = all
options = NO_SSLv2
cert = /etc/stunnel/server.pem
pid = /var/run/stunnel.pid
output = /var/log/stunnel
socket = l:TCP_NODELAY=1
[openvpn]
client = no
accept = 443
connect = 10.254.22.117:1194
Code: Select all
local 10.254.22.117
dev tun
proto tcp
port 1194
ca /etc/openvpn/easy-rsa/keys/ca.crt
Thanks!