13 KiB
Executable file
ZeroUI - ZeroTier Controller Web UI - is a web user interface for a self-hosted ZeroTier network controller.
Explore the screenshots »
Bug Report
·
Feature Request
·
Ask a Question
Table of Contents
About
This project drew inspiration from ztncui and was developed to address the current limitations of self-hosted network controllers. Some of the issues in ztncui cannot be resolved due to the core architecture of the project. ZeroUI aims to resolve these issues and introduces the following features:
- It is a lightweight Single Page Application (SPA) built with React, providing an improved user experience, and it is mobile-friendly.
- ZeroUI is compatible with the ZeroTier Central API, allowing you to use CLI tools and custom applications designed for ZeroTier Central to manage your networks.
- ZeroUI implements controller-specific workarounds to address certain existing issues that are not addressed in ZTNCUI.
- ZeroUI is more feature-complete, supporting almost all network controller features, including a rule editor. Development is ongoing, so you can expect regular updates with new features and bug fixes.
- Deploying ZeroUI is straightforward; refer to the installation section for more information.
Curious about ZeroTier?
ZeroTier is an impressive open-source project available on a wide range of platforms. It can resolve many of your complex networking issues, potentially replacing your intricate VPN setups. You can create a virtual LAN and manage all your devices effortlessly.
In essence, ZeroTier combines the capabilities of VPN and SD-WAN, simplifying network management.
Built With
Frontend:
Backend:
Ready-to-use deployment solution:
Getting Started
Prerequisites
The recommended way to install ZeroUI is by using Docker and Docker Compose. To install Docker and Docker Compose on your system, please follow the installation guide in the official Docker documentation.
For HTTPS setup, you will need a domain name. You can obtain one for free at https://www.duckdns.org.
Installation
Here's a straightforward one-minute installation guide, perfect for a fresh VPS setup:
- Create a project directory
mkdir -p /srv/zero-ui/
cd /srv/zero-ui/
- Download the
docker-compose.yml
file
wget https://raw.githubusercontent.com/dec0dOS/zero-ui/main/docker-compose.yml
or
curl -L -O https://raw.githubusercontent.com/dec0dOS/zero-ui/main/docker-compose.yml
- Replace
YOURDOMAIN.com
with your domain name and set admin credentials (ZU_DEFAULT_PASSWORD
) indocker-compose.yml
- Pull the image
docker pull dec0dos/zero-ui
- Run the containers
docker-compose up -d --no-build
- Check if everything is okay (
CTRL-C
to stop log preview)
docker-compose logs -f
- Disable your firewall for the following ports:
80/tcp
,443/tcp
, and9993/udp
- On Ubuntu/Debian with ufw installed:
ufw allow 80/tcp
ufw allow 443/tcp
ufw allow 9993/udp
- Or you can use iptables:
iptables -A INPUT -p tcp --dport 80 -j ACCEPT
iptables -A INPUT -p tcp --dport 443 -j ACCEPT
iptables -A INPUT -p udp --dport 9993 -j ACCEPT
- Navigate to
https://YOURDOMAIN.com/app/
. Now you can use your ZeroUI instance with HTTPS support and automated certificate renewal.
To disable Caddy proxy and HTTPS, remove the
https-proxy
fromdocker-compose.yml
, setZU_SECURE_HEADERS
tofalse
, and change zero-ui portexpose
toports
.
Advanced manual setups are also supported. Check the following environment variables as a reference:
Name | Default value | Description |
---|---|---|
NODE_ENV | unset | You could learn more here |
LISTEN_ADDRESS | 0.0.0.0 |
Express server listen address |
ZU_SERVE_FRONTEND | true |
You could disable frontend serving and use ZeroUI instance as REST API for your ZeroTier controller |
ZU_SECURE_HEADERS | true |
Enables helmet |
ZU_CONTROLLER_ENDPOINT | http://localhost:9993/ |
ZeroTier controller API endpoint |
ZU_CONTROLLER_TOKEN | from /var/lib/zerotier-one/authtoken.secret |
ZeroTier controller API token |
ZU_DEFAULT_USERNAME | unset (docker-compose.yml : admin) |
Default username that will be set on the first run |
ZU_DEFAULT_PASSWORD | unset (docker-compose.yml : zero-ui) |
Default password that will be set on the first run |
ZU_DATAPATH | data/db.json |
ZeroUI data storage path |
ZU_DISABLE_AUTH | false |
If set to true, automatically log in all users. This is useful if ZeroUI is protected by an authentication proxy. Note that when this value is changed, the localStorage of instances of logged-in panels should be cleared |
ZU_LAST_SEEN_FETCH | true |
Enables Last Seen feature |
ZU_LAST_SEEN_SCHEDULE | */5 * * * * |
Last Seen cron-like schedule |
ZU_LOGIN_LIMIT | false |
Enable rate limiter for /login endpoint |
ZU_LOGIN_LIMIT_WINDOW | 30 | The duration of the IP ban in minutes |
ZU_LOGIN_LIMIT_ATTEMPTS | 50 | Login attemps before ban |
ZeroUI could be deployed as a regular nodejs web application, but it requires a ZeroTier controller that is installed with the zerotier-one
package. For more info about the network controller, you could read here.
For Ansible Role, please refer to the zero-ui-ansible repository.
Controller Setup Tips (Outside Docker)
If you are using an existing controller on the host, you may need to allow connections from the Docker container. There are two ways to do this:
- Allow controller management from any IP address:
echo "{\"settings\": {\"portMappingEnabled\": true,\"softwareUpdate\": \"disable\",\"allowManagementFrom\": [\"0.0.0.0/0\"]}}" > /var/lib/zerotier-one/local.conf
Warning: Don't forget to block connections to 9993/TCP from the WAN. Directly exposing the controller API to the WAN is not recommended; it should be proxified via the ZeroUI backend.
- Add
network_mode: "host"
to zero-ui indocker-compose.yml
.
For more information, please refer to this discussion.
Usage
After installation, log in with the credentials declared with ZU_DEFAULT_USERNAME
and ZU_DEFAULT_PASSWORD
.
Currently, some main ZeroTier Central features are missing. Refer to the roadmap for more information.
For screenshots, please refer to the screenshots section.
Update
To get the latest version, simply run
docker-compose pull && docker-compose up -d --no-build
in the folder where docker-compose.yml
is located. Backups may not be necessary since most of your data is usually saved at the controller level, but it's still a good idea to consider them as a precautionary measure.
Backup
You should regularly back up the zerotier-one
and data
folders in your ZeroUI installation directory. You can do this manually before upgrading using the following commands:
tar cvf backup-ui.tar data/
tar cvf backup-zt.tar zerotier-one/
Roadmap
For a list of proposed features (and known issues), see the open issues.
- Top Feature Requests (Add your votes using the 👍 reaction)
- Top Bugs (Add your votes using the 👍 reaction)
- Newest Bugs
When creating bug reports, please ensure they are:
- Reproducible. Include steps to reproduce the problem.
- Specific. Provide as much detail as possible, including version, environment, etc.
- Unique. Avoid duplicating existing open issues.
- Scoped to a Single Bug. Report one bug per issue.
Contributing
Firstly, thank you for considering contributing! Contributions are what make the open-source community thrive. Any contributions you make will benefit everyone, and they are highly appreciated.
To contribute:
- Fork the project.
- Create your feature branch (
git checkout -b feat/amazing_feature
). - Commit your changes (
git commit -m 'feat: add amazing_feature'
). - Push to the branch (
git push origin feat/amazing_feature
). - Open a Pull Request
ZeroUI uses conventional commits, so please follow the guidelines. You can use yarn commit
to open a Text-Based User Interface (TUI) that follows conventional commits guidelines.
Development Environment
To set up a development environment, follow these steps:
- Clone the repo
git clone https://github.com/dec0dOS/zero-ui.git
cd zero-ui
- Install packages
yarn install
- Start the development server
yarn dev
- Navigate to http://localhost:3000
You will also need to install the ZeroTier controller. On Linux, installing the zerotier-one
package is sufficient, but other platforms may require some adjustments. First, you should obtain the controller token. On macOS, you can find it using the following command:
sudo cat "/Library/Application Support/ZeroTier/One/authtoken.secret"
Afterward, you can start the ZeroUI development environment:
ZU_CONTROLLER_TOKEN=TOKEN_FROM_authtoken.secret yarn dev
For other platforms, please refer to the ZeroTier manual.
Support
If you need assistance or have questions, reach out through GitHub Discussions.
Security
ZeroUI follows best practices for security, but complete security cannot be guaranteed. ZeroUI is provided "as is" without any warranty. Use at your own risk.
For enterprise support and a more reliable and scalable solution, please consider using ZeroTier Central.
For more information and to report security issues, please refer to our security documentation.
Copyright Notice
ZeroUI is not affiliated with, associated with, or endorsed by ZeroTier Central or ZeroTier, Inc.
License
See LICENSE for more information.