Skip to main content

Narrowlink 0.2.0 - Peer-to-Peer Connectivity and TUN Interface

· 5 min read
Sajjad Pourali
Creator of Narrowlink

It has been about three months since Narrowlink was officially released, and it has received a warm welcome from the open-source community. Following this warm reception, I have committed myself to working diligently to deliver higher-quality software that is responsive to the community's feedback and needs.

Peer to peer connection diagram using narrowlink

Today, I am excited to announce the release of Narrowlink 0.2.0, a significant step forward in improving stability, performance, and flexibility. Your input and support have been instrumental in shaping these enhancements, and I'm eager to share the details of this latest update with you.

New to Narrowlink?

If you're new to Narrowlink, start by checking out the intro section, and then return here for the latest updates.

Narrowlink has undergone significant improvements in this version; however, this comes at the cost of compatibility with version 0.1.x.

Peer-to-Peer Connectivity

Previously, Narrowlink relied on a gateway for all transmissions, which introduced latency and performance issues. In this version, the previous mode, called relay mode, has been replaced with direct mode, which utilizes a P2P connectivity implementation using the QUIC protocol. Starting with this version, all tunnels and connections use the relay mode and simultaneously attempt to establish a direct channel. If the direct channel is successfully established, it stops using the relay mode, offering more efficient and direct connections. Users can freely choose whether they want a direct-only connection or a relay-only connection for the gateway. Unlike other solutions, Narrowlink doesn't rely on STUN protocol or packet broadcasting within the network to establish direct channels. Instead, the gateway determines the NAT configuration to issue proper UDP punch-holding instructions. This version uses the QUIC protocol for communications to maintain Narrowlink's proxy nature and to make the communications appear as normal web traffic.

Peer to peer SSH using narrowlinkEstablishing a peer-to-peer connection to a remote SSH server behind a NAT. Learn more.

Why Proxy and Not VPN?

Security takes top priority in Narrowlink. While VPNs and proxies share the goal of enhancing online privacy and security, proxies offer distinct advantages that make them a more secure choice for many users. Unlike VPNs, which require elevated privileges to function effectively, proxies operate exclusively at the application layer, eliminating the need for superuser access that could potentially compromise system security. Furthermore, proxies only transmit application layer data and facilitate one-way connections initiated by the user, while VPNs transfer the entire network stack and enable bidirectional communication, leaving both parties exposed to potential attacks. Given Narrowlink's strong emphasis on security, the proxy approach is preferred for providing superior security.

TUN Interface 1

Proxies require an interface to receive network traffic from users. While proxies typically use HTTP or SOCKS protocols for collecting application network traffic, these protocols may not adapt well with all applications. To address this, Narrowlink initially used a local SOCKS server to receive user communications. However, due to adaptation issues, Narrowlink has added support for a special VPN interface using a TUN feature in this release. The TUN interface requires privileged access and receives network traffic from the IP protocol, including its headers. Since Narrowlink functions as a proxy and only transmits application-layer packets, a user-space TCP/IP network stack has been implemented to manage such communications, which allows the extraction of application layer traffic.

Fine-Grained Certificate Provisioning

In the previous version, a single certificate was issued for multiple domain names, potentially revealing other available domains on the gateway. In this version, every domain receives an individual certificate, enhancing security and privacy.

Simpler Access Control

Access control has been simplified in this version. Unlike the previous version, where access control information was sent per connection to the gateway, impacting performance, the current version has the gateway receive access control information only when the command channel connects. This prevents the need to send this information on every connection.

Other Improvements

Narrowlink has other minor improvements, as follows:

  • Agents now support running as a background process.
  • Reduction of compiled binary size.
  • Improved logging mechanism.
  • Enhanced stability.
  • Improved error handling.

Narrowlink is currently optimized for personal use and is committed to further enhancing its capabilities to support a broader range of applications, including enterprise usage. Our future plans for Narrowlink include a focus on stabilization, improving the user interface, and integrating cloud-based solutions

Call for contributors

Narrowlink is an open-source project and wholeheartedly welcomes contributions from the community in any form, be it code, documentation, sponsorship, or feedback. Narrowlink is particularly interested in contributions related to the web frontend interface using Svelte and Tailwind to develop management interfaces and GUI clients with Tauri.

Stay tuned for the next update, and please keep the feedback coming. Your involvement is what makes Narrowlink better with each release.

Footnotes

  1. The TUN interface feature is experimental and appreciate early adopters who are willing to explore its potential and will continue to provide clear guidelines for safe usage.