One-click server deployment for Linux. Deploys a NoizDNS server — same binary, no extra configuration.
bash <(curl -Ls https://raw.githubusercontent.com/anonvector/noizdns-deploy/main/noizdns-deploy.sh)After installation, run noizdns anytime for the management menu.
SlipNet — Android VPN client with built-in NoizDNS support.
Before running the script, configure your DNS records:
| Record | Name | Value |
|---|---|---|
| A | ns.example.com |
Your server's IP address |
| AAAA | ns.example.com |
Your server's IPv6 address (optional) |
| NS | t.example.com |
ns.example.com |
Replace example.com with your domain. The t subdomain is the tunnel endpoint.
- Multi-distro: Fedora, Rocky Linux, CentOS, Debian, Ubuntu
- Auto-download: Pre-built server binary
- Non-interactive mode: CLI flags for fully automated deployments
- SOCKS5 proxy: Dante-based SOCKS proxy with optional user authentication
- Systemd integration: Auto-start, restart on failure, security hardening
- Firewall: Automatic iptables/firewalld/ufw configuration with persistence
- Key management: Auto-generates keypairs, reuses existing keys on reconfiguration
- Management menu: Status, logs, restart, reconfigure, update, uninstall
- Self-updating: Update binary or script from the management menu
bash <(curl -Ls https://raw.githubusercontent.com/anonvector/noizdns-deploy/main/noizdns-deploy.sh)The script will prompt for:
- Tunnel domain — e.g.
t.example.com - MTU — default
1232
Pass --domain to skip all prompts and run a fully automated deployment:
# Auto-install with defaults (generates new keys)
noizdns --domain t.example.com
# Custom MTU
noizdns --domain t.example.com --mtu 1400
# Use existing key files
noizdns --domain t.example.com \
--privkey-file /path/to/server.key \
--pubkey-file /path/to/server.pub
# One-liner via curl
bash <(curl -Ls https://raw.githubusercontent.com/anonvector/noizdns-deploy/main/noizdns-deploy.sh) \
--domain t.example.com| Flag | Description |
|---|---|
-d, --domain <domain> |
Tunnel domain (required for auto mode) |
-m, --mtu <value> |
MTU value (default: 1232) |
--pubkey-file <path> |
Path to existing public key file |
--privkey-file <path> |
Path to existing private key file |
-h, --help |
Show help |
When
--domainis provided, the script runs non-interactively. Keys are auto-generated if not provided, or reused if they already exist on the server. If providing key files, both--pubkey-fileand--privkey-fileare required.
noizdns────────────────────────────────────────────
NoizDNS Server Management
────────────────────────────────────────────
Status: Running
1) Install / Reconfigure
2) Show configuration
3) Service status
4) View live logs
5) User management
6) Restart service
7) Stop service
8) Start service
9) Update binary
10) Update this script
11) Uninstall
0) Exit
systemctl start noizdns-server # Start
systemctl stop noizdns-server # Stop
systemctl status noizdns-server # Status
journalctl -u noizdns-server -f # Live logsFrom the menu, select option 11. This removes:
- Systemd service
- Server binary
- Configuration and keys
- Service user
- iptables rules
- The deploy script itself
| Path | Description |
|---|---|
/usr/local/bin/noizdns |
Management script |
/usr/local/bin/dnstt-server |
Server binary |
/etc/noizdns/server.conf |
Configuration |
/etc/noizdns/*_server.key |
Private key |
/etc/noizdns/*_server.pub |
Public key |
MIT