Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/Julien-R44/fast-ssh

⌨️ FastSSH is a TUI that allows you to quickly connect to your services by navigating through your SSH config.
https://github.com/Julien-R44/fast-ssh

command-line command-line-tool ssh terminal tui

Last synced: 3 months ago
JSON representation

⌨️ FastSSH is a TUI that allows you to quickly connect to your services by navigating through your SSH config.

Awesome Lists containing this project

README

        





Connect quickly to your services 🚀
















FastSSH is a TUI that allows you to quickly connect to your services by navigating through your SSH config.



![](https://i.imgur.com/pVf2hES.png)

# Installation
Download the latest release for your platform [here](https://github.com/Julien-R44/fast-ssh/releases), extract it and put it in a directory that is in your PATH (Packages managers coming soon). For example:

```
sudo cp fast-ssh /usr/bin/fast-ssh
```

If you use cargo you can run `cargo install fast-ssh`

Then you can launch Fast-SSH with `fast-ssh`.

# Documentation
The default SSH configuration file should be located at `~/.ssh/config`. If you already have an SSH configuration file with some hosts defined then you don't have to add anything, Fast-SSH just parses this file and displays it. If you don't have an SSH configuration file or you don't have any hosts defined within it then below is an example to help you set one up for use with Fast-SSH. Further information about the SSH configuration file can be found at this link: https://linuxize.com/post/using-the-ssh-config-file/

```
Host *
UpdateHostKeys yes

Host Desktop # Name of host you want to connect to, for use with Fast-SSH.
HostName 192.168.1.10 # Hostname using an IP address, this can be a public or private one.
User YourCoolUsername # Username for the host you want to SSH into.

Host Server # Name of host you want to connect to, for use with Fast-SSH.
HostName 216.58.214.14 # Hostname using an IP address, this can be a public or private one.
User YourCoolUsername # Username for the host you want to SSH into.

Host AnotherServer # Name of host you want to connect to, for use with Fast-SSH.
HostName example.com # Hostname using a domain name.
User YourCoolUsername # Username for the host you want to SSH into.

Host RaspberyPi/Arch-Linux # Defined group and name of host for use with Fast-SSH.
HostName alarm-pi.local # Hostname using a locally resolved address.
User YourCoolUsername # Username for the host you want to SSH into.

Host RaspberryPi/Raspbian # Defined group and name of host for use with Fast-SSH.
HostName raspbian.lan # Hostname using a locally resolved address.
User YourCoolUsername # Username for the host you want to SSH into.
```

Fast-SSH has a group system. This allows you to sort your servers, for example, by project, mission or client. To make some groups, it's simple, just define your `Host` as `Group/ServerName` (see full configuration in above example) and your groups will be displayed in FastSSH. You can now select a group and display only the servers defined in that group. Now all you have to do is launch Fast-SSH, select your service and press enter to connect.

## File Database
A file database is stored at `$XDG_CONFIG_HOME/FastSSH/db.ron` ( `%APPDATA%/FastSSH/db.ron` for Windows ).

This file is automatically created when you launch Fast-SSH.
This database is used to store the number of connections to a service and the date of last connection.

## Search Mode
Fast-SSH implements a search mode ( fuzzy ) that allows you to type to find one of your hosts. To use it, press `s`, start typing, finish your selection with the arrow keys then press enter once the host is selected to make the SSH connection. Press ESC if you wish to leave the search mode and return to the "groups" mode.

## Shortcuts
| Key | Action |
| ------------- | ------------- |
| h | Display Shortcuts Panel |
| Enter | Validate selection : Execute SSH cmd |
| Tab/BackTab | Navigate through your groups |
| Left/Right | Navigate through your groups |
| Up/Down | Navigate through your hosts |
| c | Switch Config display mode |
| PageUp/Down | Scroll Configuration |
| s | Enable Search Mode |
| Esc | Exit Search Mode |
| q | Exit Fast-SSH |

## Configuration
Fast-SSH has a few configuration options. You can find the configuration in :
- Unix : `$XDG_CONFIG_HOME/FastSSH/config.yaml`
- Windows : `%APPDATA%/FastSSH/config.yaml`

```
# This is the default configuration for FastSSH.

theme:
text_primary: "#b967ff"
text_secondary: "#ffffff"
border_color: "#b967ff"
```

# Known issues
If you are a user of the new Windows terminal and you encounter raw ANSI escape sequences when you run fast-ssh, you must unset the TERM environment variable before running the application. Read more about this here : https://github.com/crossterm-rs/crossterm/issues/580

Best solution would be to create an alias like this :
```
alias fast-ssh="TERM= fast-ssh"
```