I am using stunnel (along with an Apache reverse proxy) to enable my browser to connect to my old managed switches.
An example configuration looks like this:
debug = warning syslog = yes
[switch1] client = yes accept = 127.0.0.1:8081 connect = 192.168.4.1:443 verifyChain = yes checkHost = switch1.example.com CAfile = /etc/pki/ca-trust/source/anchors/example-com-ca.crt sslVersion = TLSv1 ciphers = DHE-RSA-AES256-SHA options = ALLOW_UNSAFE_LEGACY_RENEGOTIATION securityLevel = 1 OCSPrequire = no
Everything is working, but I'm seeing a lot of warnings in my system log:
OCSP: No OCSP stapling response received transfer: s_poll_wait: TIMEOUTclose exceeded: closing
Are there any settings that I can use to suppress these warnings?
Thanks!