apsta
AP+STA WiFi hotspot manager for Linux.
Stay connected to your WiFi network and broadcast a hotspot simultaneously — without the manual nmcli / hostapd pain, without dropping your connection, and without touching a config file.
$ apsta detect
apsta — Hardware Detection
→ Found 1 WiFi interface(s):
wlo1 [e4:c7:67:e4:30:ae] connected to HomeWiFi
Capability Report
→ Driver: iwlwifi
→ Chipset: Intel Wi-Fi 6 AX200
✔ AP mode (hotspot) supported
✔ STA mode (WiFi client) supported
✘ AP+STA simultaneous (nmcli) not supported
✔ AP+STA simultaneous (hostapd) supported
Verdict
✔ Your hardware supports AP+STA simultaneously (hostapd mode).
✔ apsta will use hostapd + dnsmasq to share WiFi without disconnecting.
→ Run: sudo apsta start
The Problem
On Linux, running a hotspot while staying connected to WiFi is harder than it should be:
nmcli device wifi hotspotkills your existing WiFi connection — it takes over the interface completely- Most WiFi cards don't support concurrent AP+STA mode in the way NetworkManager expects
- Windows handles this transparently via a virtual WiFi layer — Linux doesn't have an equivalent
- NetworkManager doesn't tell you why it failed or what your options are
- COSMIC DE has no hotspot UI at all
apsta fixes all of this.
How It Works
apsta detect
↓
Parse iw list → find "valid interface combinations"
↓
Level 1: AP+managed in SAME #{ } block, total >= 2?
YES → nmcli virtual interface (Strategy 1)
Level 2: AP and managed in SEPARATE #{ } blocks, #channels <= 1?
YES → hostapd virtual interface (Strategy 2) — Intel AX200, iwlwifi
Neither → explain options → suggest ethernet / USB dongle / --force
Strategy 1 — nmcli concurrent (true hardware AP+STA):
Creates a virtual wlo1_ap interface and runs nmcli device wifi hotspot on it.
WiFi stays on wlo1. Requires the driver to expose AP+managed in the same
interface combination block.
Strategy 2 — hostapd concurrent (split-block AP+STA):
Creates a virtual wlo1_ap interface, runs hostapd directly (bypassing nmcli),
assigns IP 192.168.42.1/24, starts dnsmasq for DHCP, and sets up NAT so
hotspot clients get internet through wlo1's connection. This is how Windows
handles the Intel AX200 — apsta now does the same on Linux.
- Create virtual
wlo1_apon top ofwlo1(iw dev wlo1 interface add wlo1_ap type __ap) - Assign randomized locally-administered MAC to
wlo1_ap— keepswlo1MAC unchanged so NM holds its STA connection - Tell NM to ignore
wlo1_aponly —wlo1stays fully managed and connected - Run hostapd on
wlo1_apwith channel matchingwlo1's current channel - Assign IP
192.168.42.1/24towlo1_ap - Start dnsmasq for DHCP — clients get
192.168.42.10–192.168.42.100 - Enable NAT via iptables MASQUERADE so
wlo1_apclients get internet throughwlo1
Strategy 3 — nmcli --force (drops WiFi):
Uses the single interface as AP. WiFi disconnects. Only triggered with --force.
Key technical decisions:
- Split-block detection: parses multi-line
iw listcombinations by joining continuation lines before processing — correctly identifies Intel AX200/iwlwifi which exposes AP and managed in separate#{ }blocks with#channels <= 1 - Channel sync: reads live STA frequency via
iw dev linkand forces the AP to the same channel — preventsDevice or resource busyon single-radio cards - Band sync: derives band (
aorbg) from frequency — preventsband bg channel 36crash - Auto channel (no STA link): scores nearby AP congestion and auto-picks a safe channel (2.4 GHz: 1/6/11, 5 GHz: 36/40/44/48)
- DFS channels: detects regulatory-blocked channels (52–144) and aborts with clear instructions
- Virtual interface MAC: randomises the locally-administered MAC (
02:xx:xx:xx:xx:xx) on the AP interface only — base interface MAC stays unchanged so NM keeps its STA connection - State persistence: saves
ap_interface,base_interface,active_con_name, andstart_methodto/etc/apsta/config.jsonso teardown is exact and method-aware
Project Layout
The codebase is organized into small folder-based packages for readability and scalability:
apsta.py— CLI launcher and argparse wiringapsta_cli/— CLI implementation packageapsta_cli/cmd/— user-facing command handlers (detect, status/config, USB)apsta_cli/net/— hotspot lifecycle internals (start, stop, support helpers)apsta_gui/— GTK app packageapsta_gui/mixins/— UI page builders and action/polling logicapsta_gtk.py— GTK launchergtk-ui/apsta-gtk— desktop launcher script used by installer/package
This keeps entrypoints tiny and isolates domains so changes stay local.
Install
For Users
One command (recommended)
1. Official PPA (Ubuntu / Pop!_OS) — Recommended
The easiest way to install apsta on Ubuntu-based distributions (22.04, 24.04, and Noble) is via the official Launchpad PPA. This ensures you get automatic updates and all system dependencies (like hostapd and dnsmasq) are handled for you.
sudo add-apt-repository ppa:krotrn/apsta
sudo apt update
sudo apt install apsta
2. Arch Linux / Manjaro / EndeavourOS
Add the apsta pacman repository once, then install with pacman or yay
(updates arrive with your normal pacman -Syu):
sudo tee -a /etc/pacman.conf >/dev/null <<'EOF'
[apsta]
SigLevel = Optional TrustAll
Server = https://github.com/krotrn/apsta/releases/download/arch-repo
EOF
sudo pacman -Sy apsta # or: yay -S apsta
Optional extras for hostapd mode and the GUI:
sudo pacman -S --needed hostapd dnsmasq iptables python-gobject gtk4 libadwaita polkit
Auto-start on boot: sudo systemctl enable --now apsta
Prefer building yourself? cd packaging/arch && makepkg -si from a clone of this repo.
3. Manual One-Liner (Python pipx)
If you are on another Debian/Ubuntu-based distribution or prefer using pipx, use this one-liner to install the dependencies and the app:
sudo apt update && sudo apt install -y pipx network-manager iw iproute2 usbutils pciutils hostapd dnsmasq python3-gi gir1.2-gtk-4.0 gir1.2-adw-1 python3-qrcode python3-pil && pipx ensurepath && pipx install git+https://github.com/krotrn/apsta.git
4. Development / Source Install
If you want to contribute or build from source:
git clone https://github.com/krotrn/apsta
cd apsta
# Install the CLI and GTK UI locally
pipx install .
# Or run the manual install script
sudo ./install.sh
For Maintainers
Releasing
Run the Version Bump workflow (Actions → Version Bump → enter X.Y.Z), or locally:
python scripts/bump_version.py X.Y.Z # pyproject, setup.py, modules, PKGBUILD, debian/changelog
git commit -am "chore: release X.Y.Z" && git tag vX.Y.Z && git push origin main vX.Y.Z
The vX.Y.Z tag then publishes everything:
| Workflow | Job | Publishes | Needs |
|---|---|---|---|
release.yml |
publish-pypi | PyPI | trusted publisher or PYPI_API_TOKEN |
packages.yml |
github-release | GitHub release vX.Y.Z with the .deb and .pkg.tar.zst |
— |
packages.yml |
arch-repo | pacman repo on the arch-repo release (pacman/yay -S apsta) |
— (ARCH_GPG_PRIVATE_KEY to sign) |
packages.yml |
aur | AUR package apsta |
AUR_SSH_PRIVATE_KEY |
packages.yml |
ppa | Launchpad PPA (vars.PPA, default ppa:krotrn/apsta) |
LAUNCHPAD_GPG_PRIVATE_KEY (+ LAUNCHPAD_GPG_PASSPHRASE) |
Jobs whose secret is missing are skipped with a notice, so they can be enabled one at a time.
Every PR and push to main also builds and smoke-tests both packages.
Secrets (Settings → Secrets and variables → Actions):
AUR_SSH_PRIVATE_KEY— private half of an SSH key registered on your aur.archlinux.org account.LAUNCHPAD_GPG_PRIVATE_KEY—gpg --armor --export-secret-keys <id>of the key registered on Launchpad;LAUNCHPAD_GPG_PASSPHRASEif it has one.ARCH_GPG_PRIVATE_KEY— optional, passphrase-less key to sign the pacman repo. Once set, users can import it (apsta.ascon thearch-reporelease) withpacman-key --add+--lsign-keyand dropTrustAllfrom theirSigLevel.
Building packages locally
packaging/arch/ci-build.sh local # Arch: packaging/arch/out/*.pkg.tar.zst
packaging/deb/ci-build.sh binary # Ubuntu (run on Ubuntu): packaging/deb/out/*.deb
CI
.github/workflows/ci.yml— lint (ruff), compile checks, and unit tests.github/workflows/packages.yml— Arch + Ubuntu package builds and publishing (above).github/workflows/version-bump.yml— bumps versions, tagsvX.Y.Z, starts the release workflows.github/workflows/release.yml— verifies version sync/tag match and publishes to PyPI
Required dependencies (all default on Ubuntu/Pop!_OS/Fedora/Arch):
nmcli · iw · ip · lsusb · lspci
For hostapd mode (Intel AX200 and similar split-block cards):
sudo apt install hostapd dnsmasq # Debian / Ubuntu
sudo pacman -S --needed hostapd dnsmasq # Arch
apsta will prompt if these are missing when hostapd mode is needed.
Python 3.8+ required.
CLI Usage
# Show version
apsta --version
# Detect hardware capability (shows both nmcli and hostapd support levels)
apsta detect
# Detect/status as machine-readable JSON
apsta detect --json
apsta status --json
# Start hotspot (auto-detects best method — tries nmcli, then hostapd, then --force)
sudo apsta start
# Start even if AP+STA not supported (drops WiFi)
sudo apsta start --force
# Stop hotspot (method-aware: cleans up hostapd/dnsmasq/iptables if needed)
sudo apsta stop
# Show current state (shows connected clients in hostapd mode)
apsta status
# Show only connected hotspot clients (hostapd mode)
apsta status --clients
# Disconnect one client by MAC, IP, or hostname (hostapd mode)
sudo apsta status --disconnect aa:bb:cc:dd:ee:ff
# Apply per-client bandwidth limit in Kbps (hostapd mode)
sudo apsta status --limit-client aa:bb:cc:dd:ee:ff --limit-kbps 8000
# Quick profile switch from status command
sudo apsta status --use-profile travel
# Configure SSID and password
sudo apsta config --set ssid=MyHotspot
sudo apsta config --set password=secret123
# Manage named profiles
apsta profile list
sudo apsta profile create travel
sudo apsta profile use travel
apsta profile show travel
# Scan plugged-in USB WiFi adapters
apsta scan-usb
# Suggest a USB adapter to buy
apsta recommend
# Auto-start on boot + survive sleep/wake
sudo apsta enable
sudo apsta disable
Shell completion
Generate completion scripts directly from apsta:
apsta completion bash
apsta completion zsh
apsta completion fish
Install manually:
# bash
apsta completion bash | sudo tee /etc/bash_completion.d/apsta >/dev/null
# zsh
apsta completion zsh | sudo tee /usr/local/share/zsh/site-functions/_apsta >/dev/null
# fish
apsta completion fish | sudo tee /etc/fish/completions/apsta.fish >/dev/null
GTK4 / Libadwaita (GNOME, KDE, Xfce, any desktop)
Full three-page GUI: Status, Hardware, Settings. Includes force-start toggle, quick profile switch, QR sharing, and live client management (disconnect + bandwidth limit).
apsta-gtk
apsta-gtk is installed by the same one-command package install.
Requires: python3-gi, gir1.2-gtk-4.0, gir1.2-adw-1, python3-qrcode, python3-pil
sudo apt install python3-gi gir1.2-gtk-4.0 gir1.2-adw-1 python3-qrcode python3-pil # Debian / Ubuntu
sudo pacman -S --needed python-gobject gtk4 libadwaita python-qrcode python-pillow # Arch
Auto-start and Sleep/Wake Persistence
sudo apsta enable
This installs:
/etc/systemd/system/apsta.service— starts hotspot after NetworkManager connects on boot (nm-online -qpre-condition, not a fragilesleep 3)/usr/lib/systemd/system-sleep/apsta-sleep— tears down hotspot before suspend, restores it after resume (works for both nmcli and hostapd modes)
Works on systemd, OpenRC, and runit. Non-systemd users get exact manual instructions and pm-utils hook installation if available.
USB Dongle Support
If your built-in card doesn't support either AP+STA mode:
# See what's plugged in
apsta scan-usb
# See what to buy
apsta recommend
Recommended chipsets (in-kernel drivers, plug and play):
| Chipset | WiFi Gen | Driver | Notes |
|---|---|---|---|
| mt7921au | WiFi 6 | mt7921u | Best overall. Kernel 5.19+ |
| mt7612u | WiFi 5 | mt76x2u | Rock-solid, works everywhere |
| mt7610u | WiFi 5 | mt76x0u | AC600, great for hotspot-only |
| mt7925u | WiFi 7 | mt7925u | Newest. Kernel 6.7+ |
Realtek chipsets are intentionally excluded — out-of-kernel drivers, unreliable AP+STA.
Compatibility
| Distro | CLI | GTK UI |
|---|---|---|
| Pop!_OS 22.04 | ✅ | ✅ |
| Pop!_OS COSMIC | ✅ | ✅ |
| Ubuntu 22.04 / 24.04 | ✅ | ✅ |
| Fedora 39+ | ✅ | ✅ |
| Arch Linux | ✅ | ✅ |
| Alpine (OpenRC) | ✅ | ✅ |
| Artix (runit) | ✅ | ✅ |
Tested hardware:
- Intel Wi-Fi 6 AX200 (iwlwifi) — hostapd mode ✅
- MediaTek mt7921au USB — nmcli mode ✅
Why This Exists
Built out of frustration with Pop!_OS COSMIC's missing hotspot UI and the silent WiFi-disconnection behaviour of nmcli hotspot. The deeper problem: Windows implements a virtual WiFi multiplexing layer that makes AP+STA work on almost any card. Linux exposes raw hardware capability honestly — and for cards like the Intel AX200, that capability exists but nmcli can't use it. apsta bridges the gap using hostapd directly.
If you've ever typed:
nmcli device wifi hotspot ifname wlan0 ssid foo password bar
...and watched your SSH session drop — this is for you.
Contributing
PRs welcome. The Python CLI has no dependencies beyond stdlib (plus optional hostapd/dnsmasq). The GTK UI requires PyGObject.
If you've tested on a distro or hardware not in the tables above, open an issue with your apsta detect output.
License
MIT
Release files for apsta 0.6.2
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| apsta-0.6.2.tar.gz | 49.6 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| apsta-0.6.2-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 102.2 kB
Release files / apsta-0.6.2.tar.gz
| Download URL | apsta-0.6.2.tar.gz |
|---|---|
| Size | 49.6 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
959414330ff8b8ccca65496967a3c673a59ddfbd96a51bcdde759a63916ae03f
|
|
BLAKE2b-256 checksum How to use checksums |
002ce2d40b5dc2e93a85b2105e3486e2a1ec1ad671cdbc47fa49102d5885d6c3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency logRelease files / apsta-0.6.2-py3-none-any.whl
| Download URL | apsta-0.6.2-py3-none-any.whl |
|---|---|
| Size | 52.5 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
21681cd7a76b22bdce387d8df1460b464f98bbe1ad8e674c5aef9a39e819a171
|
|
BLAKE2b-256 checksum How to use checksums |
a50ce6f1aaf8b90c968219c86f94a392e237396d564d62c75f44e3c3470b802f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 25, 2026.
Transparency log