服务器登录工具
Project description
This is a SSH login tool
Installation
pip install --upgrade 0lever-so or pip install --upgrade 0lever-so -i https://pypi.org/simple/
Usage
# 初始化配置文件,升级无需初始化,chmod 400 ~/.so/keys/* ➜ ~ so_install ➜ ~ cd .so ➜ .so tree . ├── keys │ └── demo.pem └── password.yaml 1 directory, 2 files ➜ .so
# 配置文件 ssh: - id: 1 name: demo1 user: fqiyou password: xxx host: 1.1.1.1 port: 20755 - id: 2 name: demo2 user: fqiyou password: xxx host: 1.1.1.1 port: 39986 - id: 3 name: demo3 user: root password: demo.pem host: 1.1.1.1 port: 22
Other-shell
#!/usr/bin/expect set USER "xxx" set PASSWD "xxx" set timeout 10 trap { set rows [stty rows] set cols [stty columns] stty rows $rows columns $cols < $spawn_out(slave,name) } WINCH spawn su - $USER expect "Password: " send "$PASSWD\n" interact
#!/usr/bin/expect -f set HOST [lindex $argv 0] set USER [lindex $argv 1] set PASSWD [lindex $argv 2] set PORT [lindex $argv 3] set timeout 10 trap { set rows [stty rows] set cols [stty columns] stty rows $rows columns $cols < $spawn_out(slave,name) } WINCH spawn ssh $USER@HOST -p $PORT expect { "*yes/no" {send "yes\r"; exp_continue} "*password:" {send "$PASSWD\r"} } interact ```
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file 0lever_so-1.2.0-py2-none-any.whl
.
File metadata
- Download URL: 0lever_so-1.2.0-py2-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 2
- Uploaded using Trusted Publishing? No
- Uploaded via: Python-urllib/2.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 45fd5de96b0d8a3e83e160835f72f6233ca657fa627f0c87b61cc15f6f0f845a |
|
MD5 | c4f87f5b63da1e28dac174e12167399d |
|
BLAKE2b-256 | ec75e1d501829ca2ceb2c678fff9ff37182da5c860d16d0702f4d82a8acf7f31 |