Provide SSH access, diagnostics and administration for your edge devices.
Project description
Air Link
Air Link is a standalone service to manage remote access to an edge device and to install user apps.
Prerequisites
The edge device needs to run a Linux-based OS and have Python >=3.8 installed.
[!NOTE] To install a recent Python version like 3.11, you can use pyenv:
# install dependencies sudo apt update sudo apt install build-essential libssl-dev zlib1g-dev \ libbz2-dev libreadline-dev libsqlite3-dev curl \ libncursesw5-dev xz-utils tk-dev libxml2-dev libxmlsec1-dev libffi-dev liblzma-dev # install pyenv curl https://pyenv.run | bash # add pyenv to shell echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.bashrc echo 'command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.bashrc echo 'eval "$(pyenv init -)"' >> ~/.bashrc # source the bashrc source ~/.bashrc # install Python 3.11 pyenv install 3.11 pyenv global 3.11
Setup
1. Install the Air Link app on an edge device
Air link can be installed using pip.
To run the app automatically after a reboot, you can install it as a system service using its install
command.
pip install air-link
air-link install
The app is accessible on port 8080 and can be reached via the IP address of the edge device.
[!NOTE] To make the app accessible over an SSH tunnel, you can log into the edge device with the following command:
ssh -L 8888:localhost:8080 <target device>The app will then be reachable at
localhost:8888
on the developer machine.
[!TIP] To display the logs of the Air Link service, use the following command:
journalctl -u air_link -fThe
-f
flag will follow the logs in real-time.
2. Access via NiceGUI On Air
To make the Air Link app accessible via NiceGUI On Air, follow these three steps:
- Register a new device with a fixed region at https://on-air.nicegui.io.
- Enter the token in the top right corner of the Air Link web interface.
- Restart the Air Link service using the button next to the token.
Air Link will be reachable through the URL provided by NiceGUI On Air, for example https://europe.on-air.io/zauberzeug/rodja-air-link. We strongly suggest to set a fixed region for the device at https://on-air.nicegui.io to keep the URL stable.
3. Manage SSH keys (optional)
To allow SSH access without a password, you can add SSH keys to the edge device using the Air Link web interface. Use the key icon in the top right corner to open the SSH key management.
Usage
Install User Apps
You can install user apps via the Air Link web interface.
The web interface lists all available packages and provides a button to upload additional ZIP files.
The install button runs the install.sh
script from the ZIP file and outputs the process in the web interface.
SSH Login via NiceGUI On Air
Establish an SSH connection to the machine where Air Link is running via proxy jump over the On Air server:
ssh -J <your_organization>/<your_device_name>@<your_region>.on-air.io <username_on_device>@localhost
Explanation:
The combination of organization and device name before the @<region>.on-air.io
tells the On Air server where to route the SSH login.
The last bit tells SSH with which user you want to log into the edge device
(which is localhost
after Air Link received the tunneled data from the On Air server).
[!TIP] You can also put the proxy jump into your
~/.ssh/config
to establish a connection with the bash commandssh my-device
:Host my-device User <your_username> HostName localhost ProxyJump <your_organization>/<your_device_name>@<your_region>.on-air.io
It may also be beneficial to add the following configuration to the host entry:
StrictHostKeyChecking no UserKnownHostsFile /dev/null ServerAliveInterval 30 ForwardAgent yes SetEnv GIT_AUTHOR_NAME="Your Name" EMAIL="your.email@example.com"
Development
Design Decisions
- Assume an edge device with a Linux-based OS and Python >=3.8.
- Run side-by-side with user apps, because deploying/breaking a user app should not affect remote access.
- Provide SSH access to the edge device through the websocket tunnel from NiceGUI On Air.
Testing Locally
- Start On Air server with
./main.py
. - Start Air Link locally with
./main.py
(and let it point to the local On Air server "localhost"). - Establish an SSH connection to your local machine via proxy jump over the On Air server:
ssh -J zauberzeug/rodja@localhost:2222 rodja@localhost
.
Formatting
We use pre-commit to make sure the coding style is enforced. You first need to install pre-commit and the corresponding git commit hooks by running the following commands:
python3 -m pip install pre-commit
pre-commit install
After that you can make sure your code satisfies the coding style by running the following command:
pre-commit run --all-files
These checks will also run automatically before every commit.
Deployment
To deploy a new version of Air Link, add a new tag with the format vX.Y.Z
and push it to the repository.
The CI pipeline will then build the new version, upload it to PyPI, and create a new draft release on GitHub.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.