docs - adding 2022-4 blog info
silversword411 committed
May 31, 2022 at 10:46 UTC
7440c128052cfff7da8cead86210749cd49eed14
7 files changed
+28
-1
docs/docs/meshcentral/images/2022-05-31-10-30-07.png
Binary files /dev/null and b/docs/docs/meshcentral/images/2022-05-31-10-30-07.png differ
docs/docs/meshcentral/images/2022-05-31-10-30-42.png
Binary files /dev/null and b/docs/docs/meshcentral/images/2022-05-31-10-30-42.png differ
docs/docs/meshcentral/images/2022-05-31-10-30-50.png
Binary files /dev/null and b/docs/docs/meshcentral/images/2022-05-31-10-30-50.png differ
docs/docs/meshcentral/images/2022-05-31-10-31-00.png
Binary files /dev/null and b/docs/docs/meshcentral/images/2022-05-31-10-31-00.png differ
docs/docs/meshcentral/images/2022-05-31-10-32-46.png
Binary files /dev/null and b/docs/docs/meshcentral/images/2022-05-31-10-32-46.png differ
docs/docs/meshcentral/index.md
+26
@@ -56,6 +56,8 @@ This is because by default MeshCentral is using a self-signed certificate that i
56
57
- Click “Continue to this website (not recommended)”
58
59
+Note: You can also get to a device by specifying the device name in the URL by adding `?viewmode=10&gotodevicename=MyComputer` to the URL of the MeshCentral web page. The new `gotodevicename` will find a device with the specified name and navigate to that device’s page. This is perfect for integrating MeshCentral with other solutions but be aware that a computer name is not a unique identifier and so, `&gotonode=` is always the preferred way to access a device. This feature also works on the mobile web site.
60
+
61
### Create Account
62
63
Create an account by clicking “Create One” and click “Create Account” once the text fields had been populated correctly.
@@ -696,6 +698,30 @@ Server2:443 -> 4433 on MeshCentral
698
699
The routing of IP and ports by the firewall shown on the picture must be configured separately from MeshCentral using separate software. Typically, routers or firewalls have the proper controls to configure this type of traffic routes.
700
701
+## Device Groups with Relay Agent
702
+
703
+MeshCentral supports the local device group allowing devices that do not have an agent to be managed thru MeshCentral with regular SSH, SFTP, RDP, VNC protocols. Until now, the MeshCentral server had to be in LAN or Hybrid modes to support his device group and the managed devices had to be on the same network as the MeshCentral server. Starting with v1.0.11, users can create a local device group specifying a MeshAgent as a relay. This makes it possible to manage agent-less devices from anywhere on the Internet even if the server is in WAN mode. Simply install a single device with a MeshAgent on a network and create a local device group with that device as the relay.
704
+
705
+
706
+
707
+
708
+
709
+Video Walkthru
710
+
711
+<div class="video-wrapper">
712
+ <iframe width="320" height="180" src="https://www.youtube.com/embed/TtW5-g6SeZQ" frameborder="0" allowfullscreen></iframe>
713
+</div>
714
+
715
+### Raritan and WebPowerSwitch with Relay
716
+
717
+In addition to local device groups, the IP-KVM/Power switch device group was also improved to support a MeshAgent as a relay. This is big news for Raritan IP-KVM switch owners as you can now monitor your IP-KVM ports and access them remotely from the Internet. The same can be done with WebPowerSwitch allowing full out-of-band remote access to devices from anywhere in the world.
718
+
719
+
720
+
721
+
722
+
723
+
724
+
725
## NGINX Reverse-Proxy Setup
726
727
Sometimes it’s useful to setup MeshCentral with a reverse-proxy in front of it. This is useful if you need to host many services on a single public IP address, if you want to offload TLS and perform extra web caching. In this section we will setup NGINX, a popular reverse-proxy, in front of MeshCentral. NGNIX is available at: https://www.nginx.com/
docs/startdevmkdocsonwindows.ps1
+2
-1
@@ -3,11 +3,12 @@
3
# Use the "Run Selection" in VSCode to run the code blocks as-needed
4
5
#Activate python
6
+cd docs
7
python -m venv env
8
.\env\Scripts\activate
9
10
#Install requirements first time only
10
-python -m pip install --upgrade pip #only 1st time
11
+python -m pip install --upgrade pip #only 1st time or use periodically to update pip modules
12
pip install pytest #only 1st time
13
pip install mkdocs #only 1st time
14
pip install mkdocs-material #only 1st time