https://github.com/gavinning/jump-server
jump server 跳板机
https://github.com/gavinning/jump-server
j2 j3 jump-server jumpserver
Last synced: 2 months ago
JSON representation
jump server 跳板机
- Host: GitHub
- URL: https://github.com/gavinning/jump-server
- Owner: gavinning
- License: mit
- Created: 2018-11-25T12:56:16.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-10-16T12:25:16.000Z (almost 6 years ago)
- Last Synced: 2025-07-08T13:09:16.298Z (3 months ago)
- Topics: j2, j3, jump-server, jumpserver
- Language: JavaScript
- Size: 23.4 KB
- Stars: 6
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE
Awesome Lists containing this project
README
JumpServer
---
跳板机,推荐配合``oh-my-zsh``服用
### Requirements
* nodejs 8.x+
* npm 6.x+### Install
```sh
npm i @gavinning/jump-server -g
```### Usage
```sh
j2
# or
jumpserver
```### yaml配置文件
配置文件路径``~/.jumpserver.yml``
```yaml
# 统一授权
auth:
port: 22
password: 123
# 默认privateKey优先
privateKey: '/root/.ssh/your-private-key'
passphrase: 123
# 连接超时时间
readyTimeout: 5000server:
centos.shared:
name: hostname1
desc: 测试机12
username: root
192.168.1.222:
name: hostname21
desc: 测试机234
username: work192.168.1.31:
name: hostname3
desc: 测试机3342
port: 22
username: super
password: 123
privateKey: '/root/.ssh/your-private-key'
passphrase: 123
```