-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathfeatures.html
More file actions
1116 lines (1079 loc) · 47.4 KB
/
features.html
File metadata and controls
1116 lines (1079 loc) · 47.4 KB
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
<html>
<head>
<title>Features: OpenWrt Controller, RADIUS</title>
<meta name="slug" content="features" />
<meta name="template" content="page-modal" />
</head>
<body>
<section class="section pt-0 pb-0 has-text-centered">
<div class="container is-max-widescreen pt-2 pb-6">
<h1 class="title is-spaced is-size-3-mobile">
OpenWISP <span class="has-text-primary">Features</span>
</h1>
<p class="subtitle is-size-5">
OpenWISP offers a wealth of features, modules, and reusable code to
help you meet all your network management needs.
</p>
<section
class="fixed-grid has-1-cols-mobile has-2-cols-tablet has-3-cols-desktop pt-4 pb-4"
>
<div class="features grid has-text-centered">
<div class="cell">
<h2>
<a class="open-modal" href="#templates-and-variables">
<span class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-solid fa-copy"></i>
</span>
</span>
<span>Configuration Templates</span>
</a>
</h2>
<p>
Effortlessly manage device settings by defining reusable
configuration templates that apply updates system-wide with a
single change.
</p>
<div class="modal fullscreen">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">
Configuration Templates and Variables
</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">
<p>
Easily manage and apply configuration settings with the
<span class="has-text-weight-medium"
>Configuration Templates</span
>
feature in OpenWISP. Define and order templates manually
or use
<span class="has-text-weight-medium"
>default templates</span
>, <span class="has-text-weight-medium">tags</span>, and
<span class="has-text-weight-medium"
>group templates</span
>
for automated application.
</p>
<img
src="https://openwisp.io/docs/stable/_images/template-ordering.gif"
alt="Template Ordering"
title="Template Ordering"
class="screenshot"
/>
<p>
Customize configurations for each
<span class="has-text-weight-medium">device</span>,
<span class="has-text-weight-medium">group</span>, or
<span class="has-text-weight-medium">organization</span>
using dynamic
<span class="has-text-weight-medium">variables</span>.
This flexibility ensures precise and adaptable
configuration management.
</p>
<img
src="https://raw.githubusercontent.com/openwisp/openwisp-controller/docs/docs/device-context.png"
alt="Configuration Variables"
title="Configuration Variables"
class="screenshot"
/>
</section>
<footer class="modal-card-foot">
<div class="buttons">
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/controller/user/templates.html"
>
<span class="fas fa-plus"></span>
<span>Read more about Templates</span>
</a>
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/controller/user/variables.html"
>
<span class="fas fa-plus"></span>
<span>Read more about Variables</span>
</a>
<button class="button with-text close">
<span class="fas fa-close"></span>
<span>Close</span>
</button>
</div>
</footer>
</div>
</div>
</div>
<div class="cell">
<h2>
<a
href="https://openwisp.io/docs/stable/openwrt-config-agent/user/automatic-registration.html"
target="_blank"
>
<span class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-gear"></i>
</span>
</span>
<span>Automatic Provisioning</span>
</a>
</h2>
<p>
Seamlessly connect and configure new devices with zero-touch
auto registration, enabling rapid deployments with minimal
manual effort.
</p>
</div>
<div class="cell">
<h2>
<a href="#automatic-vpn-tunnels" class="open-modal">
<span class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-shield"></i>
</span>
</span>
<span>Automatic VPN Tunnels</span>
</a>
</h2>
<p>
Automatically provision secure VPN tunnels with all required
configurations, keys, and certificates, reducing errors and
speeding up node deployment.
</p>
<div class="modal fullscreen">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Automatic VPN Tunnels</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">
<p>
OpenWISP supports automatically generating configuration
and cryptographic keys and/or x509 certificates for VPN
technologies like
<span class="has-text-weight-medium">Wireguard</span>,
<span class="has-text-weight-medium">OpenVPN</span>
and
<span class="has-text-weight-medium">Zerotier</span>.
</p>
<p class="has-text-centered">
<iframe
style="width:100%; height:700px;"
src="https://www.youtube.com/embed/VThvUHi-4l4?si=MI6Koda404IqPldw&vq=hd1080&autoplay=1&mute=1"
title="OpenWISP ZeroTier"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
>
</iframe>
</p>
</section>
<footer class="modal-card-foot">
<div class="buttons">
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/controller/user/wireguard.html"
>
<span class="fas fa-plus"></span>
<span>Wireguard</span>
</a>
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/controller/user/openvpn.html"
>
<span class="fas fa-plus"></span>
<span>OpenVPN</span>
</a>
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/controller/user/zerotier.html"
>
<span class="fas fa-plus"></span>
<span>ZeroTier</span>
</a>
<button class="button with-text close">
<span class="fas fa-close"></span>
<span>Close</span>
</button>
</div>
</footer>
</div>
</div>
</div>
<div class="cell">
<h2>
<a class="open-modal" href="#network-monitoring">
<span class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-chart-simple"></i>
</span>
</span>
<span>Network Monitoring</span>
</a>
</h2>
<p>
Monitor network performance with insights into latency,
reachability, hardware usage, traffic patterns, and Wi-Fi
clients for proactive management.
</p>
<div class="modal fullscreen">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Network Monitoring</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">
<p>
The
<a
href="https://openwisp.io/docs/stable/monitoring/index.html"
target="_blank"
><span class="has-text-weight-medium"
>Monitoring module</span
></a
>
in OpenWISP provides a comprehensive view of your
network's performance with real-time metrics and
visualizations.
</p>
<p>
Track key metrics such as ping success rate, round trip
time, WiFi client connections, mobile signal quality,
traffic patterns, and access technology to ensure optimal
performance and proactive management of your network.
</p>
<p class="has-text-centered">
<img
src="https://github.com/openwisp/openwisp-monitoring/raw/docs/docs/1.1/ping-success-rate.png"
alt="Ping Success Rate"
title="Ping Success Rate"
class="screenshot"
/>
<img
src="https://raw.githubusercontent.com/openwisp/openwisp-monitoring/docs/docs/rtt.png"
alt="Round Trip Time"
title="Round Trip Time"
class="screenshot"
/>
<img
src="https://raw.githubusercontent.com/openwisp/openwisp-monitoring/docs/docs/wifi-clients.png"
alt="WiFi Clients"
title="WiFi Clients"
class="screenshot"
/>
<img
src="https://raw.githubusercontent.com/openwisp/openwisp-monitoring/docs/docs/signal-quality.png"
alt="Mobile Signal Quality"
title="Mobile Signal Quality"
class="screenshot"
/>
<img
src="https://raw.githubusercontent.com/openwisp/openwisp-monitoring/docs/docs/1.1/traffic.png"
alt="Traffic"
title="Traffic"
class="screenshot"
/>
<img
src="https://raw.githubusercontent.com/openwisp/openwisp-monitoring/docs/docs/access-technology.png"
alt="Access Technology"
title="Access Technology"
class="screenshot"
/>
</p>
</section>
<footer class="modal-card-foot">
<div class="buttons">
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/monitoring/user/metrics.html"
>
<span class="fas fa-plus"></span>
<span>Read more about Metrics</span>
</a>
<button class="button with-text close">
<span class="fas fa-close"></span>
<span>Close</span>
</button>
</div>
</footer>
</div>
</div>
</div>
<div class="cell">
<h2>
<a href="#notifications" class="open-modal">
<span class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-bell"></i>
</span>
</span>
<span>Alerts & Notifications</span>
</a>
</h2>
<p>
Receive timely notifications thanks to configurable alerts,
tailored to your network's needs for fast issue detection and
response.
</p>
<div class="modal fullscreen">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Alerts & Notifications</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">
<p>
Stay informed about important events in your network with
real-time notifications.
</p>
<img
src="https://raw.githubusercontent.com/openwisp/openwisp-notifications/docs/docs/images/notification-widget.gif"
alt="Notifications"
class="screenshot"
/>
<p>Receive important notifications via email.</p>
<p>
<img
src="https://raw.githubusercontent.com/openwisp/openwisp-notifications/docs/docs/images/email-template.png"
alt="Email notifications"
class="screenshot"
/>
</p>
<p>
Adjustable alert settings allow you to fine-tune the
sensitivity of your monitoring system, ensuring timely and
relevant alerts.
</p>
<p>
<img
src="https://raw.githubusercontent.com/openwisp/openwisp-monitoring/docs/docs/1.1/device-inline-alertsettings.png"
alt="Alert Settings"
class="screenshot"
/>
</p>
</section>
<footer class="modal-card-foot">
<div class="buttons">
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/notifications/user/web-email-notifications.html"
>
<span class="fas fa-plus"></span>
<span>Read more about Notifications</span>
</a>
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/monitoring/user/device-checks-and-alert-settings.html"
>
<span class="fas fa-plus"></span>
<span>Read more about Alert Settings</span>
</a>
<button class="button with-text close">
<span class="fas fa-close"></span>
<span>Close</span>
</button>
</div>
</footer>
</div>
</div>
</div>
<div class="cell">
<h2>
<a href="#multi-tenancy" class="open-modal">
<span class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-solid fa-users"></i>
</span>
</span>
<span>Multi-tenancy</span>
</a>
</h2>
<p>
Isolate tenants within separate organizations, ensuring each has
access only to their own data and configurations, while super
administrators maintain full oversight.
</p>
<div class="modal fullscreen">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Multi-tenancy</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">
<p>
Manage diverse organizational needs with isolated access
for each tenant, while allowing resource sharing through
configurable shared objects.
</p>
<p>
For instance, a user can belong to multiple organizations,
each with different roles.
</p>
<p>
<img
src="https://github.com/openwisp/openwisp-users/raw/docs/docs/images/org-manager.png"
alt="Organization Manager"
class="screenshot"
/>
</p>
<p>
Shared objects are resources accessible to multiple
organizations or tenants within the system.
</p>
<p>
<img
src="https://github.com/openwisp/openwisp-users/raw/docs/docs/images/shared-object.png"
alt="Shared Objects"
class="screenshot"
/>
</p>
</section>
<footer class="modal-card-foot">
<div class="buttons">
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/users/user/basic-concepts.html#organizations-multi-tenancy"
>
<span class="fas fa-plus"></span>
<span>Read more about Multi-tenancy</span>
</a>
<button class="button with-text close">
<span class="fas fa-close"></span>
<span>Close</span>
</button>
</div>
</footer>
</div>
</div>
</div>
<div class="cell">
<h2>
<a href="#firmware-upgrades" class="open-modal">
<span class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-solid fa-cloud-arrow-up"></i>
</span>
</span>
<span>Firmware Upgrades</span>
</a>
</h2>
<p>
Efficiently manage firmware upgrades with options for individual
or batch updates, keeping your devices current with the latest
features and security patches.
</p>
<div class="modal fullscreen">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Firmware Upgrades</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">
<p>
The
<a
href="https://openwisp.io/docs/stable/firmware-upgrader/index.html"
target="_blank"
><span class="has-text-weight-medium"
>Firmware Upgrader module</span
></a
>
streamlines the process of keeping your devices
up-to-date.
</p>
<p>
Upload firmware images directly to the system with just a
few clicks.
</p>
<p>
<img
src="https://raw.githubusercontent.com/openwisp/openwisp-firmware-upgrader/docs/docs/images/quickstart-firmwareimage.gif"
alt="Upload Firmware"
class="screenshot"
/>
</p>
<p>
Once the firmware is uploaded, you can easily initiate
firmware upgrades on individual devices for precision
updates.
</p>
<p>
<img
src="https://raw.githubusercontent.com/openwisp/openwisp-firmware-upgrader/docs/docs/images/quickstart-devicefirmware.gif"
alt="Single Upgrade"
class="screenshot"
/>
</p>
<p>
For larger networks, the firmware upgrader supports batch
upgrades, allowing you to update multiple devices
simultaneously, ensuring network consistency with minimal
effort.
</p>
<p>
<img
src="https://raw.githubusercontent.com/openwisp/openwisp-firmware-upgrader/docs/docs/images/quickstart-batch-upgrade.gif"
alt="Batch Upgrades"
class="screenshot"
/>
</p>
</section>
<footer class="modal-card-foot">
<div class="buttons">
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/firmware-upgrader/index.html"
>
<span class="fas fa-plus"></span>
<span>Read more about Firmware Upgrades</span>
</a>
<button class="button with-text close">
<span class="fas fa-close"></span>
<span>Close</span>
</button>
</div>
</footer>
</div>
</div>
</div>
<div class="cell">
<h2>
<a href="#network-topology" class="open-modal">
<span class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-diagram-project"></i>
</span>
</span>
<span>Network Topology</span>
</a>
</h2>
<p>
Visualize and manage your network's layout with comprehensive
topology maps, offering clear insights into device connections
and network structure.
</p>
<div class="modal fullscreen">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Network Topology</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">
<p>
Explore the powerful
<a
href="https://openwisp.io/docs/stable/network-topology/index.html"
target="_blank"
>Network Topology module</a
>
OpenWISP to gain detailed insights into your network’s
layout. The module offers dynamic visualization of network
devices, connections, and status, allowing you to manage
and optimize your network efficiently.
</p>
<p>
Access and update network topology data effortlessly
through our HTTP API.
</p>
<p>Key features include:</p>
<ul>
<li>
<strong>Real-time Visualization:</strong> Visualize
network devices and their interconnections in real-time.
</li>
<li>
<strong>Dynamic Updates:</strong> Automatically update
the topology view as network changes occur.
</li>
<li>
<strong>Detailed Insights:</strong> Access detailed
information about each device and connection.
</li>
<li>
<strong>API Integration:</strong> Fetch and update
network topology data via HTTP API requests.
</li>
</ul>
<p>
<img
src="https://raw.githubusercontent.com/openwisp/openwisp-network-topology/docs/docs/quickstart-receive.gif"
alt="Receive Network Topology Data"
title="Network Topology Data Fetching"
class="screenshot"
/>
</p>
</section>
<footer class="modal-card-foot">
<div class="buttons">
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/network-topology/index.html"
>
<span class="fas fa-plus"></span>
<span>Read more about Network Topology</span>
</a>
<button class="button with-text close">
<span class="fas fa-close"></span>
<span>Close</span>
</button>
</div>
</footer>
</div>
</div>
</div>
<div class="cell">
<h2>
<a href="#wifi-and-roaming" class="open-modal">
<span class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-house-signal"></i>
</span>
</span>
<span>WiFi & Roaming</span>
</a>
</h2>
<p>
Optimize network performance with seamless WiFi roaming and
intelligent access point management, ensuring consistent
connectivity and broad coverage.
</p>
<div class="modal fullscreen">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">WiFi & Roaming</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">
<p>
Various
<span class="has-text-weight-medium">WiFi networks</span>
can be configured and managed effortlessly through
OpenWISP.
</p>
<p>
<img
src="https://openwisp.io/docs/stable/_images/open-ap-wifi-ui.gif"
alt="Setting up an open WiFi AP"
class="screenshot"
/>
</p>
<p>
WiFi client data is periodically collected and presented
in a clear, easy-to-read format.
</p>
<p>
<img
src="https://openwisp.io/docs/stable/_images/ap-wifi-sessions.png"
alt="WiFi Sessions"
class="screenshot"
/>
</p>
</section>
<footer class="modal-card-foot">
<div class="buttons">
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/tutorials/wifi-access-point.html"
>
<span class="fas fa-plus"></span>
<span>Read more about WiFi & Roaming</span>
</a>
<button class="button with-text close">
<span class="fas fa-close"></span>
<span>Close</span>
</button>
</div>
</footer>
</div>
</div>
</div>
<div class="cell">
<h2>
<a class="open-modal" href="#hotspot-and-public-wifi">
<span class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-wifi"></i>
</span>
</span>
<span>Hotspots & Public WiFi</span>
</a>
</h2>
<p>
Deploy hotspots and public WiFi with captive portal integration
for registration, authentication, social login, mobile phone
number verification and paid subscriptions.
</p>
<div class="modal fullscreen">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Hotspots & Public WiFi</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">
<p>
Deploy and manage
<span class="has-text-weight-medium"
>public WiFi hotspots</span
>
with flexible authentication options, including
<span class="has-text-weight-medium">social login</span>,
<span class="has-text-weight-medium">paid access</span>,
and
<span class="has-text-weight-medium"
>SMS verification</span
>.
</p>
<p>
<iframe
style="width:100%; height:700px;"
src="https://www.youtube.com/embed/wUTFte2at7o"
title="Captive Portal Auto Login Feature of OpenWISP"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
referrerpolicy="strict-origin-when-cross-origin"
allowfullscreen
></iframe>
</p>
</section>
<footer class="modal-card-foot">
<div class="buttons">
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/tutorials/hotspot.html"
>
<span class="fas fa-plus"></span>
<span>Read more about Hotspot & Public WiFi</span>
</a>
<button class="button with-text close">
<span class="fas fa-close"></span>
<span>Close</span>
</button>
</div>
</footer>
</div>
</div>
</div>
<div class="cell">
<h2>
<a href="#mesh-networks" class="open-modal">
<span class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-circle-nodes"></i>
</span>
</span>
<span>Mesh networks</span>
</a>
</h2>
<p>
Enhance network reliability with mesh networks, providing
robust, self-healing connections that ensure seamless coverage
and optimal performance.
</p>
<div class="modal fullscreen">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">Mesh networks</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">
<p>
Deploy and manage dynamic
<span class="has-text-weight-medium"
>wireless mesh networks</span
>
that automatically adapt to changing conditions, ensuring
reliable connectivity across multiple nodes.
</p>
<p>
<img
src="https://openwisp.io/docs/stable/_images/mesh-network-topology.gif"
alt="Mesh Topology Collection and Visualization"
class="screenshot"
/>
</p>
<p>
<img
src="https://openwisp.io/docs/stable/_images/status-mesh0.png"
alt="Mesh SSID"
class="screenshot"
/>
</p>
</section>
<footer class="modal-card-foot">
<div class="buttons">
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/tutorials/mesh.html"
>
<span class="fas fa-plus"></span>
<span>Read more about Mesh Networks</span>
</a>
<button class="button with-text close">
<span class="fas fa-close"></span>
<span>Close</span>
</button>
</div>
</footer>
</div>
</div>
</div>
<div class="cell">
<h2>
<a href="#radius-eap" class="open-modal">
<span class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-user-shield"></i>
</span>
</span>
<span>
<abbr title="Remote Authentication Dial-In User Service"
>RADIUS</abbr
>
&
<abbr title="Extensible Authentication Protocol">EAP</abbr>
</span>
</a>
</h2>
<p>
Adopt RADIUS to handle authentication, authorization, and
accounting, ensuring secure and efficient access control across
your network.
</p>
<div class="modal fullscreen">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">
RADIUS and Extensible Authentication Protocol
</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">
<p>
Manage user authentication effortlessly with features like
<span class="has-text-weight-medium"
>SMS verification</span
>, user import and generation,
<span class="has-text-weight-medium">social login</span>,
and
<span class="has-text-weight-medium"
>Single Sign-On (SAML)</span
>.
</p>
<p>
Enforce session limits, perform real-time changes with
<span class="has-text-weight-medium"
>Change of Authorization (CoA)</span
>, and integrate seamlessly with your systems using the
REST API.
</p>
<p>
You can use the
<span class="has-text-weight-medium">RADIUS</span>
module to implement common scenarios like
<span class="has-text-weight-medium"
>WPA Enterprise EAP</span
>
or <span class="has-text-weight-medium">PPPoE</span>.
</p>
<p>
<img
src="https://openwisp.io/docs/stable/_images/enable-wpa-enterprise-template.png"
alt="WPA Enterprise EAP-TTLS-PAP"
class="screenshot"
/>
</p>
</section>
<footer class="modal-card-foot">
<div class="buttons">
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/radius/index.html"
>
<span class="fas fa-plus"></span>
<span>Read more about RADIUS</span>
</a>
<a
class="button with-text is-orange"
target="_blank"
href="https://openwisp.io/docs/stable/tutorials/wpa-enterprise-eap-ttls-pap.html"
>
<span class="fas fa-plus"></span>
<span>Read more about WPA Enterprise EAP</span>
</a>
<button class="button with-text close">
<span class="fas fa-close"></span>
<span>Close</span>
</button>
</div>
</footer>
</div>
</div>
</div>
<div class="cell">
<h2>
<a href="#ipam" class="open-modal">
<span class="button is-small is-orange is-inverted">
<span class="icon is-small">
<i class="fas fa-database"></i>
</span>
</span>
<span
><abbr title="IP Address Administration">IPAM</abbr></span
>
</a>
</h2>
<p>
The IPAM module automatically provisions subnets and IP
addresses based on allocation rules set by network
administrators.
</p>
<div class="modal fullscreen">
<div class="modal-background"></div>
<div class="modal-card">
<header class="modal-card-head">
<p class="modal-card-title">IP Address Administration</p>
<button class="delete close" aria-label="close"></button>
</header>
<section class="modal-card-body text content mb-0 pb-2">