1 min read
Installation Guide
Follow these steps to deploy the Muterconn agent on your system.
Windows Installation (Recommended)
To deploy on a Windows machine, open an elevated PowerShell console (Run as Administrator) and run:
Set-ExecutionPolicy Bypass -Scope Process -Force; [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12; irm https://muterconn.com/install.ps1 | iex
This one-liner will:
- Temporarily bypass execution restrictions.
- Silently install Npcap (if not present) for raw packet spoofing.
- Scaffold
C:\muterconn\runtime directory. - Download the latest
muterconn-proxy.exe. - Register and start the
MuterconnProxyWindows service.
Linux Installation
To deploy on a standard Linux server, run the bootstrap script:
curl -fsSL https://muterconn.com/install.sh | sudo sh
This script will:
- Download the compiled agent binary.
- Install eBPF kernel headers.
- Configure and start the
muterconn-agentsystemd service.
Verification
Windows
Verify service state:
Get-Service -Name MuterconnProxy
Linux
Verify service state:
sudo systemctl status muterconn-agent
Was this page helpful?
Thank you for your feedback!