The NordBastion polar-bear mascot in a Nordic library at night, leaning over a long oak reading table strewn with open dictionaries and PGP-signed papers under aurora-blue lamplight
Glossary entry · VPN protocol

WireGuard Modern kernel-speed VPN, ~4,000 lines of code

एक VPN प्रोटोकॉल जो एक दोपहर में ऑडिट करने के लिए पर्याप्त छोटा और एक गीगाबिट लिंक को संतृप्त करने के लिए पर्याप्त तेज़ है।

परिभाषा
Plain English

Jason Donenfeld द्वारा डिज़ाइन किया गया एक आधुनिक VPN protocol, जिसे version 5.6 (2020) में mainline Linux kernel में शामिल किया गया। एक निश्चित, सुविचारित cryptographic suite — Curve25519, ChaCha20, Poly1305, BLAKE2s — का उपयोग करता है, पूरी तरह से UDP पर चलता है, और static public keys द्वारा peers को प्रमाणित करता है। संदर्भ कार्यान्वयन 4,000 लाइनों के कोड से कम है, OpenVPN या IPsec से एक परिमाण छोटा।

Why it matters at NordBastion

"VPS पर पर्सनल VPN" हमारा सबसे सामान्य प्रारंभिक उपयोग-मामला है।

नए ग्राहकों का एक महत्वपूर्ण हिस्सा ठीक एक काम के लिए 1 GB entry-tier VPS खरीदता है: WireGuard चालू करना, अपना लैपटॉप और फोन उस पर पॉइंट करना, और उस consumer VPN ब्रांड पर भरोसा करना बंद करना जिसे वे €12 प्रति माह दे रहे थे। गणित अकाट्य है — €4/month पर VPS ग्राहक के ट्रैफिक को उस IP से रूट करता है जो उनका अपना है, न कि हजारों अजनबियों के साथ साझा pool से जो वेब पर हर captcha gauntlet पर pre-flagged है।

WireGuard is the right protocol for this job because it is fast, simple and ships inside the kernel of every modern Linux distribution. There is no PKI to manage, no certificate authority to babysit, no obscure cipher negotiation. Two public keys, two endpoints, an allowed-IPs line, and the tunnel is up. The configuration file is short enough to commit to a git repo without embarrassment.

Operationally we recommend WireGuard for: personal browsing privacy, remote access to home or office networks, secure links between VPSes in different regions, and split-tunnel setups where only specific destinations transit the VPN. The use-case page and the walk-through guide cover the wallet of common patterns.

FAQ · WireGuard

The questions people actually ask.

How is WireGuard different from OpenVPN?

WireGuard runs in kernel space, uses a fixed modern cryptographic suite, and has a codebase about ten times smaller than OpenVPN. The practical result is throughput that saturates a gigabit link with modest CPU, single-digit-millisecond handshake latency and a configuration file you can read in one sitting. OpenVPN remains useful for environments that require certificate-based PKI or TCP fallback over port 443; WireGuard wins on raw performance, audit surface and operational simplicity.

Is WireGuard private?

WireGuard encrypts and authenticates all traffic between peers using modern cryptography (Curve25519 for key exchange, ChaCha20-Poly1305 for the data channel). A passive observer on the wire sees only UDP packets between two IPs and cannot read the contents. WireGuard does not, however, hide that two specific peers are talking; tooling like obfsproxy or Tor is required for that layer of privacy.

क्या मैं NordBastion VPS पर अपना खुद का WireGuard सर्वर चला सकता हूँ?

Yes — this is one of the most popular use-cases for entry-tier VPS plans on the site. A 1 GB RAM, single-vCPU node will comfortably terminate WireGuard for a small team or a household. The walk-through guide takes about fifteen minutes from "I just received my root password" to "my phone is browsing through the VPS".

क्या WireGuard मोबाइल पर काम करता है?

Yes. Official WireGuard apps are published for iOS and Android, both well-maintained and free of trackers. The roaming behaviour — keeping the tunnel alive across Wi-Fi/cellular transitions and IP changes — is one of the protocol's standout properties and works essentially transparently on modern phones.