This repository contains a collection of OpenWrt packages, automatically compiled from various third-party sources. It serves as a personal feed for centralized package management and continuous updates.
The installation method depends on your OpenWrt version. Follow the instructions that match your system.
opkg
Connect to your device via SSH and run the following command to download the key to the trusted location:
wget -O /etc/opkg/keys/ataraxiasjel.key https://openwrt.ataraxiadev.com/public.key
Add the following line to /etc/opkg/customfeeds.conf
. If the file does not exist, create it.
src/gz custom_repo_name https://openwrt.ataraxiadev.com/<version>/<architecture>
Example for openwrt-24.10
on aarch64_generic
:
src/gz ataraxiasjel_repo https://openwrt.ataraxiadev.com/openwrt-24.10/aarch64_generic
opkg update
You can now securely install packages from this repository:
opkg install <package_name>
apk
Connect to your device via SSH. The key must be placed in /etc/apk/keys/
.
wget -O /etc/apk/keys/ataraxiasjel-key.pem https://openwrt.ataraxiadev.com/public-key.pem
Add the repository URL to a new line in /etc/apk/repositories
.
https://openwrt.ataraxiadev.com/snapshot/<architecture>/packages.adb
Example for SNAPSHOT
on aarch64_generic
:
https://openwrt.ataraxiadev.com/snapshot/aarch64_generic/packages.adb
apk update
You can now securely install packages from this repository:
apk add <package_name>
This repository includes, but is not limited to, the following packages:
zapret
zapret-tpws
zapret-mdig
zapret-ip2net
luci-app-zapret
podkop
luci-app-podkop
A complete list of available packages can be found in the respective architecture directories.
Packages in this repository are compiled and updated automatically using GitHub Actions. The build process is configured to track new releases in the upstream source repositories and trigger a rebuild when they appear.
The workflow configuration are located in a separate repository.
All packages are provided "as is", without any warranty. Use of packages from this repository is at your own risk. The author is not responsible for any device failures or security issues caused by the use of these packages.