Metadata-Version: 2.1
Name: remote-ssh-tunnel-controller-qt
Version: 0.3.0
Summary: Remote SSH Tunnel (RSSHT) controller - Qt frontend
Home-page: https://github.com/guallo/remote-ssh-tunnel-controller-qt
Author: The remote-ssh-tunnel-controller-qt Authors
Author-email: guallo.username@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: remote-ssh-tunnel-controller-lib (<1,>=0.1.0)
Requires-Dist: PySide2 (<5.15,>=5.14.2.2)

# remote-ssh-tunnel-controller-qt

![Run tests](https://github.com/guallo/remote-ssh-tunnel-controller-qt/workflows/Run%20tests/badge.svg)
![Upload release assets](https://github.com/guallo/remote-ssh-tunnel-controller-qt/workflows/Upload%20release%20assets/badge.svg)

```shell
pip install remote-ssh-tunnel-controller-qt
```

```shell
rssht-controller-qt
```

Generate the public/private rsa key pair the *controller* will use to connect to the *intermediate SSH server*, replace `<YOUR-NICKNAME-WITHOUT-SPACE-CHARACTERS>` accordingly:

```shell
ssh-keygen -C <YOUR-NICKNAME-WITHOUT-SPACE-CHARACTERS> -N "" -f id_rsa
```

Copy the public key to the *intermediate SSH server*, replace `<INTERMEDIATE-SSH-USER>`, `<INTERMEDIATE-SSH-SERVER>` and `<INTERMEDIATE-SSH-PORT>` accordingly (see [the configuration of the intermediate SSH server](https://github.com/guallo/remote-ssh-tunnel-agent/blob/master/README.md#manual-1)):

```shell
ssh-copy-id -i id_rsa.pub <INTERMEDIATE-SSH-USER>@<INTERMEDIATE-SSH-SERVER> -p <INTERMEDIATE-SSH-PORT>
```

## Development

### Generate rssht_controller_qt/resources.py file

```shell
pyside2-rcc -o rssht_controller_qt/resources.py resources.qrc
```


