Wssh:修订间差异

来自牛奶河Wiki
跳到导航 跳到搜索
(创建页面,内容为“=== 介绍 === WebSSH,用作 ssh 客户端来连接到 SSH 服务器。由 huashengdun 在 Github 上开源,项目地址为 <nowiki>https://github.com/huashengdun/webssh,用</nowiki> Python 编写,基于tornado、paramiko和xterm.js。 === Requirements === * Python 3.8+ === Quickstart === # Install: pip install webssh # Upgrade: python3 -m pip install --upgrade webssh === Server options === # start a http server with specified listen address and l…”)
 
无编辑摘要
第1行: 第1行:
=== 介绍 ===
=== 介绍 ===
WebSSH,用作 ssh 客户端来连接到 SSH 服务器。由 huashengdun 在 Github 上开源,项目地址为 <nowiki>https://github.com/huashengdun/webssh,用</nowiki> Python 编写,基于tornado、paramiko和xterm.js。
WebSSH,用作 ssh 客户端来连接到 SSH 服务器。由 huashengdun 在 Github 上开源,项目地址为 https://github.com/huashengdun/webssh,用 Python 编写,基于tornado、paramiko和xterm.js。


=== Requirements ===
=== Requirements ===
* Python 3.8+
* Python 3.8+


=== Quickstart ===
=== Quickstart ===
 
# Install: pip3 install webssh
# Install: pip install webssh
# Upgrade: python3 -m pip install --upgrade webssh
# Upgrade: python3 -m pip install --upgrade webssh


=== Server options ===
=== Server options ===
  # start a http server with specified listen address and listen port
  # start a http server with specified listen port
wssh --address='2.2.2.2' --port=8000
  wssh --port=30080 --fbidhttp=False --log-file-prefix=~/log/l_webssh.log
  wssh --port=30080 --fbidhttp=False --log-file-prefix=~/log/l_webssh.log
 
  # start a https server, certfile and keyfile must be passed
  # start a https server, certfile and keyfile must be passed
  wssh --certfile='/path/to/cert.crt' --keyfile='/path/to/cert.key'
  wssh --certfile='/path/to/cert.crt' --keyfile='/path/to/cert.key'
[[分类:Develop]]
[[分类:Platform]]
[[分类:Linux]]

2023年12月4日 (一) 12:20的版本

介绍

WebSSH,用作 ssh 客户端来连接到 SSH 服务器。由 huashengdun 在 Github 上开源,项目地址为 https://github.com/huashengdun/webssh,用 Python 编写,基于tornado、paramiko和xterm.js。

Requirements

  • Python 3.8+

Quickstart

  1. Install: pip3 install webssh
  2. Upgrade: python3 -m pip install --upgrade webssh

Server options

# start a http server with specified listen port
wssh --port=30080 --fbidhttp=False --log-file-prefix=~/log/l_webssh.log

# start a https server, certfile and keyfile must be passed
wssh --certfile='/path/to/cert.crt' --keyfile='/path/to/cert.key'