mirror of
https://github.com/gravitl/netmaker.git
synced 2025-10-06 03:46:02 +08:00
updating README
This commit is contained in:
parent
ec443b1be3
commit
a172641cad
49 changed files with 1266 additions and 1028 deletions
27
README.md
27
README.md
|
@ -6,7 +6,26 @@
|
|||
<i>Create and control automated virtual networks.</i>
|
||||
</p>
|
||||
|
||||

|
||||
<p align="center">
|
||||
<a href="https://github.com/gravitl/netmaker/releases">
|
||||
<img src="https://img.shields.io/docker/v/gravitl/netmaker?color=blue" />
|
||||
</a>
|
||||
<a href="https://discord.gg/zRb9Vfhk8A">
|
||||
<img src="https://img.shields.io/badge/community-discord-purple" />
|
||||
</a>
|
||||
<a href="https://github.com/gravitl/netmaker/graphs/contributors">
|
||||
<img src="https://img.shields.io/github/commit-activity/w/gravitl/netmaker?color=brightgreen" />
|
||||
</a>
|
||||
<a href="https://gravitl.com/resources">
|
||||
<img src="https://img.shields.io/badge/learning-resources-9cf" />
|
||||
</a>
|
||||
<a href="https://twitter.com/intent/follow?screen_name=gravitlcorp">
|
||||
<img src="https://img.shields.io/twitter/follow/gravitlcorp?style=social" />
|
||||
</a>
|
||||
<a href="https://www.youtube.com/channel/UCach3lJY_xBV7rGrbUSvkZQ">
|
||||
<img src="https://img.shields.io/youtube/channel/views/UCach3lJY_xBV7rGrbUSvkZQ?style=social" />
|
||||
</a>
|
||||
</p>
|
||||
|
||||
|
||||
# WireGuard® Automation from Homelab to Enterprise
|
||||
|
@ -18,6 +37,7 @@
|
|||
|
||||
# Get Started in 5 Minutes
|
||||
|
||||
**For production-grade installations, visit the [Install Docs](https://netmaker.readthedocs.io/en/develop/install.html).**
|
||||
1. Get a cloud VM with Ubuntu 20.04 and a public IP.
|
||||
2. Open ports 443, 53, and 51821-51830/udp on the VM firewall and in cloud security settings.
|
||||
3. Run the script:
|
||||
|
@ -26,8 +46,6 @@
|
|||
|
||||
<img src="./docs/images/install-server.gif" width="50%" /><img src="./docs/images/visit-website.gif" width="50%" />
|
||||
|
||||
(For a more customized install, including using your own domain, head over to [the quick start guide](https://docs.netmaker.org/quick-start.html).)
|
||||
|
||||
After installing Netmaker, check out the [Walkthrough](https://itnext.io/getting-started-with-netmaker-a-wireguard-virtual-networking-platform-3d563fbd87f0) and [Getting Started](https://netmaker.readthedocs.io/en/master/getting-started.html) guide to begin setting up networks. Or, check out some of our other [Tutorials](https://gravitl.com/resources) for different use cases, including Kubernetes.
|
||||
|
||||
# Why Netmaker + WireGuard?
|
||||
|
@ -46,10 +64,9 @@ After installing Netmaker, check out the [Walkthrough](https://itnext.io/getting
|
|||
|
||||
- [Business (Subscription)](https://gravitl.com/plans/business)
|
||||
|
||||
- [Email](mailto:info@gravitl.com)
|
||||
|
||||
## Disclaimer
|
||||
[WireGuard](https://wireguard.com/) is a registered trademark of Jason A. Donenfeld.
|
||||
|
||||
## License
|
||||
|
||||
Netmaker's source code and all artifacts in this repository are freely available. All versions are published under the Server Side Public License (SSPL), version 1, which can be found here: [LICENSE.txt](./LICENSE.txt).
|
||||
|
|
|
@ -3,7 +3,7 @@ version: "3.4"
|
|||
services:
|
||||
netmaker:
|
||||
container_name: netmaker
|
||||
image: gravitl/netmaker:v0.8.2
|
||||
image: gravitl/netmaker:v0.8.3
|
||||
volumes:
|
||||
- /etc/netclient/config:/etc/netclient/config
|
||||
- dnsconfig:/root/config/dnsconfig
|
||||
|
|
|
@ -1,56 +0,0 @@
|
|||
version: "3.4"
|
||||
|
||||
services:
|
||||
rqlite:
|
||||
container_name: rqlite
|
||||
image: rqlite/rqlite
|
||||
network_mode: host
|
||||
restart: always
|
||||
volumes:
|
||||
- sqldata:/rqlite/file/data
|
||||
netmaker:
|
||||
depends_on:
|
||||
- rqlite
|
||||
privileged: true
|
||||
container_name: netmaker
|
||||
image: gravitl/netmaker:v0.7
|
||||
volumes:
|
||||
- ./:/local
|
||||
- /etc/netclient:/etc/netclient
|
||||
- /usr/bin/wg:/usr/bin/wg
|
||||
- /var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket
|
||||
- /run/systemd/system:/run/systemd/system
|
||||
- /etc/systemd/system:/etc/systemd/system
|
||||
- /sys/fs/cgroup:/sys/fs/cgroup
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
- SYS_MODULE
|
||||
restart: always
|
||||
network_mode: host
|
||||
environment:
|
||||
SERVER_HOST: "SERVER_PUBLIC_IP"
|
||||
DNS_MODE: "off"
|
||||
SERVER_API_CONN_STRING: "api.NETMAKER_BASE_DOMAIN:443"
|
||||
SERVER_GRPC_CONN_STRING: "grpc.NETMAKER_BASE_DOMAIN:443"
|
||||
GRPC_SSL: "on"
|
||||
SERVER_HTTP_HOST: "api.NETMAKER_BASE_DOMAIN"
|
||||
SERVER_GRPC_HOST: "grpc.NETMAKER_BASE_DOMAIN"
|
||||
API_PORT: "8081"
|
||||
GRPC_PORT: "50051"
|
||||
CLIENT_MODE: "on"
|
||||
MASTER_KEY: "REPLACE_MASTER_KEY"
|
||||
SERVER_GRPC_WIREGUARD: "off"
|
||||
CORS_ALLOWED_ORIGIN: "*"
|
||||
netmaker-ui:
|
||||
container_name: netmaker-ui
|
||||
depends_on:
|
||||
- netmaker
|
||||
image: gravitl/netmaker-ui:v0.7
|
||||
links:
|
||||
- "netmaker:api"
|
||||
ports:
|
||||
- "8082:80"
|
||||
environment:
|
||||
BACKEND_URL: "https://api.NETMAKER_BASE_DOMAIN"
|
||||
volumes:
|
||||
sqldata: {}
|
|
@ -3,7 +3,7 @@ version: "3.4"
|
|||
services:
|
||||
netmaker:
|
||||
container_name: netmaker
|
||||
image: gravitl/netmaker:v0.8.2
|
||||
image: gravitl/netmaker:v0.8.3
|
||||
volumes:
|
||||
- /etc/netclient/config:/etc/netclient/config
|
||||
- dnsconfig:/root/config/dnsconfig
|
||||
|
|
BIN
docs/_build/doctrees/environment.pickle
vendored
BIN
docs/_build/doctrees/environment.pickle
vendored
Binary file not shown.
BIN
docs/_build/doctrees/index.doctree
vendored
BIN
docs/_build/doctrees/index.doctree
vendored
Binary file not shown.
BIN
docs/_build/doctrees/install.doctree
vendored
Normal file
BIN
docs/_build/doctrees/install.doctree
vendored
Normal file
Binary file not shown.
BIN
docs/_build/doctrees/quick-start-nginx.doctree
vendored
BIN
docs/_build/doctrees/quick-start-nginx.doctree
vendored
Binary file not shown.
BIN
docs/_build/doctrees/quick-start.doctree
vendored
BIN
docs/_build/doctrees/quick-start.doctree
vendored
Binary file not shown.
BIN
docs/_build/doctrees/server-installation.doctree
vendored
BIN
docs/_build/doctrees/server-installation.doctree
vendored
Binary file not shown.
10
docs/_build/html/_sources/index.rst.txt
vendored
10
docs/_build/html/_sources/index.rst.txt
vendored
|
@ -48,6 +48,16 @@ A technical overview of Netmaker, including design decisions and limitations.
|
|||
|
||||
architecture
|
||||
|
||||
Install
|
||||
------------------------------------
|
||||
|
||||
Choose the right install method for you.
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
install
|
||||
|
||||
Quick Start
|
||||
---------------
|
||||
|
||||
|
|
20
docs/_build/html/_sources/install.rst.txt
vendored
Normal file
20
docs/_build/html/_sources/install.rst.txt
vendored
Normal file
|
@ -0,0 +1,20 @@
|
|||
=========
|
||||
Install
|
||||
=========
|
||||
|
||||
Choose the install method that makes sense for you.
|
||||
|
||||
**For most users, we recommend the** :doc:`Quick Install<./quick-start>` **guide.**
|
||||
|
||||
`Trial, PoC, Testing, and Experimenting <https://github.com/gravitl/netmaker/tree/master#get-started-in-5-minutes>`_
|
||||
|
||||
:doc:`Quick Install: for general small-to-medium use cases <./quick-start>`
|
||||
|
||||
:ref:`Kubernetes Installation <KubeInstall>`
|
||||
|
||||
:ref:`Non-Docker (from binary) Install <NoDocker>`
|
||||
|
||||
:ref:`Highly Available Installation <HAInstall>`
|
||||
|
||||
:doc:`Advanced Install Resources <./server-installation>`
|
||||
|
|
@ -161,7 +161,7 @@ Start Netmaker
|
|||
|
||||
``sudo docker-compose -f docker-compose.yml up -d``
|
||||
|
||||
navigate to dashboard.<your base domain> to see your nginx instance.
|
||||
navigate to dashboard.<your base domain> to log into the UI.
|
||||
|
||||
To troubleshoot issues, start with:
|
||||
|
||||
|
|
|
@ -62,7 +62,7 @@ Caddy will create 3 subdomains with this wildcard, EX:
|
|||
|
||||
ssh root@your-host
|
||||
sudo apt-get update
|
||||
sudo apt-get -y docker docker-compose wireguard
|
||||
sudo apt-get install -y docker.io docker-compose wireguard
|
||||
|
||||
At this point you should have all the system dependencies you need.
|
||||
|
||||
|
@ -132,7 +132,7 @@ Start Netmaker
|
|||
|
||||
``sudo docker-compose up -d``
|
||||
|
||||
navigate to dashboard.<your base domain> to see your nginx instance.
|
||||
navigate to dashboard.<your base domain> to begin using Netmaker.
|
||||
|
||||
To troubleshoot issues, start with:
|
||||
|
||||
|
|
|
@ -187,6 +187,8 @@ To run without DNS, follow the :doc:`Quick Install <./quick-start>` guide, omitt
|
|||
This template is equivalent but omits CoreDNS.
|
||||
|
||||
|
||||
.. _NoDocker:
|
||||
|
||||
Linux Install without Docker
|
||||
=============================
|
||||
|
||||
|
@ -234,6 +236,8 @@ The following uses Nginx as an http server. You may alternatively use Apache or
|
|||
CoreDNS Setup
|
||||
----------------
|
||||
|
||||
.. _KubeInstall:
|
||||
|
||||
Kubernetes Install
|
||||
=======================
|
||||
|
||||
|
@ -276,7 +280,7 @@ The following instructions assume you have Netmaker running and a network you wo
|
|||
For a more detailed guide on integrating Netmaker with MicroK8s, `check out this guide <https://itnext.io/how-to-deploy-a-cross-cloud-kubernetes-cluster-with-built-in-disaster-recovery-bbce27fcc9d7>`_.
|
||||
|
||||
Nginx Reverse Proxy Setup with https
|
||||
====================================
|
||||
======================================
|
||||
|
||||
The `Swag Proxy <https://github.com/linuxserver/docker-swag>`_ makes it easy to generate a valid ssl certificate for the config bellow. Here is the `documentation <https://docs.linuxserver.io/general/swag>`_ for the installation.
|
||||
|
||||
|
@ -337,3 +341,72 @@ The following file configures Netmaker as a subdomain. This config is an adaptio
|
|||
proxy_pass_request_headers on;
|
||||
}
|
||||
}
|
||||
|
||||
.. _HAInstall:
|
||||
|
||||
Highly Available Installation
|
||||
===============================
|
||||
|
||||
For an enterprise Netmaker installation, you will need a server that is highly available, to ensure redundant WireGuard routing when any server goes down. To do this, you will need:
|
||||
|
||||
1. A load balancer
|
||||
2. 3+ Netmaker server instances
|
||||
3. rqlite as the backing database
|
||||
|
||||
These documents outline general HA installation guidelines. Netmaker is highly customizable to meet a wide range of enterprise environments. If you would like support with an enterprise-grade Netmaker installation, you can `schedule a consultation here <https://gravitl.com/book>`_ .
|
||||
|
||||
The main consideration here is how to configure rqlite. Most other settings and procedures match the standardized way of making applications HA: Load balancing to multiple instances, and sharing a DB. In our case, the DB (rqlite) is distributed, making HA data more easily achievable.
|
||||
|
||||
1. Load Balancer Setup
|
||||
------------------------
|
||||
|
||||
Your load balancer of choice will send requests to the Netmaker servers. Setup is similar to the various guides we have created for Nginx, Caddy, and Traefik. SSL certificates must also be configured and handled by the LB.
|
||||
|
||||
2. RQLite Setup
|
||||
------------------
|
||||
|
||||
RQLite is the included distributed datastore for an HA Netmaker installation. If you have a different corporate database you wish to integrate, Netmaker is easily extended to other DB's. If this is a requirement, please contact us.
|
||||
|
||||
Assuming you use Rqlite, you must run it on each Netmaker server VM, or alongside that VM as a container. Setup a config.json for database credentials (password supports BCRYPT HASHING) and mount in working directory of rqlite and specify with `-auth config.json` :
|
||||
|
||||
.. code-block::
|
||||
|
||||
[{
|
||||
"username": "netmaker",
|
||||
"password": "<YOUR_DB_PASSWORD>",
|
||||
"perms": ["all"]
|
||||
}]
|
||||
|
||||
|
||||
Once your servers are set up with rqlite, the first instance must be started normally, and then additional nodes must be added with the "join" command. For instance, here is the first server node:
|
||||
|
||||
.. code-block::
|
||||
|
||||
sudo docker run -d -p 4001:4001 -p 4002:4002 rqlite/rqlite -node-id 1 -http-addr 0.0.0.0:4001 -raft-addr 0.0.0.0:4002 -http-adv-addr 1.2.3.4:4001 -raft-adv-addr 1.2.3.4:4002 -auth config.json
|
||||
|
||||
And here is a joining node:
|
||||
|
||||
.. code-block::
|
||||
|
||||
sudo docker run -d -p 4001:4001 -p 4002:4002 rqlite/rqlite -node-id 2 -http-addr 0.0.0.0:4001 -raft-addr 0.0.0.0:4002 -http-adv-addr 2.3.4.5:4001 -raft-adv-addr 2.3.4.5:4002 -join https://netmaker:<YOUR_DB_PASSWORD>@1.2.3.4:4001
|
||||
|
||||
- reference for rqlite setup: https://github.com/rqlite/rqlite/blob/master/DOC/CLUSTER_MGMT.md#creating-a-cluster
|
||||
- reference for rqlite security: https://github.com/rqlite/rqlite/blob/master/DOC/SECURITY.md
|
||||
|
||||
Once rqlite instances have been configured, the Netmaker servers can be deployed.
|
||||
|
||||
3. Netmaker Setup
|
||||
------------------
|
||||
|
||||
Netmaker will be started on each node with default settings, except with DATABASE=rqlite and SQL_CONN set appropriately to reach the local rqlite instance. Rqlite will maintain consistency with each Netmaker backend.
|
||||
|
||||
4. Other Considerations
|
||||
------------------------
|
||||
|
||||
This is enough to get a functioning HA installation of Netmaker. However, you may also want to make the Netmaker UI or the CoreDNS server HA as well. The Netmaker UI can simply be added to the same servers and load balanced appropriately. For some load balancers, you may be able to do this with CoreDNS as well.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
14
docs/_build/html/external-clients.html
vendored
14
docs/_build/html/external-clients.html
vendored
|
@ -275,6 +275,13 @@
|
|||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="install.html" class="md-nav__link">Install</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
@ -462,6 +469,13 @@
|
|||
<a href="server-installation.html#nginx-reverse-proxy-setup-with-https" class="md-nav__link">Nginx Reverse Proxy Setup with https</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="server-installation.html#highly-available-installation" class="md-nav__link">Highly Available Installation</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
|
|
14
docs/_build/html/genindex.html
vendored
14
docs/_build/html/genindex.html
vendored
|
@ -273,6 +273,13 @@
|
|||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="install.html" class="md-nav__link">Install</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
@ -460,6 +467,13 @@
|
|||
<a href="server-installation.html#nginx-reverse-proxy-setup-with-https" class="md-nav__link">Nginx Reverse Proxy Setup with https</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="server-installation.html#highly-available-installation" class="md-nav__link">Highly Available Installation</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
|
|
26
docs/_build/html/index.html
vendored
26
docs/_build/html/index.html
vendored
|
@ -274,6 +274,13 @@
|
|||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="install.html" class="md-nav__link">Install</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
@ -461,6 +468,13 @@
|
|||
<a href="server-installation.html#nginx-reverse-proxy-setup-with-https" class="md-nav__link">Nginx Reverse Proxy Setup with https</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="server-installation.html#highly-available-installation" class="md-nav__link">Highly Available Installation</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
|
@ -743,6 +757,8 @@
|
|||
</li>
|
||||
<li class="md-nav__item"><a href="#architecture" class="md-nav__link">Architecture</a>
|
||||
</li>
|
||||
<li class="md-nav__item"><a href="#install" class="md-nav__link">Install</a>
|
||||
</li>
|
||||
<li class="md-nav__item"><a href="#quick-start" class="md-nav__link">Quick Start</a>
|
||||
</li>
|
||||
<li class="md-nav__item"><a href="#quick-start-nginx-depreciated" class="md-nav__link">Quick Start Nginx (depreciated)</a>
|
||||
|
@ -813,6 +829,15 @@
|
|||
</div>
|
||||
|
||||
|
||||
<h2 id="install">Install<a class="headerlink" href="#install" title="Permalink to this headline">¶</a></h2>
|
||||
<p>Choose the right install method for you.</p>
|
||||
<div class="toctree-wrapper compound">
|
||||
<ul>
|
||||
<li class="toctree-l1"><a class="reference internal" href="install.html">Install</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
|
||||
<h2 id="quick-start">Quick Start<a class="headerlink" href="#quick-start" title="Permalink to this headline">¶</a></h2>
|
||||
<p>A quick start guide to getting up and running with Netmaker and WireGuard as quickly as possible.</p>
|
||||
<div class="toctree-wrapper compound">
|
||||
|
@ -863,6 +888,7 @@
|
|||
<li class="toctree-l2"><a class="reference internal" href="server-installation.html#linux-install-without-docker">Linux Install without Docker</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="server-installation.html#kubernetes-install">Kubernetes Install</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="server-installation.html#nginx-reverse-proxy-setup-with-https">Nginx Reverse Proxy Setup with https</a></li>
|
||||
<li class="toctree-l2"><a class="reference internal" href="server-installation.html#highly-available-installation">Highly Available Installation</a></li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul>
|
||||
|
|
842
docs/_build/html/install.html
vendored
Normal file
842
docs/_build/html/install.html
vendored
Normal file
|
@ -0,0 +1,842 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<meta name="viewport" content="width=device-width,initial-scale=1">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<meta name="lang:clipboard.copy" content="Copy to clipboard">
|
||||
<meta name="lang:clipboard.copied" content="Copied to clipboard">
|
||||
<meta name="lang:search.language" content="en">
|
||||
<meta name="lang:search.pipeline.stopwords" content="True">
|
||||
<meta name="lang:search.pipeline.trimmer" content="True">
|
||||
<meta name="lang:search.result.none" content="No matching documents">
|
||||
<meta name="lang:search.result.one" content="1 matching document">
|
||||
<meta name="lang:search.result.other" content="# matching documents">
|
||||
<meta name="lang:search.tokenizer" content="[\s\-]+">
|
||||
|
||||
|
||||
<link href="https://fonts.gstatic.com/" rel="preconnect" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono:400,500,700|Roboto:300,400,400i,700&display=fallback" rel="stylesheet">
|
||||
|
||||
<style>
|
||||
body,
|
||||
input {
|
||||
font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif
|
||||
}
|
||||
|
||||
code,
|
||||
kbd,
|
||||
pre {
|
||||
font-family: "Roboto Mono", "Courier New", Courier, monospace
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<link rel="stylesheet" href="_static/stylesheets/application.css"/>
|
||||
<link rel="stylesheet" href="_static/stylesheets/application-palette.css"/>
|
||||
<link rel="stylesheet" href="_static/stylesheets/application-fixes.css"/>
|
||||
|
||||
<link rel="stylesheet" href="_static/fonts/material-icons.css"/>
|
||||
|
||||
<meta name="theme-color" content="#3f51b5">
|
||||
<script src="_static/javascripts/modernizr.js"></script>
|
||||
|
||||
|
||||
|
||||
<title>Install — Netmaker 0.8.2 documentation</title>
|
||||
<link rel="stylesheet" type="text/css" href="_static/pygments.css" />
|
||||
<link rel="stylesheet" type="text/css" href="_static/material.css" />
|
||||
<script data-url_root="./" id="documentation_options" src="_static/documentation_options.js"></script>
|
||||
<script src="_static/jquery.js"></script>
|
||||
<script src="_static/underscore.js"></script>
|
||||
<script src="_static/doctools.js"></script>
|
||||
<link rel="author" title="About these documents" href="about.html" />
|
||||
<link rel="index" title="Index" href="genindex.html" />
|
||||
<link rel="search" title="Search" href="search.html" />
|
||||
<link rel="next" title="Quick Install" href="quick-start.html" />
|
||||
<link rel="prev" title="Architecture" href="architecture.html" />
|
||||
|
||||
|
||||
|
||||
</head>
|
||||
<body dir=ltr
|
||||
data-md-color-primary=indigo data-md-color-accent=light-blue>
|
||||
|
||||
<svg class="md-svg">
|
||||
<defs data-children-count="0">
|
||||
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="416" height="448" viewBox="0 0 416 448" id="__github"><path fill="currentColor" d="M160 304q0 10-3.125 20.5t-10.75 19T128 352t-18.125-8.5-10.75-19T96 304t3.125-20.5 10.75-19T128 256t18.125 8.5 10.75 19T160 304zm160 0q0 10-3.125 20.5t-10.75 19T288 352t-18.125-8.5-10.75-19T256 304t3.125-20.5 10.75-19T288 256t18.125 8.5 10.75 19T320 304zm40 0q0-30-17.25-51T296 232q-10.25 0-48.75 5.25Q229.5 240 208 240t-39.25-2.75Q130.75 232 120 232q-29.5 0-46.75 21T56 304q0 22 8 38.375t20.25 25.75 30.5 15 35 7.375 37.25 1.75h42q20.5 0 37.25-1.75t35-7.375 30.5-15 20.25-25.75T360 304zm56-44q0 51.75-15.25 82.75-9.5 19.25-26.375 33.25t-35.25 21.5-42.5 11.875-42.875 5.5T212 416q-19.5 0-35.5-.75t-36.875-3.125-38.125-7.5-34.25-12.875T37 371.5t-21.5-28.75Q0 312 0 260q0-59.25 34-99-6.75-20.5-6.75-42.5 0-29 12.75-54.5 27 0 47.5 9.875t47.25 30.875Q171.5 96 212 96q37 0 70 8 26.25-20.5 46.75-30.25T376 64q12.75 25.5 12.75 54.5 0 21.75-6.75 42 34 40 34 99.5z"/></svg>
|
||||
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
<input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer">
|
||||
<input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search">
|
||||
<label class="md-overlay" data-md-component="overlay" for="__drawer"></label>
|
||||
<a href="#install" tabindex="1" class="md-skip"> Skip to content </a>
|
||||
<header class="md-header" data-md-component="header">
|
||||
<nav class="md-header-nav md-grid">
|
||||
<div class="md-flex navheader">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<a href="index.html" title="Netmaker 0.8.2 documentation"
|
||||
class="md-header-nav__button md-logo">
|
||||
|
||||
<i class="md-icon"></i>
|
||||
|
||||
</a>
|
||||
</div>
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<label class="md-icon md-icon--menu md-header-nav__button" for="__drawer"></label>
|
||||
</div>
|
||||
<div class="md-flex__cell md-flex__cell--stretch">
|
||||
<div class="md-flex__ellipsis md-header-nav__title" data-md-component="title">
|
||||
<span class="md-header-nav__topic">Netmaker Docs</span>
|
||||
<span class="md-header-nav__topic"> Install </span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<label class="md-icon md-icon--search md-header-nav__button" for="__search"></label>
|
||||
|
||||
<div class="md-search" data-md-component="search" role="dialog">
|
||||
<label class="md-search__overlay" for="__search"></label>
|
||||
<div class="md-search__inner" role="search">
|
||||
<form class="md-search__form" action="search.html" method="GET" name="search">
|
||||
<input type="text" class="md-search__input" name="q" placeholder="Search"
|
||||
autocapitalize="off" autocomplete="off" spellcheck="false"
|
||||
data-md-component="query" data-md-state="active">
|
||||
<label class="md-icon md-search__icon" for="__search"></label>
|
||||
<button type="reset" class="md-icon md-search__icon" data-md-component="reset" tabindex="-1">
|
||||

|
||||
</button>
|
||||
</form>
|
||||
<div class="md-search__output">
|
||||
<div class="md-search__scrollwrap" data-md-scrollfix>
|
||||
<div class="md-search-result" data-md-component="result">
|
||||
<div class="md-search-result__meta">
|
||||
Type to start searching
|
||||
</div>
|
||||
<ol class="md-search-result__list"></ol>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<div class="md-header-nav__source">
|
||||
<a href="https://github.com/gravitl/netmaker/" title="Go to repository" class="md-source" data-md-source="github">
|
||||
|
||||
<div class="md-source__icon">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
|
||||
<use xlink:href="#__github" width="24" height="24"></use>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<div class="md-source__repository">
|
||||
Netmaker
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<script src="_static/javascripts/version_dropdown.js"></script>
|
||||
<script>
|
||||
var json_loc = ""versions.json"",
|
||||
target_loc = "../",
|
||||
text = "Versions";
|
||||
$( document ).ready( add_version_dropdown(json_loc, target_loc, text));
|
||||
</script>
|
||||
|
||||
|
||||
</div>
|
||||
</nav>
|
||||
</header>
|
||||
|
||||
|
||||
<div class="md-container">
|
||||
|
||||
|
||||
|
||||
<nav class="md-tabs" data-md-component="tabs">
|
||||
<div class="md-tabs__inner md-grid">
|
||||
<ul class="md-tabs__list">
|
||||
<li class="md-tabs__item"><a href="index.html" class="md-tabs__link">Netmaker 0.8.2 documentation</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
</nav>
|
||||
<main class="md-main">
|
||||
<div class="md-main__inner md-grid" data-md-component="container">
|
||||
|
||||
<div class="md-sidebar md-sidebar--primary" data-md-component="navigation">
|
||||
<div class="md-sidebar__scrollwrap">
|
||||
<div class="md-sidebar__inner">
|
||||
<nav class="md-nav md-nav--primary" data-md-level="0">
|
||||
<label class="md-nav__title md-nav__title--site" for="__drawer">
|
||||
<a href="index.html" title="Netmaker 0.8.2 documentation" class="md-nav__button md-logo">
|
||||
|
||||
<i class="md-icon"></i>
|
||||
|
||||
</a>
|
||||
<a href="index.html"
|
||||
title="Netmaker 0.8.2 documentation">Netmaker Docs</a>
|
||||
</label>
|
||||
<div class="md-nav__source">
|
||||
<a href="https://github.com/gravitl/netmaker/" title="Go to repository" class="md-source" data-md-source="github">
|
||||
|
||||
<div class="md-source__icon">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 24 24" width="28" height="28">
|
||||
<use xlink:href="#__github" width="24" height="24"></use>
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
<div class="md-source__repository">
|
||||
Netmaker
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="about.html" class="md-nav__link">About</a>
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="about.html#what-is-netmaker" class="md-nav__link">What is Netmaker?</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="about.html#how-does-netmaker-work" class="md-nav__link">How Does Netmaker Work?</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="about.html#use-cases-for-netmaker" class="md-nav__link">Use Cases for Netmaker</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="architecture.html" class="md-nav__link">Architecture</a>
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="architecture.html#core-concepts" class="md-nav__link">Core Concepts</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="architecture.html#components" class="md-nav__link">Components</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="architecture.html#technical-process" class="md-nav__link">Technical Process</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="architecture.html#compatible-systems-for-netclient" class="md-nav__link">Compatible Systems for Netclient</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="architecture.html#limitations" class="md-nav__link">Limitations</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<input class="md-toggle md-nav__toggle" data-md-toggle="toc" type="checkbox" id="__toc">
|
||||
<label class="md-nav__link md-nav__link--active" for="__toc"> Install </label>
|
||||
|
||||
<a href="#" class="md-nav__link md-nav__link--active">Install</a>
|
||||
|
||||
|
||||
<nav class="md-nav md-nav--secondary">
|
||||
<ul class="md-nav__list" data-md-scrollfix="">
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="quick-start.html" class="md-nav__link">Quick Install</a>
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="quick-start.html#introduction" class="md-nav__link">Introduction</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="quick-start.html#prerequisites" class="md-nav__link">0. Prerequisites</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="quick-start.html#prepare-dns" class="md-nav__link">1. Prepare DNS</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="quick-start.html#install-dependencies" class="md-nav__link">2. Install Dependencies</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="quick-start.html#open-firewall" class="md-nav__link">3. Open Firewall</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="quick-start.html#install-netmaker" class="md-nav__link">4. Install Netmaker</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="getting-started.html" class="md-nav__link">Getting Started</a>
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="getting-started.html#setup" class="md-nav__link">Setup</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="getting-started.html#deploy-nodes" class="md-nav__link">Deploy Nodes</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="getting-started.html#manage-nodes" class="md-nav__link">Manage Nodes</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="getting-started.html#uninstalling-the-netclient" class="md-nav__link">Uninstalling the netclient</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="getting-started.html#uninstalling-netmaker" class="md-nav__link">Uninstalling Netmaker</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="quick-start-nginx.html" class="md-nav__link">Install with Nginx (depreciated)</a>
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="quick-start-nginx.html#introduction" class="md-nav__link">0. Introduction</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="quick-start-nginx.html#prerequisites" class="md-nav__link">1. Prerequisites</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="quick-start-nginx.html#install-dependencies" class="md-nav__link">2. Install Dependencies</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="quick-start-nginx.html#prepare-vm" class="md-nav__link">3. Prepare VM</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="quick-start-nginx.html#install-netmaker" class="md-nav__link">4. Install Netmaker</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="server-installation.html" class="md-nav__link">Advanced Server Installation</a>
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="server-installation.html#system-compatibility" class="md-nav__link">System Compatibility</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="server-installation.html#server-configuration-reference" class="md-nav__link">Server Configuration Reference</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="server-installation.html#dns-mode-setup" class="md-nav__link">DNS Mode Setup</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="server-installation.html#docker-compose-install" class="md-nav__link">Docker Compose Install</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="server-installation.html#linux-install-without-docker" class="md-nav__link">Linux Install without Docker</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="server-installation.html#kubernetes-install" class="md-nav__link">Kubernetes Install</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="server-installation.html#nginx-reverse-proxy-setup-with-https" class="md-nav__link">Nginx Reverse Proxy Setup with https</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="server-installation.html#highly-available-installation" class="md-nav__link">Highly Available Installation</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="client-installation.html" class="md-nav__link">Client Installation</a>
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="client-installation.html#introduction-to-netclient" class="md-nav__link">Introduction to Netclient</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="client-installation.html#notes-on-windows" class="md-nav__link">Notes on Windows</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="client-installation.html#modes-and-system-compatibility" class="md-nav__link">Modes and System Compatibility</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="client-installation.html#prerequisites" class="md-nav__link">Prerequisites</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="client-installation.html#configuration" class="md-nav__link">Configuration</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="client-installation.html#installation" class="md-nav__link">Installation</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="client-installation.html#managing-netclient" class="md-nav__link">Managing Netclient</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="external-clients.html" class="md-nav__link">External Clients</a>
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="external-clients.html#introduction" class="md-nav__link">Introduction</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="external-clients.html#configuring-an-ingress-gateway" class="md-nav__link">Configuring an Ingress Gateway</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="external-clients.html#adding-clients-to-a-gateway" class="md-nav__link">Adding Clients to a Gateway</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="external-clients.html#configuring-dns-for-ext-clients-optional" class="md-nav__link">Configuring DNS for Ext Clients (OPTIONAL)</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="usage.html" class="md-nav__link">Using Netmaker</a>
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="usage.html#external-tutorials" class="md-nav__link">External Tutorials</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="api.html" class="md-nav__link">API Reference</a>
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="api.html#api-usage" class="md-nav__link">API Usage</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="api.html#authentication" class="md-nav__link">Authentication</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="api.html#format-of-calls-for-curl" class="md-nav__link">Format of Calls for Curl</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="api.html#api-documentation" class="md-nav__link">API Documentation</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="troubleshoot.html" class="md-nav__link">Troubleshooting</a>
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="troubleshoot.html#common-issues" class="md-nav__link">Common Issues</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="troubleshoot.html#server" class="md-nav__link">Server</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="troubleshoot.html#ui" class="md-nav__link">UI</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="troubleshoot.html#netclient" class="md-nav__link">Netclient</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="troubleshoot.html#coredns" class="md-nav__link">CoreDNS</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="support.html" class="md-nav__link">Support</a>
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="support.html#faq" class="md-nav__link">FAQ</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="support.html#contact" class="md-nav__link">Contact</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="conduct.html" class="md-nav__link">Code of Conduct</a>
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="conduct.html#our-pledge" class="md-nav__link">Our Pledge</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="conduct.html#our-standards" class="md-nav__link">Our Standards</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="conduct.html#our-responsibilities" class="md-nav__link">Our Responsibilities</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="conduct.html#scope" class="md-nav__link">Scope</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="conduct.html#enforcement" class="md-nav__link">Enforcement</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="conduct.html#attribution" class="md-nav__link">Attribution</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="license.html" class="md-nav__link">License</a>
|
||||
|
||||
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="md-sidebar md-sidebar--secondary" data-md-component="toc">
|
||||
<div class="md-sidebar__scrollwrap">
|
||||
<div class="md-sidebar__inner">
|
||||
|
||||
<nav class="md-nav md-nav--secondary">
|
||||
<ul class="md-nav__list" data-md-scrollfix="">
|
||||
</ul>
|
||||
</nav>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="md-content">
|
||||
<article class="md-content__inner md-typeset" role="main">
|
||||
|
||||
|
||||
<h1 id="install--page-root">Install<a class="headerlink" href="#install--page-root" title="Permalink to this headline">¶</a></h1>
|
||||
<p>Choose the install method that makes sense for you.</p>
|
||||
<p><strong>For most users, we recommend the</strong> <a class="reference internal" href="quick-start.html"><span class="doc">Quick Install</span></a> <strong>guide.</strong></p>
|
||||
<p><a class="reference external" href="https://github.com/gravitl/netmaker/tree/master#get-started-in-5-minutes">Trial, PoC, Testing, and Experimenting</a></p>
|
||||
<p><a class="reference internal" href="quick-start.html"><span class="doc">Quick Install: for general small-to-medium use cases</span></a></p>
|
||||
<p><a class="reference internal" href="server-installation.html#kubeinstall"><span class="std std-ref">Kubernetes Installation</span></a></p>
|
||||
<p><a class="reference internal" href="server-installation.html#nodocker"><span class="std std-ref">Non-Docker (from binary) Install</span></a></p>
|
||||
<p><a class="reference internal" href="server-installation.html#hainstall"><span class="std std-ref">Highly Available Installation</span></a></p>
|
||||
<p><a class="reference internal" href="server-installation.html"><span class="doc">Advanced Install Resources</span></a></p>
|
||||
|
||||
|
||||
|
||||
</article>
|
||||
</div>
|
||||
</div>
|
||||
</main>
|
||||
</div>
|
||||
<footer class="md-footer">
|
||||
<div class="md-footer-nav">
|
||||
<nav class="md-footer-nav__inner md-grid">
|
||||
|
||||
<a href="architecture.html" title="Architecture"
|
||||
class="md-flex md-footer-nav__link md-footer-nav__link--prev"
|
||||
rel="prev">
|
||||
<div class="md-flex__cell md-flex__cell--shrink">
|
||||
<i class="md-icon md-icon--arrow-back md-footer-nav__button"></i>
|
||||
</div>
|
||||
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title">
|
||||
<span class="md-flex__ellipsis">
|
||||
<span
|
||||
class="md-footer-nav__direction"> Previous </span> Architecture </span>
|
||||
</div>
|
||||
</a>
|
||||
|
||||
|
||||
<a href="quick-start.html" title="Quick Install"
|
||||
class="md-flex md-footer-nav__link md-footer-nav__link--next"
|
||||
rel="next">
|
||||
<div class="md-flex__cell md-flex__cell--stretch md-footer-nav__title"><span
|
||||
class="md-flex__ellipsis"> <span
|
||||
class="md-footer-nav__direction"> Next </span> Quick Install </span>
|
||||
</div>
|
||||
<div class="md-flex__cell md-flex__cell--shrink"><i
|
||||
class="md-icon md-icon--arrow-forward md-footer-nav__button"></i>
|
||||
</div>
|
||||
|
||||
</a>
|
||||
|
||||
</nav>
|
||||
</div>
|
||||
<div class="md-footer-meta md-typeset">
|
||||
<div class="md-footer-meta__inner md-grid">
|
||||
<div class="md-footer-copyright">
|
||||
<div class="md-footer-copyright__highlight">
|
||||
© Copyright 2021, Alex Feiszli.
|
||||
|
||||
</div>
|
||||
Created using
|
||||
<a href="http://www.sphinx-doc.org/">Sphinx</a> 4.0.2.
|
||||
and
|
||||
<a href="https://github.com/bashtage/sphinx-material/">Material for
|
||||
Sphinx</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
<script src="_static/javascripts/application.js"></script>
|
||||
<script>app.initialize({version: "1.0.4", url: {base: ".."}})</script>
|
||||
</body>
|
||||
</html>
|
BIN
docs/_build/html/objects.inv
vendored
BIN
docs/_build/html/objects.inv
vendored
Binary file not shown.
2
docs/_build/html/quick-start-nginx.html
vendored
2
docs/_build/html/quick-start-nginx.html
vendored
|
@ -973,7 +973,7 @@
|
|||
|
||||
<h3 id="start-netmaker">Start Netmaker<a class="headerlink" href="#start-netmaker" title="Permalink to this headline">¶</a></h3>
|
||||
<p><code class="docutils literal notranslate"><span class="pre">sudo</span> <span class="pre">docker-compose</span> <span class="pre">-f</span> <span class="pre">docker-compose.yml</span> <span class="pre">up</span> <span class="pre">-d</span></code></p>
|
||||
<p>navigate to dashboard.<your base domain> to see your nginx instance.</p>
|
||||
<p>navigate to dashboard.<your base domain> to log into the UI.</p>
|
||||
<p>To troubleshoot issues, start with:</p>
|
||||
<p><code class="docutils literal notranslate"><span class="pre">docker</span> <span class="pre">logs</span> <span class="pre">netmaker</span></code></p>
|
||||
<p>Or check out the <a class="reference internal" href="troubleshoot.html"><span class="doc">troubleshoooting docs</span></a>.</p>
|
||||
|
|
4
docs/_build/html/quick-start.html
vendored
4
docs/_build/html/quick-start.html
vendored
|
@ -852,7 +852,7 @@
|
|||
<h2 id="install-dependencies">2. Install Dependencies<a class="headerlink" href="#install-dependencies" title="Permalink to this headline">¶</a></h2>
|
||||
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">ssh</span> <span class="n">root</span><span class="nd">@your</span><span class="o">-</span><span class="n">host</span>
|
||||
<span class="n">sudo</span> <span class="n">apt</span><span class="o">-</span><span class="n">get</span> <span class="n">update</span>
|
||||
<span class="n">sudo</span> <span class="n">apt</span><span class="o">-</span><span class="n">get</span> <span class="o">-</span><span class="n">y</span> <span class="n">docker</span> <span class="n">docker</span><span class="o">-</span><span class="n">compose</span> <span class="n">wireguard</span>
|
||||
<span class="n">sudo</span> <span class="n">apt</span><span class="o">-</span><span class="n">get</span> <span class="n">install</span> <span class="o">-</span><span class="n">y</span> <span class="n">docker</span><span class="o">.</span><span class="n">io</span> <span class="n">docker</span><span class="o">-</span><span class="n">compose</span> <span class="n">wireguard</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>At this point you should have all the system dependencies you need.</p>
|
||||
|
@ -912,7 +912,7 @@
|
|||
|
||||
<h3 id="start-netmaker">Start Netmaker<a class="headerlink" href="#start-netmaker" title="Permalink to this headline">¶</a></h3>
|
||||
<p><code class="docutils literal notranslate"><span class="pre">sudo</span> <span class="pre">docker-compose</span> <span class="pre">up</span> <span class="pre">-d</span></code></p>
|
||||
<p>navigate to dashboard.<your base domain> to see your nginx instance.</p>
|
||||
<p>navigate to dashboard.<your base domain> to begin using Netmaker.</p>
|
||||
<p>To troubleshoot issues, start with:</p>
|
||||
<p><code class="docutils literal notranslate"><span class="pre">docker</span> <span class="pre">logs</span> <span class="pre">netmaker</span></code></p>
|
||||
<p>Or check out the <a class="reference internal" href="troubleshoot.html"><span class="doc">troubleshoooting docs</span></a>.</p>
|
||||
|
|
14
docs/_build/html/search.html
vendored
14
docs/_build/html/search.html
vendored
|
@ -279,6 +279,13 @@
|
|||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="install.html" class="md-nav__link">Install</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
@ -466,6 +473,13 @@
|
|||
<a href="server-installation.html#nginx-reverse-proxy-setup-with-https" class="md-nav__link">Nginx Reverse Proxy Setup with https</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="server-installation.html#highly-available-installation" class="md-nav__link">Highly Available Installation</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
|
|
2
docs/_build/html/searchindex.js
vendored
2
docs/_build/html/searchindex.js
vendored
File diff suppressed because one or more lines are too long
83
docs/_build/html/server-installation.html
vendored
83
docs/_build/html/server-installation.html
vendored
|
@ -466,6 +466,18 @@
|
|||
</nav>
|
||||
</li>
|
||||
<li class="md-nav__item"><a href="#nginx-reverse-proxy-setup-with-https" class="md-nav__link">Nginx Reverse Proxy Setup with https</a>
|
||||
</li>
|
||||
<li class="md-nav__item"><a href="#highly-available-installation" class="md-nav__link">Highly Available Installation</a><nav class="md-nav">
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item"><a href="#load-balancer-setup" class="md-nav__link">1. Load Balancer Setup</a>
|
||||
</li>
|
||||
<li class="md-nav__item"><a href="#id1" class="md-nav__link">2. RQLite Setup</a>
|
||||
</li>
|
||||
<li class="md-nav__item"><a href="#netmaker-setup" class="md-nav__link">3. Netmaker Setup</a>
|
||||
</li>
|
||||
<li class="md-nav__item"><a href="#other-considerations" class="md-nav__link">4. Other Considerations</a>
|
||||
</li></ul>
|
||||
</nav>
|
||||
</li></ul>
|
||||
</nav>
|
||||
</li>
|
||||
|
@ -520,6 +532,13 @@
|
|||
<a href="#nginx-reverse-proxy-setup-with-https" class="md-nav__link">Nginx Reverse Proxy Setup with https</a>
|
||||
|
||||
|
||||
</li>
|
||||
<li class="md-nav__item">
|
||||
|
||||
|
||||
<a href="#highly-available-installation" class="md-nav__link">Highly Available Installation</a>
|
||||
|
||||
|
||||
</li></ul>
|
||||
|
||||
</li>
|
||||
|
@ -841,6 +860,18 @@
|
|||
</nav>
|
||||
</li>
|
||||
<li class="md-nav__item"><a href="#nginx-reverse-proxy-setup-with-https" class="md-nav__link">Nginx Reverse Proxy Setup with https</a>
|
||||
</li>
|
||||
<li class="md-nav__item"><a href="#highly-available-installation" class="md-nav__link">Highly Available Installation</a><nav class="md-nav">
|
||||
<ul class="md-nav__list">
|
||||
<li class="md-nav__item"><a href="#load-balancer-setup" class="md-nav__link">1. Load Balancer Setup</a>
|
||||
</li>
|
||||
<li class="md-nav__item"><a href="#id1" class="md-nav__link">2. RQLite Setup</a>
|
||||
</li>
|
||||
<li class="md-nav__item"><a href="#netmaker-setup" class="md-nav__link">3. Netmaker Setup</a>
|
||||
</li>
|
||||
<li class="md-nav__item"><a href="#other-considerations" class="md-nav__link">4. Other Considerations</a>
|
||||
</li></ul>
|
||||
</nav>
|
||||
</li></ul>
|
||||
</nav>
|
||||
</li>
|
||||
|
@ -1072,7 +1103,7 @@ docker-compose up -d`
|
|||
|
||||
|
||||
|
||||
<h2 id="linux-install-without-docker">Linux Install without Docker<a class="headerlink" href="#linux-install-without-docker" title="Permalink to this headline">¶</a></h2>
|
||||
<span id="nodocker"></span><h2 id="linux-install-without-docker">Linux Install without Docker<a class="headerlink" href="#linux-install-without-docker" title="Permalink to this headline">¶</a></h2>
|
||||
<p>Most systems support Docker, but some do not. In such environments, there are many options for installing Netmaker. Netmaker is available as a binary file, and there is a zip file of the Netmaker UI static HTML on GitHub. Beyond the UI and Server, you need to install MongoDB and CoreDNS (optional).</p>
|
||||
<p>To start, we recommend following the Nginx instructions in the <a class="reference internal" href="quick-start.html"><span class="doc">Quick Install</span></a> guide to enable SSL for your environment.</p>
|
||||
<p>Once this is enabled and configured for a domain, you can continue with the below. The recommended server runs Ubuntu 20.04.</p>
|
||||
|
@ -1118,7 +1149,7 @@ docker-compose up -d`
|
|||
|
||||
|
||||
|
||||
<h2 id="kubernetes-install">Kubernetes Install<a class="headerlink" href="#kubernetes-install" title="Permalink to this headline">¶</a></h2>
|
||||
<span id="kubeinstall"></span><h2 id="kubernetes-install">Kubernetes Install<a class="headerlink" href="#kubernetes-install" title="Permalink to this headline">¶</a></h2>
|
||||
|
||||
<h3 id="server-install">Server Install<a class="headerlink" href="#server-install" title="Permalink to this headline">¶</a></h3>
|
||||
<p>This template assumes your cluster uses Nginx for ingress with valid wildcard certificates. If using an ingress controller other than Nginx (ex: Traefik), you will need to manually modify the Ingress entries in this template to match your environment.</p>
|
||||
|
@ -1206,6 +1237,54 @@ kubectl apply -f netclient-template.yaml
|
|||
</div>
|
||||
|
||||
|
||||
<span id="hainstall"></span><h2 id="highly-available-installation">Highly Available Installation<a class="headerlink" href="#highly-available-installation" title="Permalink to this headline">¶</a></h2>
|
||||
<p>For an enterprise Netmaker installation, you will need a server that is highly available, to ensure redundant WireGuard routing when any server goes down. To do this, you will need:</p>
|
||||
<ol class="arabic simple">
|
||||
<li><p>A load balancer</p></li>
|
||||
<li><p>3+ Netmaker server instances</p></li>
|
||||
<li><p>rqlite as the backing database</p></li>
|
||||
</ol>
|
||||
<p>These documents outline general HA installation guidelines. Netmaker is highly customizable to meet a wide range of enterprise environments. If you would like support with an enterprise-grade Netmaker installation, you can <a class="reference external" href="https://gravitl.com/book">schedule a consultation here</a> .</p>
|
||||
<p>The main consideration here is how to configure rqlite. Most other settings and procedures match the standardized way of making applications HA: Load balancing to multiple instances, and sharing a DB. In our case, the DB (rqlite) is distributed, making HA data more easily achievable.</p>
|
||||
|
||||
<h3 id="load-balancer-setup">1. Load Balancer Setup<a class="headerlink" href="#load-balancer-setup" title="Permalink to this headline">¶</a></h3>
|
||||
<p>Your load balancer of choice will send requests to the Netmaker servers. Setup is similar to the various guides we have created for Nginx, Caddy, and Traefik. SSL certificates must also be configured and handled by the LB.</p>
|
||||
|
||||
|
||||
<h3 id="id1">2. RQLite Setup<a class="headerlink" href="#id1" title="Permalink to this headline">¶</a></h3>
|
||||
<p>RQLite is the included distributed datastore for an HA Netmaker installation. If you have a different corporate database you wish to integrate, Netmaker is easily extended to other DB’s. If this is a requirement, please contact us.</p>
|
||||
<p>Assuming you use Rqlite, you must run it on each Netmaker server VM, or alongside that VM as a container. Setup a config.json for database credentials (password supports BCRYPT HASHING) and mount in working directory of rqlite and specify with <cite>-auth config.json</cite> :</p>
|
||||
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="p">[{</span>
|
||||
<span class="s2">"username"</span><span class="p">:</span> <span class="s2">"netmaker"</span><span class="p">,</span>
|
||||
<span class="s2">"password"</span><span class="p">:</span> <span class="s2">"<YOUR_DB_PASSWORD>"</span><span class="p">,</span>
|
||||
<span class="s2">"perms"</span><span class="p">:</span> <span class="p">[</span><span class="s2">"all"</span><span class="p">]</span>
|
||||
<span class="p">}]</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>Once your servers are set up with rqlite, the first instance must be started normally, and then additional nodes must be added with the “join” command. For instance, here is the first server node:</p>
|
||||
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">sudo</span> <span class="n">docker</span> <span class="n">run</span> <span class="o">-</span><span class="n">d</span> <span class="o">-</span><span class="n">p</span> <span class="mi">4001</span><span class="p">:</span><span class="mi">4001</span> <span class="o">-</span><span class="n">p</span> <span class="mi">4002</span><span class="p">:</span><span class="mi">4002</span> <span class="n">rqlite</span><span class="o">/</span><span class="n">rqlite</span> <span class="o">-</span><span class="n">node</span><span class="o">-</span><span class="nb">id</span> <span class="mi">1</span> <span class="o">-</span><span class="n">http</span><span class="o">-</span><span class="n">addr</span> <span class="mf">0.0</span><span class="o">.</span><span class="mf">0.0</span><span class="p">:</span><span class="mi">4001</span> <span class="o">-</span><span class="n">raft</span><span class="o">-</span><span class="n">addr</span> <span class="mf">0.0</span><span class="o">.</span><span class="mf">0.0</span><span class="p">:</span><span class="mi">4002</span> <span class="o">-</span><span class="n">http</span><span class="o">-</span><span class="n">adv</span><span class="o">-</span><span class="n">addr</span> <span class="mf">1.2</span><span class="o">.</span><span class="mf">3.4</span><span class="p">:</span><span class="mi">4001</span> <span class="o">-</span><span class="n">raft</span><span class="o">-</span><span class="n">adv</span><span class="o">-</span><span class="n">addr</span> <span class="mf">1.2</span><span class="o">.</span><span class="mf">3.4</span><span class="p">:</span><span class="mi">4002</span> <span class="o">-</span><span class="n">auth</span> <span class="n">config</span><span class="o">.</span><span class="n">json</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<p>And here is a joining node:</p>
|
||||
<div class="highlight-default notranslate"><div class="highlight"><pre><span></span><span class="n">sudo</span> <span class="n">docker</span> <span class="n">run</span> <span class="o">-</span><span class="n">d</span> <span class="o">-</span><span class="n">p</span> <span class="mi">4001</span><span class="p">:</span><span class="mi">4001</span> <span class="o">-</span><span class="n">p</span> <span class="mi">4002</span><span class="p">:</span><span class="mi">4002</span> <span class="n">rqlite</span><span class="o">/</span><span class="n">rqlite</span> <span class="o">-</span><span class="n">node</span><span class="o">-</span><span class="nb">id</span> <span class="mi">2</span> <span class="o">-</span><span class="n">http</span><span class="o">-</span><span class="n">addr</span> <span class="mf">0.0</span><span class="o">.</span><span class="mf">0.0</span><span class="p">:</span><span class="mi">4001</span> <span class="o">-</span><span class="n">raft</span><span class="o">-</span><span class="n">addr</span> <span class="mf">0.0</span><span class="o">.</span><span class="mf">0.0</span><span class="p">:</span><span class="mi">4002</span> <span class="o">-</span><span class="n">http</span><span class="o">-</span><span class="n">adv</span><span class="o">-</span><span class="n">addr</span> <span class="mf">2.3</span><span class="o">.</span><span class="mf">4.5</span><span class="p">:</span><span class="mi">4001</span> <span class="o">-</span><span class="n">raft</span><span class="o">-</span><span class="n">adv</span><span class="o">-</span><span class="n">addr</span> <span class="mf">2.3</span><span class="o">.</span><span class="mf">4.5</span><span class="p">:</span><span class="mi">4002</span> <span class="o">-</span><span class="n">join</span> <span class="n">https</span><span class="p">:</span><span class="o">//</span><span class="n">netmaker</span><span class="p">:</span><span class="o"><</span><span class="n">YOUR_DB_PASSWORD</span><span class="o">></span><span class="nd">@1</span><span class="o">.</span><span class="mf">2.3</span><span class="o">.</span><span class="mi">4</span><span class="p">:</span><span class="mi">4001</span>
|
||||
</pre></div>
|
||||
</div>
|
||||
<ul class="simple">
|
||||
<li><p>reference for rqlite setup: <a class="reference external" href="https://github.com/rqlite/rqlite/blob/master/DOC/CLUSTER_MGMT.md#creating-a-cluster">https://github.com/rqlite/rqlite/blob/master/DOC/CLUSTER_MGMT.md#creating-a-cluster</a></p></li>
|
||||
<li><p>reference for rqlite security: <a class="reference external" href="https://github.com/rqlite/rqlite/blob/master/DOC/SECURITY.md">https://github.com/rqlite/rqlite/blob/master/DOC/SECURITY.md</a></p></li>
|
||||
</ul>
|
||||
<p>Once rqlite instances have been configured, the Netmaker servers can be deployed.</p>
|
||||
|
||||
|
||||
<h3 id="netmaker-setup">3. Netmaker Setup<a class="headerlink" href="#netmaker-setup" title="Permalink to this headline">¶</a></h3>
|
||||
<p>Netmaker will be started on each node with default settings, except with DATABASE=rqlite and SQL_CONN set appropriately to reach the local rqlite instance. Rqlite will maintain consistency with each Netmaker backend.</p>
|
||||
|
||||
|
||||
<h3 id="other-considerations">4. Other Considerations<a class="headerlink" href="#other-considerations" title="Permalink to this headline">¶</a></h3>
|
||||
<p>This is enough to get a functioning HA installation of Netmaker. However, you may also want to make the Netmaker UI or the CoreDNS server HA as well. The Netmaker UI can simply be added to the same servers and load balanced appropriately. For some load balancers, you may be able to do this with CoreDNS as well.</p>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</article>
|
||||
|
|
|
@ -22,7 +22,7 @@ copyright = '2021, Alex Feiszli'
|
|||
author = 'Alex Feiszli'
|
||||
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = '0.8.2'
|
||||
release = '0.8.3'
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
|
|
@ -48,6 +48,16 @@ A technical overview of Netmaker, including design decisions and limitations.
|
|||
|
||||
architecture
|
||||
|
||||
Install
|
||||
------------------------------------
|
||||
|
||||
Choose the right install method for you.
|
||||
|
||||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
install
|
||||
|
||||
Quick Start
|
||||
---------------
|
||||
|
||||
|
|
20
docs/install.rst
Normal file
20
docs/install.rst
Normal file
|
@ -0,0 +1,20 @@
|
|||
=========
|
||||
Install
|
||||
=========
|
||||
|
||||
Choose the install method that makes sense for you.
|
||||
|
||||
**For most users, we recommend the** :doc:`Quick Install<./quick-start>` **guide.**
|
||||
|
||||
`Trial, PoC, Testing, and Experimenting <https://github.com/gravitl/netmaker/tree/master#get-started-in-5-minutes>`_
|
||||
|
||||
:doc:`Quick Install: for general small-to-medium use cases <./quick-start>`
|
||||
|
||||
:ref:`Kubernetes Installation <KubeInstall>`
|
||||
|
||||
:ref:`Non-Docker (from binary) Install <NoDocker>`
|
||||
|
||||
:ref:`Highly Available Installation <HAInstall>`
|
||||
|
||||
:doc:`Advanced Install Resources <./server-installation>`
|
||||
|
|
@ -62,7 +62,7 @@ Caddy will create 3 subdomains with this wildcard, EX:
|
|||
|
||||
ssh root@your-host
|
||||
sudo apt-get update
|
||||
sudo apt-get -y docker docker-compose wireguard
|
||||
sudo apt-get install -y docker.io docker-compose wireguard
|
||||
|
||||
At this point you should have all the system dependencies you need.
|
||||
|
||||
|
|
|
@ -187,6 +187,8 @@ To run without DNS, follow the :doc:`Quick Install <./quick-start>` guide, omitt
|
|||
This template is equivalent but omits CoreDNS.
|
||||
|
||||
|
||||
.. _NoDocker:
|
||||
|
||||
Linux Install without Docker
|
||||
=============================
|
||||
|
||||
|
@ -234,6 +236,8 @@ The following uses Nginx as an http server. You may alternatively use Apache or
|
|||
CoreDNS Setup
|
||||
----------------
|
||||
|
||||
.. _KubeInstall:
|
||||
|
||||
Kubernetes Install
|
||||
=======================
|
||||
|
||||
|
@ -276,7 +280,7 @@ The following instructions assume you have Netmaker running and a network you wo
|
|||
For a more detailed guide on integrating Netmaker with MicroK8s, `check out this guide <https://itnext.io/how-to-deploy-a-cross-cloud-kubernetes-cluster-with-built-in-disaster-recovery-bbce27fcc9d7>`_.
|
||||
|
||||
Nginx Reverse Proxy Setup with https
|
||||
====================================
|
||||
======================================
|
||||
|
||||
The `Swag Proxy <https://github.com/linuxserver/docker-swag>`_ makes it easy to generate a valid ssl certificate for the config bellow. Here is the `documentation <https://docs.linuxserver.io/general/swag>`_ for the installation.
|
||||
|
||||
|
@ -337,3 +341,72 @@ The following file configures Netmaker as a subdomain. This config is an adaptio
|
|||
proxy_pass_request_headers on;
|
||||
}
|
||||
}
|
||||
|
||||
.. _HAInstall:
|
||||
|
||||
Highly Available Installation
|
||||
===============================
|
||||
|
||||
For an enterprise Netmaker installation, you will need a server that is highly available, to ensure redundant WireGuard routing when any server goes down. To do this, you will need:
|
||||
|
||||
1. A load balancer
|
||||
2. 3+ Netmaker server instances
|
||||
3. rqlite as the backing database
|
||||
|
||||
These documents outline general HA installation guidelines. Netmaker is highly customizable to meet a wide range of enterprise environments. If you would like support with an enterprise-grade Netmaker installation, you can `schedule a consultation here <https://gravitl.com/book>`_ .
|
||||
|
||||
The main consideration here is how to configure rqlite. Most other settings and procedures match the standardized way of making applications HA: Load balancing to multiple instances, and sharing a DB. In our case, the DB (rqlite) is distributed, making HA data more easily achievable.
|
||||
|
||||
1. Load Balancer Setup
|
||||
------------------------
|
||||
|
||||
Your load balancer of choice will send requests to the Netmaker servers. Setup is similar to the various guides we have created for Nginx, Caddy, and Traefik. SSL certificates must also be configured and handled by the LB.
|
||||
|
||||
2. RQLite Setup
|
||||
------------------
|
||||
|
||||
RQLite is the included distributed datastore for an HA Netmaker installation. If you have a different corporate database you wish to integrate, Netmaker is easily extended to other DB's. If this is a requirement, please contact us.
|
||||
|
||||
Assuming you use Rqlite, you must run it on each Netmaker server VM, or alongside that VM as a container. Setup a config.json for database credentials (password supports BCRYPT HASHING) and mount in working directory of rqlite and specify with `-auth config.json` :
|
||||
|
||||
.. code-block::
|
||||
|
||||
[{
|
||||
"username": "netmaker",
|
||||
"password": "<YOUR_DB_PASSWORD>",
|
||||
"perms": ["all"]
|
||||
}]
|
||||
|
||||
|
||||
Once your servers are set up with rqlite, the first instance must be started normally, and then additional nodes must be added with the "join" command. For instance, here is the first server node:
|
||||
|
||||
.. code-block::
|
||||
|
||||
sudo docker run -d -p 4001:4001 -p 4002:4002 rqlite/rqlite -node-id 1 -http-addr 0.0.0.0:4001 -raft-addr 0.0.0.0:4002 -http-adv-addr 1.2.3.4:4001 -raft-adv-addr 1.2.3.4:4002 -auth config.json
|
||||
|
||||
And here is a joining node:
|
||||
|
||||
.. code-block::
|
||||
|
||||
sudo docker run -d -p 4001:4001 -p 4002:4002 rqlite/rqlite -node-id 2 -http-addr 0.0.0.0:4001 -raft-addr 0.0.0.0:4002 -http-adv-addr 2.3.4.5:4001 -raft-adv-addr 2.3.4.5:4002 -join https://netmaker:<YOUR_DB_PASSWORD>@1.2.3.4:4001
|
||||
|
||||
- reference for rqlite setup: https://github.com/rqlite/rqlite/blob/master/DOC/CLUSTER_MGMT.md#creating-a-cluster
|
||||
- reference for rqlite security: https://github.com/rqlite/rqlite/blob/master/DOC/SECURITY.md
|
||||
|
||||
Once rqlite instances have been configured, the Netmaker servers can be deployed.
|
||||
|
||||
3. Netmaker Setup
|
||||
------------------
|
||||
|
||||
Netmaker will be started on each node with default settings, except with DATABASE=rqlite and SQL_CONN set appropriately to reach the local rqlite instance. Rqlite will maintain consistency with each Netmaker backend.
|
||||
|
||||
4. Other Considerations
|
||||
------------------------
|
||||
|
||||
This is enough to get a functioning HA installation of Netmaker. However, you may also want to make the Netmaker UI or the CoreDNS server HA as well. The Netmaker UI can simply be added to the same servers and load balanced appropriately. For some load balancers, you may be able to do this with CoreDNS as well.
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
167
old-docs/API.md
167
old-docs/API.md
|
@ -1,167 +0,0 @@
|
|||
# API Reference Doc
|
||||
|
||||
## GENERAL
|
||||
|
||||
Most actions that can be performed via API can be performed via UI. We recommend managing your networks using our official netmaker-ui project. That said, Netmaker is API based, and all functions can also be achieved via API calls. If you feel the need to work with Netmaker via API, we've provided some documentation below to help guide you.
|
||||
|
||||
#### Authentication
|
||||
In general, API calls must be authenticated via a header of the format `-H "Authorization: Bearer <YOUR_SECRET_KEY>"` There are two methods of obtaining YOUR_SECRET_KEY:
|
||||
1. Using the masterkey. By default, this value is "secret key," but you should change this on your instance and keep it secure. This value can be set via env var at startup or in a config file (config/environments/< env >.yaml). See the [general usage](./USAGE.md) documentation for more details.
|
||||
2. Using a JWT recieved for a node. This can be retrieved by calling the `/api/nodes/<network>/authenticate` endpoint, as documented below.
|
||||
|
||||
#### Format
|
||||
In general, requests will take the format of `curl -H "Authorization: Bearer <YOUR_SECRET_KEY>" -H 'Content-Type: application/json' localhost:8081/api/path/to/endpoint`
|
||||
|
||||
## NETWORKS
|
||||
|
||||
**Get All Networks:** `/api/networks`, `GET`
|
||||
|
||||
**Create Network:** `/api/network`, `POST`
|
||||
|
||||
**Get Network:** `/api/networks/{network id}`, `GET`
|
||||
|
||||
**Update Network:** `/api/networks/{network id}`, `PUT`
|
||||
|
||||
**Delete Network:** `/api/networks/{network id}`, `DELETE`
|
||||
|
||||
**Cycle PublicKeys on all Nodes:** `/api/networks/{network id}/keyupdate`, `POST`
|
||||
|
||||
|
||||
### Network API Call Examples
|
||||
|
||||
|
||||
**Get All Networks:** `curl -H "Authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/networks | jq`
|
||||
|
||||
**Create Network:** `curl -d '{"addressrange":"10.70.0.0/16","netid":"skynet"}' -H "Authorization: Bearer YOUR_SECRET_KEY" -H 'Content-Type: application/json' localhost:8081/api/networks`
|
||||
|
||||
**Get Network:** `curl -H "Authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/networks/skynet | jq`
|
||||
|
||||
**Update Network:** `curl -X PUT -d '{"displayname":"my-house"}' -H "Authorization: Bearer YOUR_SECRET_KEY" -H 'Content-Type: application/json' localhost:8081/api/networks/skynet`
|
||||
|
||||
**Delete Network:** `curl -X DELETE -H "Authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/networks/skynet`
|
||||
|
||||
**Cycle PublicKeys on all Nodes:** `curl -X POST -H "Authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/networks/skynet/keyupdate`
|
||||
|
||||
## ACCESS KEYS
|
||||
|
||||
**Get All Keys:** `/api/networks/{network id}/keys`, `GET`
|
||||
|
||||
**Create Key:** `/api/networks/{network id}/keys`, `GET`
|
||||
|
||||
**Delete Key:** `/api/networks/{network id}/keys/{keyname}`, `DELETE`
|
||||
|
||||
|
||||
### Access Key API Call Examples
|
||||
|
||||
|
||||
**Get All Keys:** `curl -H "Authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/networks/skynet/keys | jq`
|
||||
|
||||
**Create Key:** `curl -d '{"uses":10,"name":"mykey"}' -H "Authorization: Bearer YOUR_SECRET_KEY" -H 'Content-Type: application/json' localhost:8081/api/networks/skynet/keys`
|
||||
|
||||
**Delete Key:** `curl -X DELETE -H "Authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/networks/skynet/keys/mykey`
|
||||
|
||||
|
||||
## NODES (COMPUTERS)
|
||||
|
||||
|
||||
**Get All Nodes:** `/api/nodes`, `GET`
|
||||
|
||||
**Get Network Nodes:** `/api/nodes/{network id}`, `GET`
|
||||
|
||||
**Create Node:** `/api/nodes/{network id}`, `POST`
|
||||
|
||||
**Get Node:** `/api/nodes/{network id}/{macaddress}`, `GET`
|
||||
|
||||
**Update Node:** `/api/nodes/{network id}/{macaddress}`, `PUT`
|
||||
|
||||
**Delete Node:** `/api/nodes/{network id}/{macaddress}`, `DELETE`
|
||||
|
||||
**Check In Node:** `/api/nodes/{network id}/{macaddress}/checkin`, `POST`
|
||||
|
||||
**Create a Gateway:** `/api/nodes/{network id}/{macaddress}/creategateway`, `POST`
|
||||
|
||||
**Delete a Gateway:** `/api/nodes/{network id}/{macaddress}/deletegateway`, `DELETE`
|
||||
|
||||
**Uncordon (Approve) a Pending Node:** `/api/nodes/{network id}/{macaddress}/uncordon`, `POST`
|
||||
|
||||
**Get Last Modified Date (Last Modified Node in Network):** `/api/nodes/adm/{network id}/lastmodified`, `GET`
|
||||
|
||||
**Authenticate:** `/api/nodes/adm/{network id}/authenticate`, `POST`
|
||||
|
||||
|
||||
### Example Node API Calls
|
||||
|
||||
|
||||
**Get All Nodes:**`curl -H "Authorization: Bearer YOUR_SECRET_KEY" http://localhost:8081/api/nodes | jq`
|
||||
|
||||
**Get Network Nodes:** `curl -H "Authorization: Bearer YOUR_SECRET_KEY" http://localhost:8081/api/nodes/skynet | jq`
|
||||
|
||||
**Create Node:** `curl -d '{ "endpoint": 100.200.100.200, "publickey": aorijqalrik3ajflaqrdajhkr,"macaddress": "8c:90:b5:06:f1:d9","password": "reallysecret","localaddress": "172.16.16.1","accesskey": "aA3bVG0rnItIRXDx","listenport": 6400}' -H 'Content-Type: application/json' -H "authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/nodes/skynet`
|
||||
|
||||
**Get Node:** `curl -H "Authorization: Bearer YOUR_SECRET_KEY" http://localhost:8081/api/nodes/skynet/{macaddress} | jq`
|
||||
|
||||
**Update Node:** `curl -X PUT -d '{"name":"laptop1"}' -H 'Content-Type: application/json' -H "authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/nodes/skynet/8c:90:b5:06:f1:d9`
|
||||
|
||||
**Delete Node:** `curl -X DELETE -H "authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/skynet/nodes/8c:90:b5:06:f1:d9`
|
||||
|
||||
**Create a Gateway:** `curl -d '{ "rangestring": "172.31.0.0/16", "interface": "eth0"}' -H 'Content-Type: application/json' -H "authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/nodes/skynet/8c:90:b5:06:f1:d9/creategateway`
|
||||
|
||||
**Delete a Gateway:** `curl -X DELETE -H "authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/nodes/skynet/8c:90:b5:06:f1:d9/deletegateway`
|
||||
|
||||
**Approve a Pending Node:** `curl -X POST -H "authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/nodes/skynet/8c:90:b5:06:f1:d9/approve`
|
||||
|
||||
**Get Last Modified Date (Last Modified Node in Network):** `curl -H "authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/nodes/adm/skynet/lastmodified`
|
||||
|
||||
**Authenticate:** `curl -d '{"macaddress": "8c:90:b5:06:f1:d9", "password": "YOUR_PASSWORD"}' -H 'Content-Type: application/json' localhost:8081/api/nodes/adm/skynet/authenticate`
|
||||
|
||||
|
||||
## USERS
|
||||
|
||||
|
||||
**Note:** Only able to create Admin user at this time. The "user" is only used by the [user interface](https://github.com/gravitl/netmaker-ui) to authenticate the single admin user.
|
||||
|
||||
**Get User:** `/api/users/{username}`, `GET`
|
||||
|
||||
**Update User:** `/api/users/{username}`, `PUT`
|
||||
|
||||
**Delete User:** `/api/users/{username}`, `DELETE`
|
||||
|
||||
**Check for Admin User:** `/api/users/adm/hasadmin`, `GET`
|
||||
|
||||
**Create Admin User:** `/api/users/adm/createadmin`, `POST`
|
||||
|
||||
**Authenticate:** `/api/users/adm/authenticate`, `POST`
|
||||
|
||||
|
||||
### Example User API Calls
|
||||
|
||||
|
||||
**Get User:**`curl -H "Authorization: Bearer YOUR_SECRET_KEY" http://localhost:8081/api/users/{username} | jq`
|
||||
|
||||
**Update User:** `curl -X PUT -d '{"password":"noonewillguessthis"}' -H 'Content-Type: application/json' -H "authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/users/{username}`
|
||||
|
||||
**Delete User:** `curl -X DELETE -H "authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/users/{username}`
|
||||
|
||||
**Check for Admin User:**`curl -H "Authorization: Bearer YOUR_SECRET_KEY" http://localhost:8081/api/users/adm/hasadmin`
|
||||
|
||||
**Create Admin User:** `curl -d '{ "username": "smartguy", "password": "YOUR_PASS"}' -H 'Content-Type: application/json' -H "authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/users/adm/createadmin`
|
||||
|
||||
**Authenticate:** `curl -d '{"username": "smartguy", "password": "YOUR_PASS"}' -H 'Content-Type: application/json' localhost:8081/api/nodes/adm/skynet/authenticate`
|
||||
|
||||
## SERVER MGMT
|
||||
|
||||
The Server Mgmt. API allows you to add and remove the server from networks.
|
||||
|
||||
**Add to Network:** `/api/server/addnetwork/{network id}`, `POST`
|
||||
|
||||
**Remove from Network:** `/api/server/removenetwork/{network id}`, `DELETE`
|
||||
|
||||
**Add to Network:** `curl -X POST -H "authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/server/addnetwork/{network id}`
|
||||
|
||||
**Remove from Network:** `curl -X DELETE -H "authorization: Bearer YOUR_SECRET_KEY" localhost:8081/api/server/removenetwork/{network id}`
|
||||
|
||||
## FILE SERVER
|
||||
|
||||
**Get File:** `/meshclient/files/{filename}`, `GET`
|
||||
|
||||
**Example:** `curl localhost:8081/meshclient/files/meshclient`
|
|
@ -1,74 +0,0 @@
|
|||
## Code of Conduct
|
||||
|
||||
### Our Pledge
|
||||
|
||||
In the interest of fostering an open and welcoming environment, we as
|
||||
contributors and maintainers pledge to making participation in our project and
|
||||
our community a harassment-free experience for everyone, regardless of age, body
|
||||
size, disability, ethnicity, gender identity and expression, level of experience,
|
||||
nationality, personal appearance, race, religion, or sexual identity and
|
||||
orientation.
|
||||
|
||||
### Our Standards
|
||||
|
||||
Examples of behavior that contributes to creating a positive environment
|
||||
include:
|
||||
|
||||
* Using welcoming and inclusive language
|
||||
* Being respectful of differing viewpoints and experiences
|
||||
* Gracefully accepting constructive criticism
|
||||
* Focusing on what is best for the community
|
||||
* Showing empathy towards other community members
|
||||
|
||||
Examples of unacceptable behavior by participants include:
|
||||
|
||||
* The use of sexualized language or imagery and unwelcome sexual attention or
|
||||
advances
|
||||
* Trolling, insulting/derogatory comments, and personal or political attacks
|
||||
* Public or private harassment
|
||||
* Publishing others' private information, such as a physical or electronic
|
||||
address, without explicit permission
|
||||
* Other conduct which could reasonably be considered inappropriate in a
|
||||
professional setting
|
||||
|
||||
### Our Responsibilities
|
||||
|
||||
Project maintainers are responsible for clarifying the standards of acceptable
|
||||
behavior and are expected to take appropriate and fair corrective action in
|
||||
response to any instances of unacceptable behavior.
|
||||
|
||||
Project maintainers have the right and responsibility to remove, edit, or
|
||||
reject comments, commits, code, wiki edits, issues, and other contributions
|
||||
that are not aligned to this Code of Conduct, or to ban temporarily or
|
||||
permanently any contributor for other behaviors that they deem inappropriate,
|
||||
threatening, offensive, or harmful.
|
||||
|
||||
### Scope
|
||||
|
||||
This Code of Conduct applies both within project spaces and in public spaces
|
||||
when an individual is representing the project or its community. Examples of
|
||||
representing a project or community include using an official project e-mail
|
||||
address, posting via an official social media account, or acting as an appointed
|
||||
representative at an online or offline event. Representation of a project may be
|
||||
further defined and clarified by project maintainers.
|
||||
|
||||
### Enforcement
|
||||
|
||||
Instances of abusive, harassing, or otherwise unacceptable behavior may be
|
||||
reported by contacting the project team at info@gravitl.com. All
|
||||
complaints will be reviewed and investigated and will result in a response that
|
||||
is deemed necessary and appropriate to the circumstances. The project team is
|
||||
obligated to maintain confidentiality with regard to the reporter of an incident.
|
||||
Further details of specific enforcement policies may be posted separately.
|
||||
|
||||
Project maintainers who do not follow or enforce the Code of Conduct in good
|
||||
faith may face temporary or permanent repercussions as determined by other
|
||||
members of the project's leadership.
|
||||
|
||||
### Attribution
|
||||
|
||||
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
|
||||
available at [http://contributor-covenant.org/version/1/4][version]
|
||||
|
||||
[homepage]: http://contributor-covenant.org
|
||||
[version]: http://contributor-covenant.org/version/1/4/
|
|
@ -1,28 +0,0 @@
|
|||
# Contributing to Netmaker
|
||||
Welcome! If you're reading this, you might be wondering how to go about submitting some changes, whether those are features, bugfixes, or simple enhancements. You're in the right place. Please read below to learn more.
|
||||
|
||||
## Code of Conduct
|
||||
|
||||
Please read through our [code of conduct](./CODE_OF_CONDUCT.md), and when making contributions to the community, stay true to that text.
|
||||
|
||||
## Report bugs and requests [here](https://github.com/gravitl/netmaker/issues)
|
||||
We use GitHub issues to track bugs, feature requests, and enhancements. If you think there's something missing or wrong with Netmaker, let us know! Try to add the appropriate tags and describe your issue thoroughly. If it's a feature request and we like it, we'll add it to the [roadmap](ROADMAP.md)
|
||||
|
||||
## Submitting a PR
|
||||
We actively welcome contributions, and the way to do that is with a PR:
|
||||
|
||||
1. Fork the repo
|
||||
2. Create a branch from `develop` based on what you are developing. In general this will be a feature or a bugfix branch, and should have the format of feature_vX.X_mynewfeature or bugfix_vX.X_mybugfix. Check the releases to see what minor version we are currently developing.
|
||||
3. Do your thing
|
||||
4. Document thoroughly
|
||||
5. Issue a PR to `develop`
|
||||
6. Sign the CLA
|
||||
|
||||
## Contributor License Agreement
|
||||
|
||||
When submitting a PR, you will be asked to sign a CLA, defined [here](https://gist.github.com/afeiszli/2f9f8133929e7d5574a9d892959d58a7). We've tried to make this as non-annoying as possible. This is adapted from the text used by the Apache Foundation in their CLA.
|
||||
|
||||
This project is evolving quickly and we may want to move to an MIT or GPL license at some point in the near future, which would be difficult without a CLA.
|
||||
|
||||
## Licensing
|
||||
Any contributions you make will be under the SSPL Software License. When you submit code changes, you understand that they will be under the same license that covers this project, defined [here](../LICENSE.txt). If you have any concerns around this, feel free to contact the maintainers.
|
|
@ -1,27 +0,0 @@
|
|||
##### https://docs.docker.com/engine/install/ubuntu/
|
||||
|
||||
## Install Docker (Ubuntu)
|
||||
|
||||
1. sudo apt-get install \
|
||||
apt-transport-https \
|
||||
ca-certificates \
|
||||
curl \
|
||||
gnupg \
|
||||
lsb-release
|
||||
|
||||
2. curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
|
||||
|
||||
3. echo \
|
||||
"deb [arch=amd64 signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu \
|
||||
$(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
|
||||
|
||||
|
||||
4. sudo apt-get update
|
||||
|
||||
5. sudo apt-get install docker-ce docker-ce-cli containerd.io
|
||||
|
||||
## Install Docker Compose (Ubuntu)
|
||||
|
||||
6. sudo curl -L "https://github.com/docker/compose/releases/download/1.26.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
|
||||
|
||||
7. sudo chmod +x /usr/local/bin/docker-compose
|
|
@ -1,96 +0,0 @@
|
|||
# FEATURE ROADMAP
|
||||
|
||||
### 0.1
|
||||
**Server:**
|
||||
- [x] Create Networks (virtual networks)
|
||||
- [x] Allow default settings for nodes from networks
|
||||
- [x] Admin/Superuser key
|
||||
- [x] Create multiuse keys for node signup
|
||||
- [x] JWT-based auth for post-signup
|
||||
- [x] CRUD for networks
|
||||
- [x] CRUD for nodes
|
||||
- [x] Track all important info about node for networking (port, endpoints, pub key, etc)
|
||||
- [x] Timestamps for determining if nodes need updates
|
||||
|
||||
**Agent:**
|
||||
- [x] Self-installer
|
||||
- [x] Determine default settings w/o user input
|
||||
- [x] Systemd Service + timer
|
||||
- [x] Check-in functionality to retrieve updates from server
|
||||
- [x] Maintain list of up-to-date peers
|
||||
- [x] Update WG interface
|
||||
- [x] Config file for modifying node
|
||||
|
||||
### 0.2
|
||||
- [x] Separate out README into DOCS folder with the following:
|
||||
- [x] API Docs
|
||||
- [x] Usage
|
||||
- [ ] Advanced Usage
|
||||
- [x] Contributing
|
||||
- [ ] Roadmap
|
||||
- [ ] Troubleshooting
|
||||
|
||||
**Server:**
|
||||
- [x] Allow tracking multiple networks per node
|
||||
- [ ] Configure Check-in thresholds
|
||||
- [ ] Separate sign-up endpoint to allow VPN-only comms after joining network
|
||||
- [ ] Swagger Docs
|
||||
- [x] Build Out README
|
||||
- [x] Encode Server, Port, and Network into Keys
|
||||
- [ ] Switch to Unique ID for nodes instead of MacAddress
|
||||
- [x] Public Key refresh
|
||||
- [ ] Enable ipv6 addresses
|
||||
- [x] Have a "default" network created at startup
|
||||
|
||||
**Agent:**
|
||||
- [x] Test / get working on multiple linux platforms
|
||||
- [ ] Set private DNS via etc hosts (node name + ip). Make it optional flag on agent.
|
||||
- [x] Decode Server, Port, and Network from Key
|
||||
- [ ] Service ID / unit file for SystemD Service
|
||||
- [x] Allow multiple interfaces
|
||||
- [ ] Use "Check in interval" from server
|
||||
- [x] Pre-req check on machine (wg, port forwarding)
|
||||
- [ ] Enable ipv6 addresses
|
||||
|
||||
### 0.3
|
||||
**Server:**
|
||||
- [ ] Swagger Docs
|
||||
- [ ] Network/Node labels
|
||||
- [ ] "Read Only" mode for nodes (can't update their settings centrally, only read)
|
||||
- [ ] "No-GUI mode:" Similar to existing, just do more e2e testing and make sure flow makes sense
|
||||
- [ ] Let users set prefixes (node, interface)
|
||||
|
||||
**Agent:**
|
||||
- [ ] Do system calls instead of direct commands
|
||||
- [ ] Add a prompt for easy setup
|
||||
|
||||
### 0.4
|
||||
**Server:**
|
||||
- [ ] Private DNS
|
||||
- [ ] UDP Hole-Punching (via WGSD: https://github.com/jwhited/wgsd )
|
||||
- [ ] "Read Only" mode for nodes (can't update their settings centrally, only read)
|
||||
|
||||
**Agent:**
|
||||
- [ ] Do system calls instead of direct commands [this repo](https://github.com/gravitl/netmaker-ui)
|
||||
- [ ] Add a prompt for easy setup
|
||||
- [ ] Make it work as a sidecar container!!!
|
||||
|
||||
### 0.5
|
||||
**Server:**
|
||||
- [ ] Multi-user support
|
||||
- [ ] Oauth
|
||||
- [ ] public key cycling
|
||||
|
||||
### Future Considerations
|
||||
**Server:**
|
||||
- [ ] Switch to distributed protocol (RAFT, Kademlia) instead of central server
|
||||
- [ ] Load balance / fault tolerant server
|
||||
- [ ] Change DB / make more scaleable (SQL?)
|
||||
- [ ] Redis
|
||||
- [ ] Network/Node labels
|
||||
|
||||
**Agent:**
|
||||
- [ ] userspace via Docker or Golang
|
||||
- [ ] MacOS support
|
||||
- [ ] Windows support
|
||||
- [ ] Certificate-based authentication
|
|
@ -1 +0,0 @@
|
|||
# This document will cover how to set up site to site connections using netmaker
|
|
@ -1,29 +0,0 @@
|
|||
# Netmaker Troubleshooting Help
|
||||
|
||||
## Client (netclient)
|
||||
### Problem: netclient-install script not working
|
||||
### Problem: Hanging artifacts from previous install
|
||||
### Problem: Need to change access token settings
|
||||
|
||||
|
||||
### Client fails to install
|
||||
|
||||
### Cannot run install script
|
||||
|
||||
### Issue with accesstoken created by UI
|
||||
|
||||
|
||||
## Server
|
||||
### Server not added to default network
|
||||
### Global config not found
|
||||
|
||||
|
||||
|
||||
## MongoDB
|
||||
|
||||
|
||||
|
||||
## UI
|
||||
|
||||
### Incorrect backend detected. Please specify correct URL and refresh. Given: http://localhost:8081
|
||||
Solution: Front end expects a reachable address for the backend. Localhost is default. Check if server is up. If server is up, make sure you've got the right endpoint (endpoint of server. Will not be 'localhost' unless doing local testing). If server is up and endpoint is correct, check for port blockings.
|
|
@ -1,140 +0,0 @@
|
|||
# Usage
|
||||
|
||||
This guide covers advanced usage of Netmaker. If you are just looking to get started quickly, check out the Quick Start in the [README](../README.md).
|
||||
|
||||
## Server Config
|
||||
Netmaker settings can be set via Environment Variables or Config file. There are also a couple of runtime arguments that can optionally be set.
|
||||
|
||||
### Environment Variables
|
||||
**APP_ENV**: default=dev. Determines which environment file to use. Will look under config/environments/APP_ENV.yaml. For instance, you can have different environments for dev, test, and prod, and store different settinggs accordingly.
|
||||
**GRPC_PORT**: default=50051. The port for GRPC (node/client) communications
|
||||
**API_PORT**: default=8081. The port for API and UI communications
|
||||
**MASTER_KEY**: default=secretkey. The skeleton key used for authenticating with server as administrator.
|
||||
|
||||
MongoDB Connection Env Vars:
|
||||
**MONGO_USER**:default=admin
|
||||
**MONGO_HOST**:default=password
|
||||
**MONGO_PASS**:default=localhost
|
||||
**MONGO_PORTS**:default=27017
|
||||
**MONGO_OPTS**:default=/?authSource=admin
|
||||
|
||||
**BACKEND_URL**: default=nil. The address of the server. Used for setting token values for client/nodes. If not set, will run a command to retrieve the server URL.
|
||||
|
||||
### Config File
|
||||
Stored as config/environments/*.yaml. Default used is dev.yaml
|
||||
|
||||
**server**:
|
||||
- **host:** "localhost" (reachable address of this server, overriden by BACKEND_URL)
|
||||
- **apiport:** "8081" (api port, overriden by API_PORT)
|
||||
- **grpcport**: "50051" (grpc port, overridden by GRPC_PORT)
|
||||
- **masterkey**: "secretkey" (administrator server API key, overridden by MASTER_KEY)
|
||||
- **allowedorigin**: "*" (CORS policy for requests)
|
||||
- **restbackend**: true (Runs the REST server)
|
||||
- **agentbackend**: true (Runs the GRPC server)
|
||||
- **defaultnetname**: "default" (name for the default network)
|
||||
- **defaultnetrange**: "10.10.10.0/24" (range for the default network)
|
||||
- **createdefault**: true (Flag for creating the default network)
|
||||
|
||||
**mongoconn**: (see ENV values above for explanation. ENV values override.)
|
||||
- **user**: "mongoadmin"
|
||||
- **pass**: "mongopass"
|
||||
- **host**: "localhost"
|
||||
- **port**: "27017"
|
||||
- **opts**: '/?authSource=admin'
|
||||
|
||||
### Runtime Args
|
||||
|
||||
**clientmode**: (default=on) E.x.: `sudo netmaker --clientmode=off` Run the Server as a client (node) as well.
|
||||
**defaultnet**: (default=on) E.x.: `sudo netmaker --defaultnet=off` Create a default network on startup.
|
||||
|
||||
## Client Config
|
||||
|
||||
Client config files are stored under /etc/netclient per network as /etc/netclient/netconfig-< network name >
|
||||
**server:**
|
||||
address: The address:port of the server
|
||||
accesskey: The acceess key used to sign up with the server
|
||||
|
||||
**node:**
|
||||
name: a displayname for the node, e.g. "mycomputer"
|
||||
interface: the network interface name, by default something like "nm-"
|
||||
network: the netmaker network being attached to
|
||||
password: the node's hashed password. Can be changed by putting a value in here and setting "postchanges" to "true"
|
||||
macaddress: the mac address of the node
|
||||
localaddress: the local network address
|
||||
wgaddress: the wireguard private address
|
||||
roamingoff: flag to update the IP address automatically based on network changes
|
||||
islocal: whether or not this is a local or public network
|
||||
allowedips: the allowedips addresses that other nodes will recieve
|
||||
localrange: the local address range if it's a local network
|
||||
postup: post up rules for gateway nodes
|
||||
postdown: post down rules for gateway nodes
|
||||
port: the wiregard port
|
||||
keepalive: the default keepalive value between this and all other nodes
|
||||
publickey: the public key other nodes will use to access this node
|
||||
privatekey: the private key of the nodes (this field does nothing)
|
||||
endpoint: the reachable endpoint of the node for routing, either local or public.
|
||||
postchanges: either "true" or "false" (with quotes). If true, will post any changes you make to the remote server.
|
||||
|
||||
|
||||
## Non-Docker Installation
|
||||
|
||||
### MongoDB Setup
|
||||
1. Install MongoDB on your server. For Ubuntu: `sudo apt install -y mongodb`. For more advanced installation or other operating systems, see the [MongoDB documentation](https://docs.mongodb.com/manual/administration/install-community/).
|
||||
|
||||
2. Create a user:
|
||||
`mongo admin`
|
||||
> `db.createUser({ user: "mongoadmin" , pwd: "mongopass", roles: ["userAdminAnyDatabase", "dbAdminAnyDatabase", "readWriteAnyDatabase"]})`
|
||||
|
||||
### Server Setup
|
||||
1. **Run the install script:** sudo curl -sfL https://raw.githubusercontent.com/gravitl/netmaker/v0.2/netmaker-server.sh | sh -
|
||||
2. Check status: `sudo journalctl -u netmaker`
|
||||
2. If any settings are incorrect such as host or mongo credentials, change them under /etc/netmaker/config/environments/ENV.yaml and then run `sudo systemctl restart netmaker`
|
||||
|
||||
### UI Setup
|
||||
1. **Download UI asset files:** `sudo wget -O /usr/share/nginx/html/netmaker-ui.zip https://github.com/gravitl/netmaker-ui/releases/download/latest/netmaker-ui.zip`
|
||||
|
||||
2. **Unzip:** `sudo unzip /usr/share/nginx/html/netmaker-ui.zip -d /usr/share/nginx/html`
|
||||
|
||||
3. **Copy Config to Nginx:** `sudo cp /usr/share/nginx/html/nginx.conf /etc/nginx/conf.d/default.conf`
|
||||
|
||||
4. **Modify Default Config Path:** `sudo sed -i 's/root \/var\/www\/html/root \/usr\/share\/nginx\/html/g' /etc/nginx/sites-available/default`
|
||||
|
||||
5. **Change Backend URL:** `sudo sh -c 'BACKEND_URL=http://<YOUR BACKEND API URL>:PORT /usr/share/nginx/html/generate_config_js.sh >/usr/share/nginx/html/config.js'`
|
||||
|
||||
6. **Start Nginx:** `sudo systemctl start nginx`
|
||||
|
||||
### Agent Setup
|
||||
|
||||
On each machine you would like to add to the network, do the following:
|
||||
|
||||
1. Confirm wireguard is installed: `sudo apt install wireguard-tools`
|
||||
2. Confirm ipv4 forwarding is enabled: `sysctl -w net.ipv4.ip_forward=1`
|
||||
3. Create a key or enable manual node signup at the network level
|
||||
4. Run the install command generated by key create: `sudo curl -sfL https://raw.githubusercontent.com/gravitl/netmaker/v0.2/netclient-install.sh | KEY=YOUR_TOKEN sh -`
|
||||
4.a. For additional networks on the same machine, you can just run `sudo netclient -c install -t YOUR_TOKEN`
|
||||
4.b. For offline installs (no access to github), you can self-host a netclient file server on netmaker
|
||||
|
||||
This will install netclient@.service and netclient-YOUR_NET.timer in systemd, which will run periodically to call the netclient binary, which will check to see if there are any updates that it needs and update WireGuard appropriately.
|
||||
|
||||
## BUILDING
|
||||
**Back End Compilation**
|
||||
The backend can be compiled by running "go build" from the root of the repository, which will create an executable named "netmaker."
|
||||
|
||||
**Client Compilation**
|
||||
Similarly, "go build" can be run from the netclient directory to produce a netclient executable.
|
||||
|
||||
**Protoc command for GRPC Compilation:**
|
||||
Whenever making changes to grpc/node.proto, you will need to recompile the grpc. This can be achieved by running the following command from the root of the repository.
|
||||
|
||||
protoc --go_out=. --go_opt=paths=source_relative --go-grpc_out=. --go-grpc_opt=paths=source_relative grpc/node.proto
|
||||
|
||||
**Build binary:** `go build ./`
|
||||
|
||||
|
||||
## TESTING
|
||||
|
||||
**Unit Testing**
|
||||
When making changes to Netmaker, you may wish to create nodes, networks, or keys for testing. Bash scripts have been created under the "test" directory (*.sh) which run curl commands that generate sample nodes, networks, and keys that can be used for testing purposes.
|
||||
|
||||
**Integration Testing**
|
||||
Similarly, several go scripts have been created under the test directory (*.go) to test out changes to the code base. These will be run automatically when PR's are submitted but can also be run manually using "go test."
|
|
@ -1,14 +0,0 @@
|
|||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
if [[ $EUID -ne 0 ]]; then
|
||||
echo "This script must be run as root"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
[ -z "$KEY" ] && KEY=nokey;
|
||||
|
||||
wget -O netclient https://github.com/gravitl/netmaker/releases/download/v0.5.11/netclient
|
||||
chmod +x netclient
|
||||
sudo ./netclient join -t $KEY
|
||||
rm -f netclient
|
|
@ -1,60 +0,0 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
[ -z "$SERVER_DOMAIN" ] && echo "Need to set SERVER_DOMAIN (format: 1.2.3.4 or mybackend.com)" && exit 1;
|
||||
|
||||
|
||||
docker volume create mongovol && docker run -d --name mongodb -v mongovol:/data/db --network host -e MONGO_INITDB_ROOT_USERNAME=mongoadmin -e MONGO_INITDB_ROOT_PASSWORD=mongopass mongo --bind_ip 0.0.0.0
|
||||
|
||||
mkdir -p /etc/netmaker/config/environments
|
||||
wget -O /etc/netmaker/netmaker https://github.com/gravitl/netmaker/releases/download/latest/netmaker
|
||||
chmod +x /etc/netmaker/netmaker
|
||||
|
||||
|
||||
cat >/etc/netmaker/config/environments/dev.yaml<<EOL
|
||||
server:
|
||||
host: "$SERVER_DOMAIN"
|
||||
apiport: "8081"
|
||||
grpcport: "50051"
|
||||
masterkey: "secretkey"
|
||||
allowedorigin: "*"
|
||||
restbackend: true
|
||||
agentbackend: true
|
||||
defaultnetname: "default"
|
||||
defaultnetrange: "10.10.10.0/24"
|
||||
createdefault: true
|
||||
mongoconn:
|
||||
user: "mongoadmin"
|
||||
pass: "mongopass"
|
||||
host: "localhost"
|
||||
port: "27017"
|
||||
opts: '/?authSource=admin'
|
||||
EOL
|
||||
|
||||
cat >/etc/netmaker/config/Corefile<<EOL
|
||||
. {
|
||||
hosts /root/netmaker.hosts
|
||||
}
|
||||
EOL
|
||||
|
||||
cat >/etc/systemd/system/netmaker.service<<EOL
|
||||
[Unit]
|
||||
Description=Netmaker Server
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
Restart=on-failure
|
||||
|
||||
WorkingDirectory=/etc/netmaker
|
||||
ExecStart=/etc/netmaker/netmaker
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
EOL
|
||||
systemctl daemon-reload
|
||||
systemctl start netmaker.service
|
||||
|
||||
|
||||
docker run -d --name netmaker-ui -p 80:80 -e BACKEND_URL="http://$SERVER_DOMAIN:8081" gravitl/netmaker-ui:v0.2
|
||||
docker run -d --name coredns --restart=always --volume=/etc/netmaker/config/:/root/ -p 52:53/udp coredns/coredns -conf /root/Corefile
|
|
@ -1,101 +0,0 @@
|
|||
#!/bin/sh
|
||||
set -x
|
||||
|
||||
[ -z "$SERVER_DOMAIN" ] && echo "Need to set SERVER_DOMAIN (format: 1.2.3.4 or mybackend.com)" && exit 1;
|
||||
|
||||
|
||||
install() {
|
||||
|
||||
docker volume create mongovol && docker run -d --name mongodb -v mongovol:/data/db -p 27017:27017 -e MONGO_INITDB_ROOT_USERNAME=mongoadmin -e MONGO_INITDB_ROOT_PASSWORD=mongopass mongo
|
||||
|
||||
echo "Giving Mongo Time to Start"
|
||||
sleep 10
|
||||
echo "Installing Netmaker API"
|
||||
|
||||
mkdir -p /etc/netmaker/config/environments
|
||||
mkdir -p /etc/netmaker/config/dnsconfig
|
||||
cp ../netmaker /etc/netmaker/netmaker
|
||||
chmod +x /etc/netmaker/netmaker
|
||||
|
||||
|
||||
cat >/etc/netmaker/config/environments/dev.yaml<<EOL
|
||||
server:
|
||||
host: "$SERVER_DOMAIN"
|
||||
apiport: "8081"
|
||||
grpcport: "50051"
|
||||
masterkey: "secretkey"
|
||||
allowedorigin: "*"
|
||||
restbackend: true
|
||||
agentbackend: true
|
||||
defaultnetname: "default"
|
||||
defaultnetrange: "10.10.10.0/24"
|
||||
createdefault: true
|
||||
mongoconn:
|
||||
user: "mongoadmin"
|
||||
pass: "mongopass"
|
||||
host: "127.0.0.1"
|
||||
port: "27017"
|
||||
opts: '/?authSource=admin'
|
||||
EOL
|
||||
|
||||
cat >/etc/netmaker/config/dnsconfig/Corefile<<EOL
|
||||
. {
|
||||
hosts ./root/netmaker.hosts {
|
||||
fallthrough
|
||||
}
|
||||
forward . 8.8.8.8 8.8.4.4
|
||||
log
|
||||
}
|
||||
EOL
|
||||
|
||||
cat >/etc/systemd/system/netmaker.service<<EOL
|
||||
[Unit]
|
||||
Description=Netmaker Server
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
Restart=on-failure
|
||||
|
||||
WorkingDirectory=/etc/netmaker
|
||||
ExecStart=/etc/netmaker/netmaker
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
EOL
|
||||
systemctl daemon-reload
|
||||
systemctl start netmaker.service
|
||||
sudo docker pull coredns/coredns
|
||||
sudo docker pull gravitl/netmaker-ui:v0.3
|
||||
|
||||
systemctl stop systemd-resolved
|
||||
systemctl disable systemd-resolved
|
||||
echo "Running CoreDNS"
|
||||
sudo docker run -d --name coredns --restart=always --volume=/etc/netmaker/config/dnsconfig/:/root/ -p 53:53/udp coredns/coredns -conf /root/Corefile
|
||||
|
||||
echo "Running UI"
|
||||
sudo docker run -d --name netmaker-ui -p 80:80 -e BACKEND_URL="http://$SERVER_DOMAIN:8081" gravitl/netmaker-ui:v0.3
|
||||
|
||||
echo "Setup Complete"
|
||||
}
|
||||
|
||||
cleanup() {
|
||||
sudo docker kill mongodb || true
|
||||
sudo docker rm mongodb || true
|
||||
sudo docker volume rm mongovol || true
|
||||
sudo docker kill coredns || true
|
||||
sudo docker rm coredns || true
|
||||
sudo docker kill netmaker-ui || true
|
||||
sudo docker rm netmaker-ui || true
|
||||
sudo netclient -c remove -n default || true
|
||||
sudo rm -rf /etc/systemd/system/netmaker.service || true
|
||||
sudo rm -rf /etc/netmaker || true
|
||||
sudo systemctl enable systemd-resolved
|
||||
sudo systemctl start systemd-resolved
|
||||
sleep 5
|
||||
sudo systemctl restart systemd-resolved
|
||||
}
|
||||
|
||||
trap cleanup ERR
|
||||
cleanup
|
||||
install
|
|
@ -1,36 +0,0 @@
|
|||
#!/bin/sh
|
||||
set -e
|
||||
|
||||
mkdir -p /etc/netmaker/config/environments
|
||||
wget -O /etc/netmaker/netmaker https://github.com/gravitl/netmaker/releases/download/latest/netmaker
|
||||
chmod +x /etc/netmaker/netmaker
|
||||
|
||||
cat >/etc/netmaker/config/environments/dev.yaml<<EOL
|
||||
server:
|
||||
host:
|
||||
apiport: "8081"
|
||||
grpcport: "50051"
|
||||
masterkey: "secretkey"
|
||||
allowedorigin: "*"
|
||||
restbackend: true
|
||||
agentbackend: true
|
||||
dnsmode: "on"
|
||||
EOL
|
||||
|
||||
cat >/etc/systemd/system/netmaker.service<<EOL
|
||||
[Unit]
|
||||
Description=Netmaker Server
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
Restart=on-failure
|
||||
|
||||
WorkingDirectory=/etc/netmaker
|
||||
ExecStart=/etc/netmaker/netmaker
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
EOL
|
||||
systemctl daemon-reload
|
||||
systemctl start netmaker.service
|
|
@ -22,7 +22,7 @@ do
|
|||
fi
|
||||
done
|
||||
|
||||
dependencies=("docker" "docker-compose" "wireguard")
|
||||
dependencies=("docker.io" "docker-compose" "wireguard")
|
||||
|
||||
for dependency in ${dependencies[@]}; do
|
||||
is_installed=$(dpkg-query -W --showformat='${Status}\n' ${dependency} | grep "install ok installed")
|
||||
|
@ -56,6 +56,7 @@ NETMAKER_BASE_DOMAIN=nm.$(curl -s ifconfig.me | tr . -).nip.io
|
|||
COREDNS_IP=$(ip route get 1 | sed -n 's/^.*src \([0-9.]*\) .*$/\1/p')
|
||||
SERVER_PUBLIC_IP=$(curl -s ifconfig.me)
|
||||
REPLACE_MASTER_KEY=$(tr -dc A-Za-z0-9 </dev/urandom | head -c 30 ; echo '')
|
||||
EMAIL="fake@email.com"
|
||||
|
||||
echo " domain: $NETMAKER_BASE_DOMAIN"
|
||||
echo " coredns ip: $COREDNS_IP"
|
||||
|
@ -63,112 +64,46 @@ echo " public ip: $SERVER_PUBLIC_IP"
|
|||
echo " master key: $REPLACE_MASTER_KEY"
|
||||
|
||||
|
||||
echo "creating caddyfile..."
|
||||
|
||||
cat >/root/Caddyfile<<EOL
|
||||
{
|
||||
# LetsEncrypt account
|
||||
email fake@email.com
|
||||
}
|
||||
|
||||
# Dashboard
|
||||
https://dashboard.$NETMAKER_BASE_DOMAIN {
|
||||
reverse_proxy http://127.0.0.1:8082
|
||||
}
|
||||
|
||||
# API
|
||||
https://api.$NETMAKER_BASE_DOMAIN {
|
||||
reverse_proxy http://127.0.0.1:8081
|
||||
}
|
||||
|
||||
# gRPC
|
||||
https://grpc.$NETMAKER_BASE_DOMAIN {
|
||||
reverse_proxy h2c://127.0.0.1:50051
|
||||
}
|
||||
EOL
|
||||
echo "setting caddyfile..."
|
||||
|
||||
|
||||
echo "creating docker-compose.yml..."
|
||||
wget -O /root/Caddyfile https://raw.githubusercontent.com/gravitl/netmaker/master/docker/Caddyfile
|
||||
sed -i "s/NETMAKER_BASE_DOMAIN/$NETMAKER_BASE_DOMAIN/g" /root/Caddyfile
|
||||
sed -i "s/YOUR_EMAIL/$EMAIL/g" /root/Caddyfile
|
||||
|
||||
cat >/root/docker-compose.yml<<EOL
|
||||
version: "3.4"
|
||||
|
||||
services:
|
||||
netmaker:
|
||||
container_name: netmaker
|
||||
image: gravitl/netmaker:v0.8.2
|
||||
volumes:
|
||||
- /etc/netclient/config:/etc/netclient/config
|
||||
- dnsconfig:/root/config/dnsconfig
|
||||
- /usr/bin/wg:/usr/bin/wg
|
||||
- sqldata:/root/data
|
||||
cap_add:
|
||||
- NET_ADMIN
|
||||
restart: always
|
||||
network_mode: host
|
||||
environment:
|
||||
SERVER_HOST: "$SERVER_PUBLIC_IP"
|
||||
SERVER_API_CONN_STRING: "api.$NETMAKER_BASE_DOMAIN:443"
|
||||
SERVER_GRPC_CONN_STRING: "grpc.$NETMAKER_BASE_DOMAIN:443"
|
||||
COREDNS_ADDR: "$SERVER_PUBLIC_IP"
|
||||
GRPC_SSL: "on"
|
||||
DNS_MODE: "on"
|
||||
SERVER_HTTP_HOST: "api.$NETMAKER_BASE_DOMAIN"
|
||||
SERVER_GRPC_HOST: "grpc.$NETMAKER_BASE_DOMAIN"
|
||||
API_PORT: "8081"
|
||||
GRPC_PORT: "50051"
|
||||
CLIENT_MODE: "contained"
|
||||
MASTER_KEY: "REPLACE_MASTER_KEY"
|
||||
SERVER_GRPC_WIREGUARD: "off"
|
||||
CORS_ALLOWED_ORIGIN: "*"
|
||||
DATABASE: "sqlite"
|
||||
netmaker-ui:
|
||||
container_name: netmaker-ui
|
||||
depends_on:
|
||||
- netmaker
|
||||
image: gravitl/netmaker-ui:v0.8
|
||||
links:
|
||||
- "netmaker:api"
|
||||
ports:
|
||||
- "8082:80"
|
||||
environment:
|
||||
BACKEND_URL: "https://api.$NETMAKER_BASE_DOMAIN"
|
||||
restart: always
|
||||
coredns:
|
||||
depends_on:
|
||||
- netmaker
|
||||
image: coredns/coredns
|
||||
command: -conf /root/dnsconfig/Corefile
|
||||
container_name: coredns
|
||||
restart: always
|
||||
ports:
|
||||
- "$COREDNS_IP:53:53/udp"
|
||||
- "$COREDNS_IP:53:53/tcp"
|
||||
volumes:
|
||||
- dnsconfig:/root/dnsconfig
|
||||
caddy:
|
||||
image: caddy:latest
|
||||
container_name: caddy
|
||||
restart: unless-stopped
|
||||
network_mode: host # Wants ports 80 and 443!
|
||||
volumes:
|
||||
- /root/Caddyfile:/etc/caddy/Caddyfile
|
||||
# - $PWD/site:/srv # you could also serve a static site in site folder
|
||||
- caddy_data:/data
|
||||
- caddy_conf:/config
|
||||
volumes:
|
||||
caddy_data: {}
|
||||
caddy_conf: {}
|
||||
sqldata: {}
|
||||
dnsconfig: {}
|
||||
EOL
|
||||
echo "setting docker-compose..."
|
||||
|
||||
wget -O /root/docker-compose.yml https://raw.githubusercontent.com/gravitl/netmaker/master/compose/docker-compose.caddy.yml
|
||||
sed -i "s/NETMAKER_BASE_DOMAIN/$NETMAKER_BASE_DOMAIN/g" /root/docker-compose.yml
|
||||
sed -i "s/SERVER_PUBLIC_IP/$SERVER_PUBLIC_IP/g" /root/docker-compose.yml
|
||||
sed -i "s/COREDNS_IP/$COREDNS_IP/g" /root/docker-compose.yml
|
||||
sed -i "s/REPLACE_MASTER_KEY/$REPLACE_MASTER_KEY/g" /root/docker-compose.yml
|
||||
|
||||
echo "starting containers..."
|
||||
|
||||
docker-compose -f /root/docker-compose.yml up -d
|
||||
|
||||
sleep 5
|
||||
cat << "EOF"
|
||||
|
||||
echo "finished installing"
|
||||
|
||||
echo "visit dashboard.$NETMAKER_BASE_DOMAIN to log in"
|
||||
______ ______ ______ __ __ __ ______ __
|
||||
/\ ___\ /\ == \ /\ __ \ /\ \ / / /\ \ /\__ _\ /\ \
|
||||
\ \ \__ \ \ \ __< \ \ __ \ \ \ \'/ \ \ \ \/_/\ \/ \ \ \____
|
||||
\ \_____\ \ \_\ \_\ \ \_\ \_\ \ \__| \ \_\ \ \_\ \ \_____\
|
||||
\/_____/ \/_/ /_/ \/_/\/_/ \/_/ \/_/ \/_/ \/_____/
|
||||
|
||||
__ __ ______ ______ __ __ ______ __ __ ______ ______
|
||||
/\ "-.\ \ /\ ___\ /\__ _\ /\ "-./ \ /\ __ \ /\ \/ / /\ ___\ /\ == \
|
||||
\ \ \-. \ \ \ __\ \/_/\ \/ \ \ \-./\ \ \ \ __ \ \ \ _"-. \ \ __\ \ \ __<
|
||||
\ \_\\"\_\ \ \_____\ \ \_\ \ \_\ \ \_\ \ \_\ \_\ \ \_\ \_\ \ \_____\ \ \_\ \_\
|
||||
\/_/ \/_/ \/_____/ \/_/ \/_/ \/_/ \/_/\/_/ \/_/\/_/ \/_____/ \/_/ /_/
|
||||
|
||||
|
||||
EOF
|
||||
|
||||
echo " finished installing"
|
||||
echo " "
|
||||
echo " visit dashboard.$NETMAKER_BASE_DOMAIN to log in"
|
||||
echo " "
|
||||
echo " "
|
|
@ -1,7 +0,0 @@
|
|||
rm -rf /etc/systemd/system/netclient-default.timer
|
||||
rm -rf /etc/systemd/system/netclient@.service
|
||||
rm -rf /etc/netclient/
|
||||
systemctl daemon-reload
|
||||
ip link del nm-default
|
||||
ip link del nm-grpc-wg
|
||||
docker-compose -f /root/netmaker/compose/docker-compose.yml down --volumes
|
|
@ -1,3 +0,0 @@
|
|||
#!/bin.bash
|
||||
docker volume create mongovol
|
||||
docker run -d --name mongodb -v mongovol:/data/db --network host -e MONGO_INITDB_ROOT_USERNAME=mongoadmin -e MONGO_INITDB_ROOT_PASSWORD=mongopass mongo --bind_ip 0.0.0.0
|
|
@ -1,12 +0,0 @@
|
|||
#!/bin/sh
|
||||
set -x
|
||||
|
||||
echo "Starting."
|
||||
|
||||
sudo netclient -c remove-all || true
|
||||
sudo rm -rf /usr/local/bin/netclient || true
|
||||
sudo rm -rf /etc/netclient|| true
|
||||
find /etc/systemd/system/ -name 'netclient*' -exec rm {} \;
|
||||
sudo systemctl daemon-reload || true
|
||||
|
||||
echo "Done."
|
|
@ -1,26 +0,0 @@
|
|||
#!/bin/sh
|
||||
set -x
|
||||
|
||||
echo "Starting."
|
||||
|
||||
sudo docker kill mongodb || true
|
||||
sudo docker rm mongodb || true
|
||||
sudo docker volume rm mongovol || true
|
||||
sudo docker volume rm `docker volume ls -q -f dangling=true` || true
|
||||
sudo docker kill coredns || true
|
||||
sudo docker rm coredns || true
|
||||
sudo docker kill netmaker-ui || true
|
||||
sudo docker rm netmaker-ui || true
|
||||
sudo netclient -c remove -n default || true
|
||||
sudo rm -rf /etc/systemd/system/netmaker.service || true
|
||||
sudo rm -rf /etc/netmaker || true
|
||||
sudo rm -rf /usr/local/bin/netclient || true
|
||||
sudo rm -rf /etc/netclient|| true
|
||||
find /etc/systemd/system/ -name 'netclient*' -exec rm {} \;
|
||||
sudo systemctl daemon-reload || true
|
||||
sudo systemctl enable systemd-resolved || true
|
||||
sudo systemctl start systemd-resolved || true
|
||||
sleep 5
|
||||
sudo systemctl restart systemd-resolved || true
|
||||
|
||||
echo "Done."
|
|
@ -1,25 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
PUBKEY="DM5qhLAE20PG9BbfBCger+Ac9D2NDOwCtY1rbYDLf34="
|
||||
IPADDR="67.169.21.168"
|
||||
MACADDRESS="56:2a:9c:d4:e2:15"
|
||||
ACCESSKEY="secretkey"
|
||||
PASSWORD="password"
|
||||
|
||||
generate_post_json ()
|
||||
{
|
||||
cat <<EOF
|
||||
{
|
||||
"endpoint": "$IPADDR",
|
||||
"publickey": "$PUBKEY",
|
||||
"macaddress": "$MACADDRESS",
|
||||
"password": "$PASSWORD"
|
||||
}
|
||||
EOF
|
||||
}
|
||||
|
||||
POST_JSON=$(generate_post_json)
|
||||
|
||||
echo $POST_JSON
|
||||
|
||||
curl --max-time 5.0 -d "$POST_JSON" -H 'Content-Type: application/json' -H "authorization: Bearer mastertoken" localhost:8081/api/doofusnet/nodes
|
|
@ -1,7 +0,0 @@
|
|||
#!/bin/bash
|
||||
|
||||
sudo docker kill mongodb
|
||||
sudo docker rm mongodb
|
||||
sudo docker volume rm mongovol
|
||||
|
||||
docker volume create mongovol && docker run -d --name mongodb -v mongovol:/data/db --network host -e MONGO_INITDB_ROOT_USERNAME=mongoadmin -e MONGO_INITDB_ROOT_PASSWORD=mongopass mongo --bind_ip 0.0.0.0
|
Loading…
Add table
Reference in a new issue