Windows
- Pangolin for Windows Installer - This is the official page to download the latest installer file for Windows.
- All Versions - The releases section of this repository contains release notes and download artifacts for the latest version and all older versions.
Installation Steps
- Download and install the Pangolin client Download and install the Pangolin client using the official .msi installer from the download button above.
- Launch Pangolin Open Pangolin from the Start menu or the shortcut on your Desktop.
-
Log in with your Pangolin account
Log in on your Pangolin Cloud account or your self-hosted Pangolin instance.
- Click the Pangolin icon in the task bar’s system tray and select Log in.
Mac
- Pangolin for macOS Installer - This is the official page to download the latest installer file for macOS.
- All Versions - The releases section of this repository contains release notes and download artifacts for the latest version and all older versions.
Installation Steps
-
Download and install the Pangolin client
Download and install the Pangolin client using the official .dmg installer from the download button above.
- Open the downloaded .dmg file
- Drag and drop Pangolin.app into your Applications folder
- Launch Pangolin Open Pangolin from your Applications folder.
-
Install the VPN configuration
Follow the Pangolin onboarding flow, which will guide you to install the Pangolin VPN configuration.
- Select Open System Settings on startup when it asks to install a network extension.
- In System Settings, under General > Login Items & Extension > By Category > Network Extensions, ensure that Pangolin.app is toggled on.
- Select Allow when Pangolin asks to add a VPN configuration.
-
Log in with your Pangolin account
Log in on your Pangolin Cloud account or your self-hosted Pangolin instance.
- Click the Pangolin icon in the menu bar and select Log in.
Pangolin CLI (Linux)
Pangolin CLI is the recommended way to run a client using a command line interface on Mac or Linux. Support for Windows is coming soon. Pangolin CLI supports running as user device with authentication or a machine client.Quick Install (Recommended)
Use this command to automatically install Pangolin CLI. It detects your system architecture automatically and always pulls the latest version, addingpangolin to your PATH:
Manual Download
Binaries for Linux and macOS are available in the GitHub releases for ARM and AMD64 (x86_64) architectures. Download and install manually:Replace
{version} with the desired version and {architecture} with your architecture. Check the release notes for the latest information.Installation Steps
-
Download and install the Pangolin client
Install Pangolin using the installation script:
-
Log in with your Pangolin account
Log in on your Pangolin Cloud account or your self-hosted Pangolin instance:
-
Start Pangolin
Connect Pangolin by running:
Olm CLI
Olm CLI is the most basic form of a client. All other clients implement Olm under the hood in some form. If you’re looking for a CLI interface for a client, we recommend using Pangolin CLI where possible. Olm CLI is mainly only used for machine clients. Though the Pangolin CLI can also be used for machine clients, use Pangolin CLI if you expect to log in as a user.Binary Installation (Linux)
Quick Install (Recommended)
Use this command to automatically install Olm. It detects your system architecture automatically and always pulls the latest version, adding Olm to your PATH:Windows
If you would like to use Olm on Windows, wintun.dll is required. Please use latest installer from GitHub releases.Manual Download
Binaries for Linux, macOS, and Windows are available in the GitHub releases for ARM and AMD64 (x86_64) architectures. Download and install manually:Replace
{version} with the desired version and {architecture} with your architecture. Check the release notes for the latest information.Running Olm
Run Olm with the configuration from Pangolin:Systemd Service
Create a basic systemd service:/etc/systemd/system/olm.service
Docker
You can also run it with Docker compose. For example, a service in yourdocker-compose.yml might look like this using environment vars (recommended):
network_mode: hostbrings the olm network interface to the host system, allowing the WireGuard tunnel to function properlycap_add: - NET_ADMINis required to grant the container permission to manage network interfacesdevices: - /dev/net/tun:/dev/net/tunis required to give the container access to the TUN device for creating WireGuard interfaces
Windows Service
On Windows, olm has to be installed and run as a Windows service. When running it with the cli args, it will attempt to install and run the service to function like a cli tool. Minimum Windows version: Windows 10Service Management Commands
%PROGRAMDATA%\olm\olm-client\config.json.
Service Configuration
When running as a service, Olm will read configuration from environment variables or you can modify the service to include command-line arguments:- Install the service:
olm.exe install - Set the credentials in
%PROGRAMDATA%\olm\olm-client\config.json. Hint: if you run olm once with —id and —secret this file will be populated! - Start the service:
olm.exe start
Service Logs
When running as a service, logs are written to:- Windows Event Log (Application log, source: “OlmWireguardService”)
- Log files in:
%PROGRAMDATA%\olm\logs\olm.log
Gotchas
Olm creates a native tun interface. This usually requires sudo / admin permissions. Some notes:- Windows: Olm will run as a service. You can use the commands described Configure Client to manage it. You can use this to run it in the background if needed!
- LXC containers: Need to be configured to allow tun access. On Proxmox see below.
- Linux: May require root privileges or specific capabilities to create tun interfaces.
- macOS: May require additional permissions for network interface creation.
LXC Proxmox
- Create your LXC container.
- Go to the Resources tab of the container.
- Select Add. Then select Device Passthrough.
- On the Add Device prompt, enter dev/net/tun in the Device Path field and select Add.
- If the container is running, shut it down and start it up again.

