您好,登錄后才能下訂單哦!
ttyd 是一個運行在服務端,客戶端通過web瀏覽器訪問從而連接后臺 tty (pts偽終端)接口的程序,把 shell 終端搬到 web 瀏覽器中。
WebSocket 是 HTML5 開始提供的一種基于HTTP協議與服務器WebServer進行單會話、長連接、全雙工的網絡技術,依靠這種技術可以實現客戶端和服務端的長連接,雙向實時通信,以及基于服務端主動向客戶端的實時消息推送交互的底層技術棧。
它的最大特點就是,服務器可以主動向客戶端推送信息,客戶端也可以主動向服務器發送信息, 是真正的雙向平等對話,屬于服務器推送技術的一種。
其他特點包括:
ttyd 不同于 Shellinabox 項目的底層原理,它使用基于HTML5的 WebSocket
協議,更少的http交互帶來更高效、更高性能、更低延時的交互式會話服務。
ttyd 也可以通過 Nginx
7層HTTP代理訪問,更高的靈活性。
ttyd 內建支持 SSL/TLS
傳輸層認證加密,支持客戶端/服務端的單向/雙向證書認證加密,更高的安全性。
* macOS
* Linux
* Microsoft Windows
* FreeBSD/OpenBSD
* OpenWrt/LEDE
* C語言內建`libwebsockets`核心庫,高速、低內存消耗、高性能特性。
* 基于`Xterm.js`的全功能終端,支持 CJK 不同語言和 IME 輸入法字符輸入。
* 窗口圖形化 `ZMODEM` 支持,服務端需安裝 `lrzsz` 程序。
* 可實現基于簡單的 Basic Auth 基本認證(不加密通信)。
* 可實現基于 OpenSSL 的傳輸層加密通信支持(加密通信)。
* 跨平臺: macOS, Linux, FreeBSD/OpenBSD, OpenWrt/LEDE, Windows
sudo apt-get install cmake g++ pkg-config git vim-common libwebsockets-dev libjson-c-dev libssl-dev
git clone https://github.com/tsl0922/ttyd.git
cd ttyd && mkdir build && cd build
cmake ..
make && make install
如果安裝libwebsockets-dev
(版本過時)失敗,你可能需要單獨編譯安裝libwebsockets
。
####程序幫助信息:
ttyd is a tool for sharing terminal over the web
USAGE:
ttyd [options] <command> [<arguments...>]
VERSION:
1.5.2
OPTIONS:
-p, --port Port to listen (default: 7681, use `0` for random port)
-i, --interface Network interface to bind (eg: eth0), or UNIX domain socket path (eg: /var/run/ttyd.sock)
-c, --credential Credential for Basic Authentication (format: username:password)
-u, --uid User id to run with
-g, --gid Group id to run with
-s, --signal Signal to send to the command when exit it (default: 1, SIGHUP)
-a, --url-arg Allow client to send command line arguments in URL (eg: http://localhost:7681?arg=foo&arg=bar)
-R, --readonly Do not allow clients to write to the TTY
-t, --client-option Send option to client (format: key=value), repeat to add more options
-T, --terminal-type Terminal type to report, default: xterm-256color
-O, --check-origin Do not allow websocket connection from different origin
-m, --max-clients Maximum clients to support (default: 0, no limit)
-o, --once Accept only one client and exit on disconnection
-B, --browser Open terminal with the default system browser
-I, --index Custom index.html path
-6, --ipv6 Enable IPv6 support
-S, --ssl Enable SSL
-C, --ssl-cert SSL certificate file path
-K, --ssl-key SSL key file path
-A, --ssl-ca SSL CA file path for client certificate verification
-d, --debug Set log level (default: 7)
-v, --version Print the version and exit
-h, --help Print this text and exit
Visit https://github.com/tsl0922/ttyd to get more information and report bugs.
./ttyd -p 8080 bash -x
# 頁面以當前用戶的身份和環境變量進行后臺連接,fork 的方式為 bash 調試方式運行。
./ttyd --max-clients 2 -u 500 top
# 以指定的系統用戶身份的uid運行服務,登錄頁面即為運行 top 命令的輸出結果。
運行系統賬戶登錄認證
./ttyd --max-clients 2 login
# 以當前用戶身份運行服務。
注意:如需
root
身份登錄終端,需要在屬主屬組為 root 的/etc/securetty
文件中增加可登錄的終端類型pts/0 pts/1 pts/2
,當然也需要運行ttyd
程序的用戶有可讀/etc/securetty
文件的權限(當然也就是以 root 身份啟動ttyd
服務)。
所以,為安全性考慮,不建議以 root 身份啟動ttyd
服務,也就不建議直接以 root 賬戶登錄 ttyd websockets頁面偽終端。
運行特定的后臺交互式服務
# console
./ttyd --max-clients 2 -a mysql -h localhost
// -a, --url-arg 允許url攜帶參數,參數將直接應用到 command 程序中。
# browser 1 使用 command 默認參數
http://localhost:7681
Warning: Using a password on the command line interface can be insecure.
ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: YES)
# browser 2 在url請求中使用指定的 command 參數
http://localhost:7681/?arg=-uadmin&arg=-pPASSWORD&arg=mysql
mysql> show tables;
+---------------------------+
| Tables_in_mysql |
+---------------------------+
| columns_priv |
| db |
| event |
| func |
| general_log |
| help_category |
| help_keyword |
| help_relation |
| help_topic |
| innodb_index_stats |
| innodb_table_stats |
| ndb_binlog_index |
| plugin |
| proc |
| procs_priv |
| proxies_priv |
| servers |
| slave_master_info |
| slave_relay_log_info |
| slave_worker_info |
| slow_log |
| tables_priv |
| time_zone |
| time_zone_leap_second |
| time_zone_name |
| time_zone_transition |
| time_zone_transition_type |
| user |
+---------------------------+
28 rows in set (0.00 sec)
通過 ZMODEM 上傳下載文件,服務端需安裝 lrzsz
# 向客戶端發送本地文件
sz a.log
# 服務端接收客戶端上傳的文件
rz
本例使用本地自簽證書示例
# CA certificate (FQDN must be different from server/client)
openssl genrsa -out ca.key 2048
openssl req -new -x509 -days 365 -key ca.key -subj "/C=CN/ST=GD/L=SZ/O=Acme, Inc./CN=Acme Root CA" -out ca.crt
# server certificate (for multiple domains, change subjectAltName to: DNS:example.com,DNS:www.example.com)
openssl req -newkey rsa:2048 -nodes -keyout server.key -subj "/C=CN/ST=GD/L=SZ/O=Acme, Inc./CN=localhost" -out server.csr
openssl x509 -sha256 -req -extfile <(printf "subjectAltName=DNS:localhost") -days 365 -in server.csr -CA ca.crt -CAkey ca.key -CAcreateserial -out server.crt
# 雙向認證 client certificate (the p12/pem format may be useful for some clients)(可選)
openssl req -newkey rsa:2048 -nodes -keyout client.key -subj "/C=CN/ST=GD/L=SZ/O=Acme, Inc./CN=client" -out client.csr
openssl x509 -req -days 365 -in client.csr -CA ca.crt -CAkey ca.key -CAcreateserial -out client.crt
openssl pkcs12 -export -clcerts -in client.crt -inkey client.key -out client.p12
openssl pkcs12 -in client.p12 -out client.pem -clcerts
服務端單向認證
./ttyd --ssl --ssl-cert server.crt --ssl-key server.key bash
客戶端/服務端雙向認證,需增加--ssl-ca
選項,桌面瀏覽器另外需要單獨安裝 client.p12
證書到本地
./ttyd --ssl --ssl-cert server.crt --ssl-key server.key --ssl-ca ca.crt bash
在 curl 中測試證書驗證
curl --insecure --cert client.p12[:password] -v https://localhost:7681
如需把服務掛靠在 Nginx 后端,請配置增加如下 ws 參數:
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection upgrade;
proxy_read_timeout 3600
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。