Install my-project with pip
pip3 install bitssh
bitssh
Install my-project with pip
pip3 install bitssh
bitssh
Install from source
git clone https://github.com/Mr-Sunglasses/bitssh
cd bitssh
python3 -m pip3 install .
bitssh
- Check if you have
~/.ssh/config
file - If you don't, create it with
touch ~/.ssh/config
Here's a sample ~/.ssh/config
file that is recognized by bitssh:
Host abc
Hostname xxx.xx.xx.xx
User test1
port 22
Host pqr
Hostname ec2-xxx-xxx-xxx-xxx.compute-1.amazonaws.com
User ubuntu
port 22
Host wxy
Hostname xxx.xx.xxx.xx
User test2
port 22
You can check the OpenBSD ssh_config
reference for more information on how to setup ~/.ssh/config
.
Install from source
git clone https://github.com/Mr-Sunglasses/bitssh
cd bitssh
python3 -m pip3 install .
bitssh
- Check if you have
~/.ssh/config
file - If you don't, create it with
touch ~/.ssh/config
Here's a sample ~/.ssh/config
file that is recognized by bitssh:
Host abc
Hostname xxx.xx.xx.xx
User test1
port 22
Host pqr
Hostname ec2-xxx-xxx-xxx-xxx.compute-1.amazonaws.com
User ubuntu
port 22
Host wxy
Hostname xxx.xx.xxx.xx
User test2
port 22
You can check the OpenBSD ssh_config
reference for more information on how to setup ~/.ssh/config
.