forked from openwisp/OpenWISP-Website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwhatis.html
238 lines (229 loc) · 8.79 KB
/
whatis.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>OpenWISP: OpenWRT Controller, public wifi, RADIUS, mesh networks</title>
<link rel="stylesheet" href="css/reset.css" type="text/css">
<link rel="stylesheet" href="css/semantic.min.css" type="text/css">
<link rel="stylesheet" href="css/style.css" type="text/css" media="screen">
<link rel="icon" type="image/x-icon" href="images/favicon.png" />
</head>
<body class="content readable">
<div class="ui sidebar vertical menu">
<a class="item" href="index.html">Home</a>
<a class="item active" href="whatis.html">Features</a>
<a class="item" href="history.html">History</a>
<a class="item" href="support.html">Support</a>
<a class="item" href="http://openwisp.io/docs">Docs</a>
<a class="item" href="thecode.html">Code</a>
<a class="item" href="about.html">People</a>
</div>
<div class="pusher">
<div class="ui grid" id="top-bar">
<div class="ui computer only column sixteen wide">
<div class="ui center aligned container secondary menu">
<h1 class="item logo">
<a href="./">OpenWISP</a>
</h1>
<div class="right menu">
<a class="item" href="index.html">Home</a>
<a class="item active" href="whatis.html">Features</a>
<a class="item" href="history.html">History</a>
<a class="item" href="http://openwisp.io/docs">Docs</a>
<a class="item" href="support.html">Support</a>
<a class="item" href="thecode.html">Code</a>
<a class="item" href="about.html">People</a>
</div>
</div>
</div>
<div class="ui mobile tablet only sixteen wide column">
<div class="ui menu">
<h1 class="item logo">
<a href="./">OpenWISP</a>
</h1>
<div class="right menu">
<div class="menu-open item">
<i class="sidebar icon"></i>
</div>
</div>
</div>
</div>
</div>
<div class="ui grid" id="main">
<article class="ui container">
<h1>OpenWISP Features</h1>
<p>
OpenWISP is a network management system that allows managing and automating several aspects of a network:
</p>
<ul class="ui bulleted link list">
<li>dynamic auto-configuration of new nodes</li>
<li>creation of VPN tunnels</li>
<li>initialization of WiFi access points</li>
<li>configuration of mesh networks</li>
<li>
configuration of any other network configuration supported
by <a target="_blank" href="http://openwrt.org">OpenWRT</a>
</li>
</ul>
<p class="badges center">
<img src="images/linux.png" alt="">
<img src="images/python-django.png" alt="" class="django">
<a href="http://netjson.org" target="_blank">
<img src="images/netjson.svg" alt="">
</a>
</p>
<p>
The server side application is modular and highly extensible, programmable and hackable.
</p>
<p>
The web modules are built with
<a target="_blank" href="https://www.djangoproject.com/">Django</a>
which is notoriously easy to extend and has a rich ecosystem of
reusable components which can be used to create networking applications
that are tailored to the needs of your organization.
</p>
<p>
Its <a target="_blank" href="https://github.com/openwisp/netjsonconfig">configuration engine</a>
which generates the configuration for routers and networking devices is
written in <a target="_blank" href="https://www.python.org/">Python</a>
and based on <a target="_blank" href="http://netjson.org/">NetJSON</a>.
<br>
At the moment only OpenWRT is supported for production usage,
but an experimental
<a target="_blank" href="https://github.com/edoput/netjsonconfig-airos">
configuration backend for Ubiquiti AirOS
</a> is also available.
Moreover, the engine allows
<a target="_blank" href="http://netjsonconfig.openwisp.org/en/latest/backends/create_your_backend.html">
writing custom configuration backends
</a> to support any type of network OS which allows remote configuration.
</p>
<p class="center buttons">
<a href="thecode.html"
class="ui big inverted button red">
<i class="download icon"></i>
Get OpenWISP
</a>
<a href="#openwrt-controller"
class="ui big button inverted grey">
<i class="plus icon"></i>
See more features
</a>
</p>
<h2 id="openwrt-controller">
OpenWISP Controller
</h2>
<p><iframe
width="100%" height="400"
src="https://www.youtube.com/embed/MY097Y2cPQ0?list=PLPueLZei9c8_DEYgC5StOcR5bCAcQVfR8"
frameborder="0"
allowfullscreen>
</iframe></p>
<p>
This video shows how OpenWISP can be used as a
<strong>network controller</strong> and <strong>wifi controller</strong>.
</p>
<h2>Configuration Templates</h2>
<p><iframe
width="100%" height="400"
src="https://www.youtube.com/embed/Fjr59v_WzLE"
frameborder="0"
allowfullscreen>
</iframe></p>
<h2>Auto Registration</h2>
<p><iframe
width="100%" height="400"
src="https://www.youtube.com/embed/lFd4Vbq0OdI"
frameborder="0"
allowfullscreen>
</iframe></p>
<h2>Geographic and Indoor Map</h2>
<p><iframe
width="100%" height="400"
src="https://www.youtube.com/embed/WgVduiZzuA0"
frameborder="0"
allowfullscreen>
</iframe></p>
<h2>VPN and x509 Certificates</h2>
<p><iframe
width="100%" height="400"
src="https://www.youtube.com/embed/9iT1-Wl8_gU"
frameborder="0"
allowfullscreen>
</iframe></p>
<h2>Network Topology</h2>
<p><iframe
width="100%" height="400"
src="https://www.youtube.com/embed/5huV18jezgU"
frameborder="0"
allowfullscreen>
</iframe></p>
<h2>Other modules on our roadmap</h2>
<ul class="ui bulleted link list">
<li>
RADIUS manager:
<a href="https://github.com/openwisp/django-freeradius"
target="_blank">
django-freeradius
</a>
</li>
<li>
IP & subnet administration:
<a href="https://github.com/openwisp/django-ipam"
target="_blank">
django-ipam
</a>
</li>
<li>Monitoring system</li>
<li>Firmware upgrader</li>
</ul>
<p class="center buttons">
<a href="thecode.html"
class="ui big inverted button red">
<i class="download icon"></i>
Get OpenWISP
</a>
<a href="http://openwisp.io/docs/general/help-us.html"
class="ui big inverted button grey" target="_blank">
<i class="users icon"></i> Join the Community
</a>
</p>
<h2>Legacy OpenWISP 1 modules</h2>
<p>
If you are looking at the old OpenWISP version,
take a look at the <a href="legacy.html">Legacy OpenWISP page</a>.
</p>
</article>
</div>
<div class="ui black inverted segment padding-vertical" id="footer">
<div class="ui container stackable two column grid">
<div class="column logo white">
<a href="./">OpenWISP</a>
</div>
<div class="column social">
<a href="https://twitter.com/openwisp" class="ui twitter button">
<i class="twitter icon"></i>
Twitter
</a>
<a href="https://facebook.com/openwisp" class="ui facebook button">
<i class="facebook icon"></i>
Facebook
</a>
<a href="https://www.linkedin.com/groups/4777261" class="ui linkedin button">
<i class="linkedin icon"></i>
Linked In
</a>
<a href="https://github.com/openwisp" class="ui black button">
<i class="github icon"></i> Github
</a>
</div>
<p>© 2008-2018 OpenWISP and individual contributors.</p>
</div>
</div>
</div>
<script src="js/jquery-1.7.1.min.js"></script>
<script src="js/semantic.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>