-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathindex.html
1119 lines (1083 loc) · 53.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
layout: default
class: index
title: Pritunl - Open Source Enterprise Distributed OpenVPN, IPsec and WireGuard Server
header_class: header-top
---
<section class="promo section offset-header">
<a id="promo" class="anchor"></a>
<div class="promo-background-color theme0"></div>
<div class="promo-background-img theme0"></div>
<div class="container">
<div class="row">
<div class="overview col-md-12 col-sm-12 col-xs-12">
<h2 class="title">Enterprise Distributed OpenVPN, IPsec and WireGuard Server</h2>
<p class="summary">
Virtualize your private networks across datacenters and provide simple remote access in minutes<br>
<a class="title btn btn-lg scrollto get-started" href="https://demo.pritunl.com/">Demo <i class="fa fa-rocket"></i></a>
</p>
</div>
<div class="diagram-box-outer col-md-12 col-sm-12 col-xs-12">
<div class="diagram-box">
<div class="diagram diagram-3">
<div class="part part-0"></div>
<div class="part-glow part-0-glow"></div>
<div class="part part-1"></div>
<div class="part-glow part-1-glow"></div>
<div class="part part-2"></div>
<div class="part-glow part-2-glow"></div>
<div class="part part-3"></div>
<div class="part-glow part-3-glow"></div>
<div class="part part-4"></div>
<div class="part-glow part-4-glow"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="features feature-simple section">
<div class="container">
<div class="row">
<h2 class="title text-center">Simple Virtual Private Networks</h2>
<div class="item col-md-6 col-md-offset-3 col-sm-12 col-xs-12">
<div class="img-overlay-box">
<img class="feature-before" src="img/pritunl_diagram0_after.png" alt=""/>
</div>
</div>
</div>
<div class="row">
<div class="item feature-desc col-md-10 col-md-offset-1 col-sm-12 col-xs-12">
<p>Create a cloud vpn with complex site-to-site links, gateway links and provide local network access to remote users. Protect your network traffic and remote users connecting over public connections with secure encryption. All from a simple web interface</p>
</div>
</div>
<div class="row">
<h2 class="title text-center">The Most Secure VPN Server</h2>
<div class="item feature-desc col-md-10 col-md-offset-1 col-sm-12 col-xs-12">
<p>Pritunl provides innovative security features not available from any other provider. Including TPM and Apple Secure Enclave device authentication, a dynamic firewall, SELinux policies, dual web server design and self shutdown notification system</p>
<a class="title btn btn-lg scrollto" href="https://docs.pritunl.com/docs/security" target="_blank">Explore Security Features <i class="fa fa-compass"></i></a>
</div>
</div>
<div class="row">
<h2 class="title text-center">Pritunl Zero</h2>
<div class="item feature-desc col-md-10 col-md-offset-1 col-sm-12 col-xs-12">
<p>Open source BeyondCorp server is also available from Pritunl providing zero trust security for privileged access to ssh and web applications</p>
<a class="title btn btn-lg scrollto" href="https://zero.pritunl.com">Pritunl Zero <i class="fa fa-compass"></i></a>
</div>
</div>
<div class="row">
<h2 class="title text-center">AWS VPN Server</h2>
<div class="item col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2 col-xs-8 col-xs-offset-2">
<a href="/vpc"><img src="img/aws.png" alt="Amazon"/></a>
</div>
</div>
<div class="row">
<div class="item feature-desc col-md-10 col-md-offset-1 col-sm-12 col-xs-12">
<p>Interconnect AWS VPC networks across AWS regions and provide reliable remote access with automatic failover that can scale horizontally</p>
<a class="title btn btn-lg scrollto" href="/vpc">Explore AWS integration <i class="fa fa-compass"></i></a>
</div>
</div>
<div class="row">
<h2 class="title text-center">Single Sign-On</h2>
<div class="item col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2 col-xs-8 col-xs-offset-2">
<a href="/sso"><img src="img/onelogin.png" alt="Okta"/></a>
</div>
</div>
<div class="row">
<div class="item feature-desc col-md-10 col-md-offset-1 col-sm-12 col-xs-12">
<p>Securely deploy remote access to thousands of users using their existing company account with support for several single sign-on providers and protocols</p>
<a class="title btn btn-lg scrollto" href="/sso">See all providers <i class="fa fa-compass"></i></a>
</div>
</div>
<div class="row">
<h2 class="title text-center">Multi-Cloud VPC Peering</h2>
<div class="item col-md-6 col-md-offset-3 col-sm-12 col-xs-12">
<div class="img-overlay-box">
<a href="https://docs.pritunl.com/docs/aws" target="_blank"><img class="feature" src="img/aws.png" alt="AWS"/></a>
</div>
</div>
</div>
<div class="row">
<div class="item col-md-6 col-md-offset-3 col-sm-12 col-xs-12">
<div class="img-overlay-box">
<a href="https://docs.pritunl.com/docs/google-cloud" target="_blank"><img class="feature" src="img/google_cloud.png" alt="Google Cloud"/></a>
</div>
</div>
</div>
<div class="row">
<div class="item col-md-6 col-md-offset-3 col-sm-12 col-xs-12">
<div class="img-overlay-box">
<a href="https://docs.pritunl.com/docs/azure-link" target="_blank"><img class="feature" src="img/azure.png" alt="Azure"/></a>
</div>
</div>
</div>
<div class="row">
<div class="item col-md-6 col-md-offset-3 col-sm-12 col-xs-12">
<div class="img-overlay-box">
<a href="https://docs.pritunl.com/docs/oracle-cloud" target="_blank"><img class="feature" src="img/oracle_cloud.png" alt="Oracle Cloud"/></a>
</div>
</div>
</div>
<div class="row">
<div class="item feature-desc col-md-10 col-md-offset-1 col-sm-12 col-xs-12">
<p>Create multi-cloud site-to-site links with VPC peering. VPC peering available for AWS, Google Cloud, Azure and Oracle Cloud</p>
<a class="title btn btn-lg scrollto" href="/infrastructure">Learn more <i class="fa fa-compass"></i></a>
</div>
</div>
<div class="row">
<h2 class="title text-center">Infrastructure</h2>
<div class="item col-md-6 col-md-offset-3 col-sm-8 col-sm-offset-2 col-xs-8 col-xs-offset-2">
<a href="/infrastructure"><img src="img/vpc_peering_full.png" alt="Infrastructure"/></a>
</div>
</div>
<div class="row">
<div class="item feature-desc col-md-10 col-md-offset-1 col-sm-12 col-xs-12">
<p>Quickly scale to thousands of users with high availability in a cloud environment without the need for expensive proprietary hardware</p>
<a class="title btn btn-lg scrollto" href="/infrastructure">Learn more <i class="fa fa-compass"></i></a>
</div>
</div>
<div class="row">
<h2 class="title text-center">Platform and Device Support</h2>
<div class="item col-md-4 col-md-offset-4 col-sm-4 col-sm-offset-4 col-xs-6 col-xs-offset-3">
<a href="/platforms"><img src="img/unifi.png" alt="Ubiquiti UniFi"/></a>
</div>
</div>
<div class="row">
<div class="item feature-desc col-md-10 col-md-offset-1 col-sm-12 col-xs-12">
<p>Pritunl supports all OpenVPN clients and has official clients for several devices and platforms</p>
<a class="title btn btn-lg scrollto" href="/platforms">View all platforms <i class="fa fa-compass"></i></a>
</div>
</div>
<div class="row">
<div class="item feature-desc col-md-10 col-md-offset-1 col-sm-12 col-xs-12">
<h2 class="title text-center">WireGuard Support</h2>
<p>Clients can choose between connecting with OpenVPN and WireGuard. All networking features are available with the WireGuard protocol</p>
<a class="title btn btn-lg scrollto" href="https://docs.pritunl.com/docs/wireguard" target="_blank">WireGuard documentation <i class="fa fa-book"></i></a>
</div>
</div>
<div class="row">
<div class="item feature-desc col-md-10 col-md-offset-1 col-sm-12 col-xs-12">
<h2 class="title text-center">Advanced Security</h2>
<p>Pritunl is the most secure VPN server available and the only VPN server to offer up to five layers of authentication</p>
<a class="title btn btn-lg scrollto" href="/security">See all security features <i class="fa fa-compass"></i></a>
</div>
</div>
<div class="row">
<div class="item feature-desc col-md-10 col-md-offset-1 col-sm-12 col-xs-12">
<h2 class="title text-center">Plugin System</h2>
<p>Highly customizable Python plugin system to allow expanding and modifying Pritunl. Plugins can be created to support custom authentication systems and custom access control systems</p>
<a class="title btn btn-lg scrollto" href="https://docs.pritunl.com/docs/plugins">Learn more about plugins <i class="fa fa-compass"></i></a>
</div>
</div>
<div class="row">
<h2 class="title text-center">Aviatrix Alternative</h2>
<div class="item col-md-4 col-md-offset-4 col-sm-6 col-sm-offset-3 col-xs-8 col-xs-offset-2">
<img src="img/alt2.png" alt=""/>
</div>
</div>
<div class="row">
<div class="item feature-desc col-md-10 col-md-offset-1 col-sm-12 col-xs-12">
<p>A faster and more secure alternative to Aviatrix with more features and no per-connection pricing</p>
</div>
</div>
<div class="row">
<h2 class="title text-center">Pulse Secure Alternative</h2>
<div class="item col-md-4 col-md-offset-4 col-sm-6 col-sm-offset-3 col-xs-8 col-xs-offset-2">
<img src="img/alt3.png" alt=""/>
</div>
</div>
<div class="row">
<div class="item feature-desc col-md-10 col-md-offset-1 col-sm-12 col-xs-12">
<p>Lower cost and more customizable alternative to Pulse Secure with transparent pricing</p>
</div>
</div>
<div class="row">
<h2 class="title text-center">Tailscale Alternative</h2>
<div class="item col-md-4 col-md-offset-4 col-sm-6 col-sm-offset-3 col-xs-8 col-xs-offset-2">
<img src="img/alt5.png" alt=""/>
</div>
</div>
<div class="row">
<div class="item feature-desc col-md-10 col-md-offset-1 col-sm-12 col-xs-12">
<p>Lower cost and more customizable WireGuard server alternative to Tailscale</p>
</div>
</div>
<div class="row">
<h2 class="title text-center">Open Source Alternative</h2>
<div class="item feature-desc col-md-10 col-md-offset-1 col-sm-12 col-xs-12">
<p>Pritunl is the best open source alternative to proprietary commercial vpn products such as Aviatrix and Pulse Secure. Create larger cloud vpn networks supporting thousands of concurrent users and get more control over your vpn server without any per-user pricing</p>
</div>
<div class="item feature-desc-btn col-md-12 col-sm-12 col-xs-12">
<a class="title btn btn-lg get-started" href="https://docs.pritunl.com/docs/installation" target="_blank">Get Started <i class="fa fa-rocket"></i></a>
</div>
</div>
</div>
</section>
<section class="features feature-list section">
<a id="features" class="anchor"></a>
<div class="container">
<div class="row">
<div class="item col-md-4 col-sm-4 col-xs-12">
<div class="list-img">
<img src="img/pritunl_diagram_open.png" alt=""/>
</div>
<h3 class="title">Open Source</h3>
<p>All source code for Pritunl is publicly available on GitHub. Allowing for complete transparency and customization.</p>
</div>
<div class="item col-md-4 col-sm-4 col-xs-12">
<div class="list-img">
<img src="img/pritunl_diagram_free.png" alt=""/>
</div>
<h3 class="title">Free to Use</h3>
<p>Free and open source alternative to Aviatrix and Pulse Secure. No registration or credit card necessary.</p>
</div>
<div class="item col-md-4 col-sm-4 col-xs-12">
<div class="list-img">
<img src="img/pritunl_diagram_api.png" alt=""/>
</div>
<h3 class="title">Easy Configuration</h3>
<p>All configuration is done from a web interface allowing easy management of large organizations and complex configurations.</p>
</div>
</div>
<div class="row">
<div class="item col-md-4 col-sm-4 col-xs-12">
<div class="list-img">
<img src="img/pritunl_diagram_secure.png" alt=""/>
</div>
<h3 class="title">Security</h3>
<p>All traffic between clients and the server is encrypted. Optional two-step authentication is available using Google Authenticator.</p>
</div>
<div class="item col-md-4 col-sm-4 col-xs-12">
<div class="list-img">
<img src="img/pritunl_diagram_vpn.png" alt=""/>
</div>
<h3 class="title">Multiple Protocols</h3>
<p>Pritunl supports both OpenVPN and WireGuard clients. IPsec is used for site-to-site links and VPC peering.</p>
</div>
<div class="item col-md-4 col-sm-4 col-xs-12">
<div class="list-img">
<img src="img/pritunl_diagram_conf.png" alt=""/>
</div>
<h3 class="title">REST API</h3>
<p>Easily integrate and configure Pritunl with other services using the REST API. Documentation is available in the platforms section.</p>
</div>
</div>
<div class="row">
<div class="item col-md-12 col-sm-12 col-xs-12">
<a class="title btn btn-lg" href="https://github.com/pritunl/pritunl" target="_blank">GitHub Project <i class="fa fa-github-alt"></i></a>
<a class="title btn btn-lg" href="https://twitter.com/pritunl" target="_blank">Follow Pritunl <i class="fa fa-twitter"></i></a>
</div>
</div>
</div>
</section>
<section class="explore section">
<a id="examples" class="anchor"></a>
<div class="container">
<div class="row">
<h2 class="title text-center">Examples</h2>
</div>
<div class="row">
<div class="item col-md-6 col-sm-6 col-xs-12">
<div class="item-box">
<h3 class="title text-center">Getting Started</h3>
<a href="https://docs.pritunl.com/docs/installation" target="_blank"><img class="img-duo" src="img/getting_started.png" alt=""/></a>
<a class="title btn btn-lg" href="https://docs.pritunl.com/docs/installation" target="_blank">View Tutorial</a>
</div>
</div>
<div class="item col-md-6 col-sm-6 col-xs-12">
<div class="item-box">
<h3 class="title text-center">Replicated Servers</h3>
<a href="https://docs.pritunl.com/docs/replicated-servers" target="_blank"><img class="img-duo" src="img/replicated_servers.png" alt=""/></a>
<a class="title btn btn-lg" href="https://docs.pritunl.com/docs/replicated-servers" target="_blank">View Tutorial</a>
</div>
</div>
</div>
<div class="row">
<div class="item col-md-6 col-sm-6 col-xs-12">
<div class="item-box">
<h3 class="title text-center">Secure Access to a Private Network</h3>
<a href="https://docs.pritunl.com/v1/docs/accessing-a-private-network" target="_blank"><img class="img-duo" src="img/accessing_a_private_network.png" alt=""/></a>
<a class="title btn btn-lg" href="https://docs.pritunl.com/v1/docs/accessing-a-private-network" target="_blank">View Tutorial</a>
</div>
</div>
<div class="item col-md-6 col-sm-6 col-xs-12">
<div class="item-box">
<h3 class="title text-center">Site-to-Site Configuration</h3>
<a href="https://docs.pritunl.com/v1/docs/site-to-site-configuration" target="_blank"><img class="img-duo" src="img/site_to_site_link.png" alt=""/></a>
<a class="title btn btn-lg" href="https://docs.pritunl.com/v1/docs/site-to-site-configuration" target="_blank">View Tutorial</a>
</div>
</div>
</div>
</div>
</section>
<section class="features feature-dis section">
<div class="container">
<div class="row">
<div class="item feature-desc col-md-4 col-sm-6 col-xs-12">
<div class="feature-desc-background"></div>
<div class="feature-desc-content">
<h2 class="title text-center">Distributed and Scalable</h2>
<h4 class="title">Scale Easily</h4>
<p>Pritunl servers can be easily distributed across multiple servers and different datacenters for improved performance, high availability and automatic failover when an instance fails.</p>
<h4 class="title">Simple Distribution</h4>
<p>All server communication and interconnecting is done with MongoDB allowing servers to be quickly connected without having to modify firewalls for inter-server communication.</p>
<h4 class="title">High Availability</h4>
<p>All Pritunl servers are equal in the cluster and can run independently in the event of other instances failing.</p>
</div>
</div>
<div class="item feature-img col-md-8 col-sm-6 col-xs-12">
<h2 class="title text-center">Distributed and Scalable</h2>
<div class="img-overlay-box">
<img src="img/pritunl_diagram1_glow.png" alt=""/>
</div>
</div>
</div>
</div>
</section>
<section class="plans section">
<a id="plans" class="anchor"></a>
<div class="plans-background"></div>
<div class="container">
<div class="row">
<h2 class="title text-center">Subscription Plans</h2>
<div class="item text-center info col-md-8 col-md-offset-2 col-sm-8 col-sm-offset-2 col-xs-12">
<p>Pritunl is free to use with optional monthly subscriptions available to purchase for additional features. The enterprise license may be used on all the servers in the cluster and does not require a individual license for each server.</p>
</div>
</div>
<div class="row">
<div class="item text-center info col-md-12 col-sm-12 col-xs-12">
<a class="contact-btn title btn btn-lg" href="mailto:[email protected]">Contact Support <i class="fa fa-comments-o"></i></a>
<a class="title btn btn-lg" href="http://eepurl.com/9YnRj" target="_blank">Join Mailing List <i class="fa fa-paper-plane"></i></a>
<a class="title btn btn-lg" href="https://pritunl.medium.com/" target="_blank">Follow on Medium <i class="fa fa-brands fa-medium"></i></a>
</div>
</div>
<div class="row">
<div class="item free col-lg-4 col-md-4 col-sm-4 col-xs-12">
<div class="item-box">
<img src="img/pritunl_logo0.png" alt=""/>
<h3 class="title">Free</h3>
<ul class="plan-list">
<li class="no-select">
<span>Single server</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Run a single Pritunl instance
</div>
</li>
<li class="no-select">
<span>Unlimited users</span>
<i class="fa fa-angle-down"></i>
<div class="info">
No limit on the number of users created or users connected
</div>
</li>
<li class="no-select">
<span>Unlimited devices</span>
<i class="fa fa-angle-down"></i>
<div class="info">
No limit on the number of devices that each user has
connected
</div>
</li>
</ul>
<h4 class="title price">$0/month</h4>
</div>
</div>
<div class="item premium col-lg-4 col-md-4 col-sm-4 col-xs-12">
<div class="item-box">
<img src="img/pritunl_logo0.png" alt=""/>
<h3 class="title">Premium</h3>
<div class="label label-success no-select">7 Day Free Trial</div>
<ul class="plan-list">
<li class="no-select">
<span>Billing per host</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Each Pritunl host is billed at $10/month. The host can
contain an unlimited number of VPN servers and unlimited
number of users or connections
</div>
</li>
<li class="no-select">
<span>Unlimited users</span>
<i class="fa fa-angle-down"></i>
<div class="info">
No limit on the number of users created or users connected
</div>
</li>
<li class="no-select">
<span>Unlimited devices</span>
<i class="fa fa-angle-down"></i>
<div class="info">
No limit on the number of devices that each user has
connected
</div>
</li>
<li class="no-select">
<span>Port forwarding</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Forward ports to vpn clients
</div>
</li>
<li class="no-select">
<span>Gateway links</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Create a gateway link to route traffic for a local network
to a vpn client. Allowing the vpn clients to access the
remote network that is available to the linked vpn client
</div>
</li>
<li class="no-select">
<span>Failover gateway links</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Connect multiple gateway links to a Pritunl server and when
a link goes down another available link will automatically
be used
</div>
</li>
<li class="no-select">
<span>Bypass secondary auth</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Per-user option to bypass secondary authentication such as
two-factor authentication. For server users that can't
provide a two-factor code
</div>
</li>
<li class="no-select">
<span>Chromebook support</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Easily connect Chromebook users with ChromeOS compatible
vpn profiles
</div>
</li>
<li class="no-select">
<span>Configuration sync</span>
<i class="fa fa-angle-down"></i>
<div class="info">
When clients connect with a Pritunl client, vpn setting
changes such as port/protocol will be updated to allow the
client to connect without needing to download a new
configuration
</div>
</li>
<li class="no-select">
<span>Email user keys</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Email users a link to download vpn profiles using a
configured SMTP server
</div>
</li>
<li class="no-select">
<span>Additional themes</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Change the interface to light or dark theme
</div>
</li>
</ul>
<h4 class="title price">$10/month</h4>
<div class="premium-sub-alert alert"></div>
<a class="premium-sub-btn title btn btn-lg" href="https://buy.stripe.com/aEU4jl8bj9yS7le148">Subscribe <i class="fa fa-credit-card"></i></a>
</div>
</div>
<div class="item enterprise col-lg-4 col-md-4 col-sm-4 col-xs-12">
<div class="item-box">
<img src="img/pritunl_logo0.png" alt=""/>
<h3 class="title">Enterprise</h3>
<div class="label label-success no-select">7 Day Free Trial</div>
<ul class="plan-list">
<li class="no-select">
<span>All Premium features</span>
<i class="fa fa-angle-down"></i>
<div class="info">
All of the features included with a Premium subscription
</div>
</li>
<li class="no-select">
<span>Billing per host</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Each Pritunl host is billed at $70/month. The host can
contain an unlimited number of VPN servers and unlimited
number of users or connections
</div>
</li>
<li class="no-select">
<span>Single sign-on</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Single sign-on with SAML, Google Apps, Duo Security and
Radius
</div>
</li>
<li class="no-select">
<span>TPM device authentication</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Device authentication with TPM and Apple Secure Enclave
</div>
</li>
<li class="no-select">
<span>Automatic failover</span>
<i class="fa fa-angle-down"></i>
<div class="info">
When a Pritunl instance fails the vpn servers running on the
instance will automatically failover to another available
Pritunl instance
</div>
</li>
<li class="no-select">
<span>Replicated servers</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Replicate a vpn server accross multiple Pritunl instances to
easily scale horizontally to handle more user connections
</div>
</li>
<li class="no-select">
<span>VXLan support</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Automatic VXLan management for replication across
availability zones without layer 2 connectivity while
still maintaining client-to-client communication
</div>
</li>
<li class="no-select">
<span>AWS VPC integration</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Integrate with AWS VPC to allow Pritunl to dynamically
control the VPC routing table
</div>
</li>
<li class="no-select">
<span>Site-to-site VPN</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Easily create a site-to-site link between two Pritunl
instances without any complicated configuration
</div>
</li>
<li class="no-select">
<span>Server route NAT control</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Enable or disable NAT for server routes
</div>
</li>
<li class="no-select">
<span>DNS mapping</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Map connected vpn clients to dns domains such as
user0.org0.vpn using a custom dns server
that runs along with the Pritunl server
</div>
</li>
<li class="no-select">
<span>DNS forwarding</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Forward dns queries to a dns server on a remote network
such as a consul server on an AWS VPC
</div>
</li>
<li class="no-select">
<span>Monitoring</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Monitor server and user metrics with InfluxDB
</div>
</li>
<li class="no-select">
<span>Advanced auditing</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Optional advanced auditing of user and
administrator related events for improved
security and intrusion detection
</div>
</li>
<li class="no-select">
<span>Bridged VPN mode</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Create tap servers that bridge the vpn clients to the servers
local network interface. Allowing vpn clients to get an ip
address on the servers local network
</div>
</li>
<li class="no-select">
<span>Multiple administrators</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Allow multiple administrators to manage the Pritunl server
</div>
</li>
<li class="no-select">
<span>User pin policy</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Control over requiring users to set a pin before they are
able to connect to a vpn server
</div>
</li>
<li class="no-select">
<span>Plugin system</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Integrate Pritunl with other systems using plugins writen in
Python
</div>
</li>
<li class="no-select">
<span>API access</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Manage Pritunl cluster using RESTful API with support for
multiple API keys
</div>
</li>
<li class="no-select">
<span>IPsec site-to-site links</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Site-to-site links with IPsec using pritunl-link client. Link client does not require database connection
</div>
</li>
<li class="no-select">
<span>Multi-Cloud VPC peering</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Simple VPC peering and hybrid cloud with Pritunl link client
</div>
</li>
<li class="no-select">
<span>Automated link failover</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Link failover with automated routing table management and automated port forwarding for Unifi links
</div>
</li>
</ul>
<h4 class="title price">$70/month</h4>
<a class="enterprise-sub-btn title btn btn-lg" href="https://buy.stripe.com/00gaHJ4Z7bH0fRKbIV">Subscribe <i class="fa fa-credit-card"></i></a>
</div>
</div>
<div class="item enterprise-plus col-lg-3 col-md-6 col-sm-6 col-xs-12">
<div class="item-box">
<img src="img/pritunl_logo0.png" alt=""/>
<h3 class="title">Enterprise+</h3>
<div class="label label-success no-select">7 Day Free Trial</div>
<ul class="plan-list">
<li class="no-select">
<span>All Premium features</span>
<i class="fa fa-angle-down"></i>
<div class="info">
All of the features included with a Premium subscription
</div>
</li>
<li class="no-select">
<span>All Enterprise features</span>
<i class="fa fa-angle-down"></i>
<div class="info">
All of the features included with a Enterprise subscription
</div>
</li>
<li class="no-select">
<span>Unlimited links</span>
<i class="fa fa-angle-down"></i>
<div class="info">
No limit on the number of Pritunl link clients in a single Pritunl cluster
</div>
</li>
<li class="no-select">
<span>IPsec site-to-site links</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Site-to-site links with IPsec using pritunl-link client. Link client does not require database connection
</div>
</li>
<li class="no-select">
<span>Multi-Cloud VPC peering</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Simple VPC peering and hybrid cloud with Pritunl link client
</div>
</li>
<li class="no-select">
<span>Automated link failover</span>
<i class="fa fa-angle-down"></i>
<div class="info">
Link failover with automated routing table management and automated port forwarding for Unifi links
</div>
</li>
</ul>
<h4 class="title price">$100/month</h4>
<div class="enterprise-plus-sub-alert alert"></div>
<a class="enterprise-plus-sub-btn title btn btn-lg">Subscribe <i class="fa fa-credit-card"></i></a>
<a class="enterprise-plus-apple-pay title btn btn-lg"></a>
</div>
</div>
</div>
</div>
</section>
<section class="install section">
<a id="tutorials" class="anchor"></a>
<a id="install" class="anchor"></a>
<div class="container">
<div class="row wiki">
<div class="item col-md-12 col-sm-12 col-xs-12">
<a class="title btn btn-lg scrollto" href="https://docs.pritunl.com" target="_blank">Documentation <i class="fa fa-book"></i></a>
</div>
</div>
<div class="row server">
<h2 class="title text-center">Install</h2>
<div class="item feature-desc col-md-8 col-md-offset-2 col-sm-8 col-sm-offset-2 col-xs-12">
<p class="text-center">Select a Linux distribution below and run the commands to install Pritunl. After installing no setup is necessary simply open the web interface at https://SERVER_IP/ in your web browser and login with the default username and password which is "pritunl".</p>
</div>
<div
class="distro-btns item col-md-6 col-sm-12 col-xs-12 col-md-offset-3">
<button class="server-distro server-archlinux btn btn-lg btn-primary">Arch Linux</button><button class="server-distro server-amazon-linux-two btn btn-lg btn-default">AmazonLinux 2023</button><button class="server-distro server-centos-7 btn btn-lg btn-default">AlmaLinux 8</button><button class="server-distro server-centos-8 btn btn-lg btn-default">AlmaLinux 9</button><button class="server-distro server-debian-stretch btn btn-lg btn-default">Debian 12</button><button class="server-distro server-oracle-linux-7 btn btn-lg btn-default">Oracle Linux 8</button><button class="server-distro server-oracle-linux-8 btn btn-lg btn-default">Oracle Linux 9</button><button class="server-distro server-ubuntu-one btn btn-lg btn-default">Ubuntu 22.04</button><button class="server-distro server-ubuntu-two btn btn-lg btn-default">Ubuntu 24.04</button>
</div>
<div class="item col-md-10 col-sm-12 col-xs-12 col-md-offset-1 install-archlinux">
<h3 class="title text-center">Arch Linux</h3>
<textarea class="editor bash">sudo tee -a /etc/pacman.conf << EOF
[pritunl]
Server = https://repo.pritunl.com/stable/pacman
EOF
sudo pacman-key --keyserver hkp://keyserver.ubuntu.com -r 7568D9BB55FF9E5287D586017AE645C0CF8E292A
sudo pacman-key --lsign-key 7568D9BB55FF9E5287D586017AE645C0CF8E292A
sudo pacman -Sy
sudo pacman -S --noconfirm pritunl openvpn
sudo systemctl start mongodb pritunl
sudo systemctl enable mongodb pritunl</textarea>
</div>
<div class="item col-md-10 col-sm-12 col-xs-12 col-md-offset-1 install-amazon-linux-two">
<h3 class="title text-center">AmazonLinux 2023</h3>
<textarea class="editor bash">sudo tee /etc/yum.repos.d/mongodb-org.repo << EOF
[mongodb-org]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/amazon/2023/mongodb-org/7.0/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-7.0.asc
EOF
sudo tee /etc/yum.repos.d/pritunl.repo << EOF
[pritunl]
name=Pritunl Repository
baseurl=https://repo.pritunl.com/stable/yum/amazonlinux/2023/
gpgcheck=1
enabled=1
gpgkey=https://raw.githubusercontent.com/pritunl/pgp/master/pritunl_repo_pub.asc
EOF
sudo yum -y remove iptables-services
sudo systemctl stop firewalld.service
sudo systemctl disable firewalld.service
sudo dnf -y install epel-release
sudo dnf -y install pritunl mongodb-org pritunl-openvpn
sudo systemctl start mongod pritunl
sudo systemctl enable mongod pritunl</textarea>
</div>
<div class="item col-md-10 col-sm-12 col-xs-12 col-md-offset-1 install-centos-7">
<h3 class="title text-center">AlmaLinux 8</h3>
<textarea class="editor bash">sudo tee /etc/yum.repos.d/mongodb-org.repo << EOF
[mongodb-org]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/8/mongodb-org/7.0/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-7.0.asc
EOF
sudo tee /etc/yum.repos.d/pritunl.repo << EOF
[pritunl]
name=Pritunl Repository
baseurl=https://repo.pritunl.com/stable/yum/almalinux/8/
gpgcheck=1
enabled=1
gpgkey=https://raw.githubusercontent.com/pritunl/pgp/master/pritunl_repo_pub.asc
EOF
sudo yum -y remove iptables-services
sudo systemctl stop firewalld.service
sudo systemctl disable firewalld.service
sudo dnf -y install epel-release
sudo dnf -y install pritunl mongodb-org pritunl-openvpn
sudo systemctl start mongod pritunl
sudo systemctl enable mongod pritunl</textarea>
</div>
<div class="item col-md-10 col-sm-12 col-xs-12 col-md-offset-1 install-centos-8">
<h3 class="title text-center">AlmaLinux 9</h3>
<textarea class="editor bash">sudo tee /etc/yum.repos.d/mongodb-org.repo << EOF
[mongodb-org]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/9/mongodb-org/7.0/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-7.0.asc
EOF
sudo tee /etc/yum.repos.d/pritunl.repo << EOF
[pritunl]
name=Pritunl Repository
baseurl=https://repo.pritunl.com/stable/yum/almalinux/9/
gpgcheck=1
enabled=1
gpgkey=https://raw.githubusercontent.com/pritunl/pgp/master/pritunl_repo_pub.asc
EOF
sudo yum -y remove iptables-services
sudo systemctl stop firewalld.service
sudo systemctl disable firewalld.service
sudo dnf -y install epel-release
sudo dnf -y install pritunl mongodb-org pritunl-openvpn wireguard-tools
sudo systemctl start mongod pritunl
sudo systemctl enable mongod pritunl</textarea>
</div>
<div class="item col-md-10 col-sm-12 col-xs-12 col-md-offset-1 install-debian-stretch">
<h3 class="title text-center">Debian Bookworm</h3>
<textarea class="editor bash">sudo tee /etc/apt/sources.list.d/mongodb-org.list << EOF
deb [ signed-by=/usr/share/keyrings/mongodb-server-7.0.gpg ] https://repo.mongodb.org/apt/debian bookworm/mongodb-org/7.0 main
EOF
sudo tee /etc/apt/sources.list.d/openvpn.list << EOF
deb [ signed-by=/usr/share/keyrings/openvpn-repo.gpg ] https://build.openvpn.net/debian/openvpn/stable bookworm main
EOF
sudo tee /etc/apt/sources.list.d/pritunl.list << EOF
deb [ signed-by=/usr/share/keyrings/pritunl.gpg ] https://repo.pritunl.com/stable/apt bookworm main
EOF
sudo apt --assume-yes install gnupg
curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | sudo gpg -o /usr/share/keyrings/mongodb-server-7.0.gpg --dearmor --yes
curl -fsSL https://swupdate.openvpn.net/repos/repo-public.gpg | sudo gpg -o /usr/share/keyrings/openvpn-repo.gpg --dearmor --yes
curl -fsSL https://raw.githubusercontent.com/pritunl/pgp/master/pritunl_repo_pub.asc | sudo gpg -o /usr/share/keyrings/pritunl.gpg --dearmor --yes
sudo ufw disable
sudo apt update
sudo apt --assume-yes install pritunl mongodb-org wireguard-tools
sudo systemctl start mongod pritunl
sudo systemctl enable mongod pritunl</textarea>
</div>
<div
class="item col-md-10 col-sm-12 col-xs-12 col-md-offset-1 install-oracle-linux-7">
<h3 class="title text-center">Oracle Linux 8</h3>
<textarea class="editor bash">sudo tee /etc/yum.repos.d/mongodb-org.repo << EOF
[mongodb-org]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/8/mongodb-org/7.0/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-7.0.asc
EOF
sudo tee /etc/yum.repos.d/pritunl.repo << EOF
[pritunl]
name=Pritunl Repository
baseurl=https://repo.pritunl.com/stable/yum/oraclelinux/8/
gpgcheck=1
enabled=1
gpgkey=https://raw.githubusercontent.com/pritunl/pgp/master/pritunl_repo_pub.asc
EOF
sudo yum -y remove iptables-services
sudo systemctl stop firewalld.service
sudo systemctl disable firewalld.service
sudo dnf -y install epel-release
sudo dnf -y install pritunl mongodb-org pritunl-openvpn
sudo systemctl start mongod pritunl
sudo systemctl enable mongod pritunl</textarea>
</div>
<div
class="item col-md-10 col-sm-12 col-xs-12 col-md-offset-1 install-oracle-linux-8">
<h3 class="title text-center">Oracle Linux 9</h3>
<textarea class="editor bash">sudo tee /etc/yum.repos.d/mongodb-org.repo << EOF
[mongodb-org]
name=MongoDB Repository
baseurl=https://repo.mongodb.org/yum/redhat/9/mongodb-org/7.0/x86_64/
gpgcheck=1
enabled=1
gpgkey=https://www.mongodb.org/static/pgp/server-7.0.asc
EOF
sudo tee /etc/yum.repos.d/pritunl.repo << EOF
[pritunl]
name=Pritunl Repository
baseurl=https://repo.pritunl.com/stable/yum/oraclelinux/9/
gpgcheck=1
enabled=1
gpgkey=https://raw.githubusercontent.com/pritunl/pgp/master/pritunl_repo_pub.asc
EOF
sudo yum -y remove iptables-services
sudo systemctl stop firewalld.service
sudo systemctl disable firewalld.service
sudo dnf -y install epel-release
sudo dnf -y install pritunl mongodb-org pritunl-openvpn wireguard-tools
sudo systemctl start mongod pritunl
sudo systemctl enable mongod pritunl</textarea>
</div>
<div
class="item col-md-10 col-sm-12 col-xs-12 col-md-offset-1 install-ubuntu-one">
<h3 class="title text-center">Ubuntu Jammy</h3>
<textarea class="editor bash">sudo tee /etc/apt/sources.list.d/mongodb-org.list << EOF
deb [ signed-by=/usr/share/keyrings/mongodb-server-7.0.gpg ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse
EOF
sudo tee /etc/apt/sources.list.d/openvpn.list << EOF
deb [ signed-by=/usr/share/keyrings/openvpn-repo.gpg ] https://build.openvpn.net/debian/openvpn/stable jammy main
EOF
sudo tee /etc/apt/sources.list.d/pritunl.list << EOF
deb [ signed-by=/usr/share/keyrings/pritunl.gpg ] https://repo.pritunl.com/stable/apt jammy main
EOF
sudo apt --assume-yes install gnupg
curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | sudo gpg -o /usr/share/keyrings/mongodb-server-7.0.gpg --dearmor --yes
curl -fsSL https://swupdate.openvpn.net/repos/repo-public.gpg | sudo gpg -o /usr/share/keyrings/openvpn-repo.gpg --dearmor --yes
curl -fsSL https://raw.githubusercontent.com/pritunl/pgp/master/pritunl_repo_pub.asc | sudo gpg -o /usr/share/keyrings/pritunl.gpg --dearmor --yes
sudo ufw disable
sudo apt update
sudo apt --assume-yes install pritunl mongodb-org wireguard-tools
sudo systemctl start mongod pritunl
sudo systemctl enable mongod pritunl</textarea>
</div>
<div
class="item col-md-10 col-sm-12 col-xs-12 col-md-offset-1 install-ubuntu-two">
<h3 class="title text-center">Ubuntu Noble</h3>
<textarea class="editor bash">sudo tee /etc/apt/sources.list.d/mongodb-org.list << EOF
deb [ signed-by=/usr/share/keyrings/mongodb-server-7.0.gpg ] https://repo.mongodb.org/apt/ubuntu jammy/mongodb-org/7.0 multiverse
EOF
sudo tee /etc/apt/sources.list.d/openvpn.list << EOF
deb [ signed-by=/usr/share/keyrings/openvpn-repo.gpg ] https://build.openvpn.net/debian/openvpn/stable noble main
EOF
sudo tee /etc/apt/sources.list.d/pritunl.list << EOF
deb [ signed-by=/usr/share/keyrings/pritunl.gpg ] https://repo.pritunl.com/unstable/apt noble main
EOF
sudo apt --assume-yes install gnupg
curl -fsSL https://www.mongodb.org/static/pgp/server-7.0.asc | sudo gpg -o /usr/share/keyrings/mongodb-server-7.0.gpg --dearmor --yes
curl -fsSL https://swupdate.openvpn.net/repos/repo-public.gpg | sudo gpg -o /usr/share/keyrings/openvpn-repo.gpg --dearmor --yes
curl -fsSL https://raw.githubusercontent.com/pritunl/pgp/master/pritunl_repo_pub.asc | sudo gpg -o /usr/share/keyrings/pritunl.gpg --dearmor --yes
sudo ufw disable
sudo apt update
sudo apt --assume-yes install pritunl mongodb-org wireguard-tools
sudo systemctl start mongod pritunl
sudo systemctl enable mongod pritunl</textarea>
</div>
</div>
</div>
</section>
<section class="client section">
<a id="client" class="anchor"></a>
<div class="container">
<div class="row">
<h2 class="logo title text-center"><a href="//client.pritunl.com" target="_blank">pritunl client</a></h2>
<h2 class="title text-center">Open Source OpenVPN and WireGuard Client</h2>
<div class="item col-md-10 col-md-offset-1 col-sm-10 col-sm-offset-1 col-xs-12">
<p class="desc">Free and open source cross platform OpenVPN and WireGuard client. Connect to any OpenVPN server with a secure open source client. Additonal integration available when connecting to a Pritunl server. Free and open source alternative to Viscosity.</p>
</div>
<div class="item col-md-12 col-sm-12 col-xs-12">