Tunneling on Debian GNU/Linux
Installing the Debian Package
- Select an OS to see the appropriate steps.
- Ubuntu
- Debian GNU/Linux
Ubuntu
Packages are available for all Ubuntu releases since 18.04 (Bionic).
Architectures available:
- x86_64
- arm64
note
Please read this script to ensure it is safe before running it.
curl -sSLf https://get.openziti.io/tun/scripts/install-ubuntu.bash | bash
Debian GNU/Linux
Debian | Ubuntu | Archs |
---|---|---|
12 Bookworm | Jammy 22.04 | x86_64, arm64 |
11 Bullseye | Focal 20.04 | x86_64, arm64 |
10 Buster | Bionic 18.04 | x86_64 |
9 Stretch | Xenial 16.04 | x86_64 |
Refer to the table to find the Ubuntu release name that is the contemporary of the Debian release. Substitute the Ubuntu
release name for focal
in the /etc/apt/sources.list.d/openziti.list
file.
UBUNTU_LTS=focal
curl -sSLf https://get.openziti.io/tun/package-repos.gpg \
| sudo gpg --dearmor --output /usr/share/keyrings/openziti.gpg
sudo chmod -c +r /usr/share/keyrings/openziti.gpg
echo "deb [signed-by=/usr/share/keyrings/openziti.gpg] https://packages.openziti.org/zitipax-openziti-deb-stable $UBUNTU_LTS main" \
| sudo tee /etc/apt/sources.list.d/openziti.list >/dev/null
sudo apt update
sudo apt install ziti-edge-tunnel
Enable and start the service
sudo systemctl enable --now ziti-edge-tunnel.service