From: Sergey Ponomarev Date: Thu, 28 Dec 2023 17:39:51 +0000 (+0200) Subject: luci-app-sshtunnel: servers: ProxyCommand option X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=1880716e61ffeedb193f04220c369363ee40fc56;p=project%2Fluci.git luci-app-sshtunnel: servers: ProxyCommand option Signed-off-by: Sergey Ponomarev (cherry picked from commit 255aef1748309d065795f551b1994f2cd807b668) --- diff --git a/applications/luci-app-sshtunnel/Makefile b/applications/luci-app-sshtunnel/Makefile index 4298b6107f..f686ff103f 100644 --- a/applications/luci-app-sshtunnel/Makefile +++ b/applications/luci-app-sshtunnel/Makefile @@ -7,7 +7,7 @@ LUCI_TITLE:=LuCI support for SSH Tunnels (sshtunnel package) PKG_MAINTAINER:=Sergey Ponomarev LUCI_DEPENDS:=+luci-base +sshtunnel -PKG_VERSION:=1.0.0 +PKG_VERSION:=1.1.0 PKG_RELEASE:=1 include ../../luci.mk diff --git a/applications/luci-app-sshtunnel/htdocs/luci-static/resources/view/sshtunnel/ssh_servers.js b/applications/luci-app-sshtunnel/htdocs/luci-static/resources/view/sshtunnel/ssh_servers.js index 88c3692728..7a45ddc32b 100644 --- a/applications/luci-app-sshtunnel/htdocs/luci-static/resources/view/sshtunnel/ssh_servers.js +++ b/applications/luci-app-sshtunnel/htdocs/luci-static/resources/view/sshtunnel/ssh_servers.js @@ -127,6 +127,14 @@ return view.extend({ o.default = 'accept-new'; o.modalonly = true; + o = s.taboption('advanced', form.Value, 'ProxyCommand', _('Proxy tunnel command'), + _('The command to use to connect to the server.') + '
' + + _('For example, the following command would connect via an HTTP proxy:') + '
' + + 'ncat --proxy-type http --proxy-auth alice:secret --proxy 192.168.1.2:8080 %h %p' + + _manSshConfig('ProxyCommand') + ); + o.modalonly = true; + return m.render(); }, });