d2dc569f99
his patch bumps the sslh package to v1.9. This update brings about some useful changes, including: * Multiple bind address support * IPv6 support * OpenVPN support * tinc VPN support Tested and working on ar71xx. Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com> git-svn-id: svn://svn.openwrt.org/openwrt/packages@28331 3c298f89-4303-0410-b956-a3cf2f4a3e73
28 lines
732 B
Plaintext
28 lines
732 B
Plaintext
package 'sslh'
|
|
|
|
config 'sslh' 'default'
|
|
# disable or enable
|
|
option 'enable' '1'
|
|
# listen defaults to '0.0.0.0:443' (all interfaces)
|
|
# multiple -p arguments may be supplied using a uci list
|
|
# -p <listenaddr>:<listenport>
|
|
option 'listen' ''
|
|
# ssh defaults to 'localhost:22'
|
|
# --ssh <sshhost>:<sshport>
|
|
option 'ssh' ''
|
|
# ssl defaults to 'localhost:443'
|
|
# --ssl <sslhost>:<sslport>
|
|
option 'ssl' ''
|
|
# openvpn defaults to 'localhost:1194'
|
|
# --openvpn <openvpnhost>:<openvpnport>
|
|
option 'openvpn' ''
|
|
# tinc defaults to 'localhost:655'
|
|
# --tinc <tinchost>:<tincport>
|
|
option 'tinc' ''
|
|
# timeout (for ssh, then ssl is assumed) defaults to 2
|
|
# -t
|
|
option 'timeout' ''
|
|
# verbose defaults to off
|
|
# -v
|
|
option 'verbose' '0'
|