0
0
mirror of https://github.com/openwrt/luci.git synced 2025-04-15 12:55:48 +00:00
Files
Sergey Ponomarev 7d14746ae8 New app: luci-app-sshtunnel for SSH tunnels (#6424)
* luci-app-sshtunnel: SSH tunnels

The app helps to configure SSH tunnels.
You can also generate an SSH key and see known hosts.

Signed-off-by: Sergey Ponomarev <stokito@gmail.com>
2023-12-04 19:27:53 +01:00

21 lines
467 B
JSON

{
"luci-app-sshtunnel": {
"description": "Grant UCI access for luci-app-sshtunnel",
"read": {
"file": {
"/root/.ssh/": [ "list" ],
"/root/.ssh/*.pub": [ "read" ],
"/root/.ssh/known_hosts": [ "read" ],
"/usr/bin/ssh-keygen": [ "list" ],
"/usr/bin/ssh-keygen *": [ "exec" ],
"/usr/bin/dropbearkey": [ "list" ],
"/usr/bin/dropbearkey *": [ "exec" ]
},
"uci": [ "sshtunnel" ]
},
"write": {
"uci": [ "sshtunnel" ]
}
}
}