Hi!
I have a problem to run stunnel on my openwrt box. I have installed it to /opt/etc/stunnel.
Here is my Configuration of stunnel:
; Some security enhancements for UNIX systems - comment them out on Win32
chroot = /tmp
setuid = root
setgid = root
pid = /stunnel.pid
; Some performance tunings
socket = l:TCP_NODELAY=1
socket = r:TCP_NODELAY=1
;compression = rle
; Workaround for Eudora bug
;options = DONT_INSERT_EMPTY_FRAGMENTS
;verify = 2
;CApath = /certs
;CAfile = /usr/etc/stunnel/certs.pem
;CRLpath = /crls
;CRLfile = /usr/etc/stunnel/crls.pem
; Some debugging stuff useful for troubleshooting
;debug = 7
;output = stunnel.log
; Use it for client mode
client = yes
; Service-level configuration
;[mysql]
accept = 127.0.0.1:3306
connect = 192.168.2.109:10439
;
;[syslog-ng]
accept = 127.0.0.1:601
connect = 192.168.2.109:10440
;
; vim:ft=dosini
When i try to run stunnel I get following error:
root@OpenWrt:/opt/etc/stunnel# stunnel /opt/etc/stunnel/stunnel.conf
stunnel: can't resolve symbol 'SSL_CTX_set_info_callback'
I hope somebody can help me, because it is the last project work of my training at my company!
Thanks in advance
Sub-Zero-1