Hi,
I am trying to understand how this repository is intended to be used by the Linux Proton VPN client.
My goal is to use Proton WireGuard over TCP port 443 on Linux, with country or specific server selection. I am not trying to use Stealth.
Context:
- The Proton VPN Winter 2025 and 2026 roadmap mentions a new VPN architecture for Linux.
- This public
protun repository appears to be part of that new architecture ... I guess?
- The Linux client has separate protocol names for
protun-tcp and protun-tls, so I am trying to clarify the TCP transport specifically, not Stealth or TLS obfuscation.
What I found:
python-proton-vpn-api-core has Protun protocol classes for protun-tcp, protun-tls, protun-udp, and protun-auto.
- The Linux Python client expects a NetworkManager VPN plugin named
protun with service org.freedesktop.NetworkManager.protun.
- On Arch Linux, current Proton VPN packages expose the Python glue, but
ProtunTCP.validate() returns False because NetworkManager does not list a protun VPN plugin.
- This repository appears to provide the transport core library. It exposes
unix_connect, which expects a TUN file descriptor, but I do not see the NetworkManager plugin, service file, or Linux runner that creates and configures the TUN device.
- The Proton client config advertises WireGuard TCP port 443, so the server side seems to support this transport.
Questions:
- Is there a public Linux NetworkManager plugin or service that uses this repository?
- If not, is Linux desktop Protun support private, not yet released, or handled by a different repository?
- Is
protun-tcp the non obfuscated WireGuard over TCP transport advertised as WireGuard TCP port 443 in the client config?
- Is this crate meant to be used directly by third party Linux clients by creating a TUN device and calling
unix_connect?
- Are there docs for the expected Linux routing and DNS setup around Protun TCP?
Thanks.
Hi,
I am trying to understand how this repository is intended to be used by the Linux Proton VPN client.
My goal is to use Proton WireGuard over TCP port 443 on Linux, with country or specific server selection. I am not trying to use Stealth.
Context:
protunrepository appears to be part of that new architecture ... I guess?protun-tcpandprotun-tls, so I am trying to clarify the TCP transport specifically, not Stealth or TLS obfuscation.What I found:
python-proton-vpn-api-corehas Protun protocol classes forprotun-tcp,protun-tls,protun-udp, andprotun-auto.protunwith serviceorg.freedesktop.NetworkManager.protun.ProtunTCP.validate()returnsFalsebecause NetworkManager does not list aprotunVPN plugin.unix_connect, which expects a TUN file descriptor, but I do not see the NetworkManager plugin, service file, or Linux runner that creates and configures the TUN device.Questions:
protun-tcpthe non obfuscated WireGuard over TCP transport advertised as WireGuard TCP port 443 in the client config?unix_connect?Thanks.