Skip to content

Commit 3fc2f14

Browse files
committed
release 0.18.0
1 parent c58f8d7 commit 3fc2f14

File tree

3 files changed

+37
-28
lines changed

3 files changed

+37
-28
lines changed

docs/install_server.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -138,9 +138,7 @@ We'll be using `example.com` as our domain for this example.
138138

139139
![arecords](images/arecords.png)
140140

141-
!!!tip
142-
Already have your own SSL certificate? [Read this](functions/settings_override.md#using-your-own-wildcard-ssl-cert) before continuing.
143-
141+
144142
### Step 5 - Run the install script
145143

146144
Switch to the `tactical` user:
@@ -160,6 +158,17 @@ chmod +x install.sh
160158
./install.sh
161159
```
162160

161+
!!!info
162+
Already have your own SSL certificate? Call the install script with the `--use-own-cert` flag, like this:
163+
```bash
164+
./install.sh --use-own-cert
165+
```
166+
Ensure your cert and private key exist on the server as the install script will prompt you for the locations of these 2 files.
167+
168+
Also ensure that it is a legitimate, trusted certificate and includes the full chain for proper validation. Do not use this option with self-signed certs.
169+
170+
171+
163172
!!!danger
164173
You can install with the `--insecure` switch to use any DNS name you want. Self signed certs will be generated for all the DNS names, and all SSL certificate chain validation will be disabled in TRMM.
165174

docs/management_cmds.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,11 @@ AuthToken.objects.all().delete()
101101
python manage.py remove_orphaned_tasks
102102
```
103103

104+
### Get a url to login to mesh as the mesh superuser
105+
```bash
106+
python manage.py get_mesh_login_url
107+
```
108+
104109
### Create a MeshCentral Agent Invite Link
105110

106111
```bash

docs/mesh_integration.md

Lines changed: 20 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -11,19 +11,19 @@ Tactical RMM integrates with [MeshCentral](https://github.com/Ylianst/MeshCentra
1111
!!!note
1212
MeshCentral has issues with Firefox, use a Chromium-based browser.
1313

14-
At some point in the future, these functions will be directly built into the Tactical agent, removing the need for MeshCentral.
15-
1614
It should be noted that Tactical RMM and MeshCentral are 2 completely separate products and can run independently of each other.
1715

1816
They do not even have to run on the same box, however when you install Tactical RMM it simply installs MeshCentral for you with some pre-configured settings to allow integration.
1917

2018
It is highly recommended to use the MeshCentral instance that Tactical installs, since it allows the developers more control over it and to ensure things don't break.
2119

22-
## OMG MeshCentral isn't maintained anymore!
20+
## How does it work?
2321

24-
MeshCentral is still [actively being maintained](https://meshcentral2.blogspot.com/2023/10/meshcentral-windows-arm64-nodejs-v11.html), the lead devs had jobs in which they were paid by a corporation to develop MeshCentral, they now have got other jobs which means they are supporting and developing MeshCentral in their free time (like alot of other projects) this means development is slower but not that it isn't maintained anymore. If this changes or it becomes necessary to fix something that breaks or packages needing updated we are prepared to begin maintaining our own fork. The features of MeshCentral that TRMM uses are only the 3 items above and are extremely mature.
22+
Please watch this video to fully understand how mesh integrations and permissions sync work.
2523

26-
## How does it work?
24+
<div class="video-wrapper">
25+
<iframe width="400" height="225" src="https://www.youtube.com/embed/HS03aIg5S5g" frameborder="0" allowfullscreen></iframe>
26+
</div>
2727

2828
MeshCentral has an embedding feature that allows integration into existing products.
2929

@@ -33,24 +33,30 @@ The Tactical RMM agent keeps track of your Mesh agents, and periodically interac
3333

3434
When you do a take control / terminal / file browser on an agent using the Tactical UI, behind the scenes, Tactical generates a login token for MeshCentral's website and then "wraps" MeshCentral's UI in an iframe for that specific agent only, using it's unique ID to know what agent to render in the iframe.
3535

36+
## Customize Take Control Username
37+
38+
If you've enabled the Mesh "Ask Consent + Bar" display option that shows across the top when controlling a users machine and you'd like to change the name that users see, make sure the user has a First and/or Last name set TRMM (Settings > User Administration).
39+
40+
## Get a url to login to mesh as the mesh superuser
41+
```bash
42+
/rmm/api/env/bin/python /rmm/api/tacticalrmm/manage.py get_mesh_login_url
43+
```
44+
3645
## Running your own existing or separate MeshCentral server?
3746

3847
We do testing to make sure everything works with the version found [here](https://github.com/amidaware/tacticalrmm/blob/master/api/tacticalrmm/tacticalrmm/settings.py) (look for MESH_VER).
3948

4049
Installation instructions for using your own MeshCentral server:
4150

4251
1. Run standard installation.
43-
2. When asked for Mesh URL specify your existing Mesh server URL.
44-
3. After installation, you will need to run thru manually uploading installers and connecting token with [this](troubleshooting.md#need-to-recover-your-mesh-token):
45-
4. Make sure DNS is pointing to your existing server (you must also remove `mesh.yourdomain.com` from `/etc/hosts` on the trmm server).
52+
2. After installation is complete, disable meshcentral `sudo systemctl disable --now meshcentral`.
53+
3. In TRMM Web UI go to Settings > Global Settings > MeshCentral and update values from your existing mesh (make sure to use a mesh superuser).
54+
4. Add `USE_EXTERNAL_MESH = True` to `/rmm/api/tacticalrmm/tacticalrmm/local_settings.py`
55+
5. Restart TRMM server.
4656

4757
!!!info
4858
Mesh usernames are **CaSe sEnSiTive**
4959

50-
## Customize Take Control Username
51-
52-
If you've enabled the Mesh "Ask Consent + Bar" display option that shows across the top when controlling a users machine and you'd like to change the name that users see, login to https://mesh.yourdomain.com, go to **Users**, select **User > Edit** `Real Name`
53-
5460
## Take Control Connect vs RDP Connect
5561

5662
![](images/2024-02-29-00-20-58.png)
@@ -102,18 +108,7 @@ sudo systemctl disable --now meshcentral mongod
102108

103109
Then when installing an agent, make sure to pass the `-nomesh` flag to the [installer](install_agent.md#optional-installer-args)
104110

105-
## Security Implications
106-
107-
Tactical RMM has a full permission module, but because of how Tactical RMM integrates with MeshCentral currently there is a permissions bypass atm. First, here's how Tactical RMM's integration works.
108-
109-
![Integration](images/meshintegrationhowitworks.png)
110-
111-
With that understanding, when you trigger any function in Tactical RMM that uses a MeshCentral function (Remote Control, or Remote background) the user gets the full admin login Auth token for logging into MeshCentral. If they then goto https://mesh.example.com they will see all agents and have full administrative permissions for everything in MeshCentral.
112-
113-
If you have multiple techs, and need to restrict their computer access permissions, right now you will need to disable auto login and manually manage your meshcentral users and computers. First you will need to:
111+
## OMG MeshCentral isn't maintained anymore!
114112

115-
1. Check the `Disable Auto Login for Remote Control and Remote background:` option.
116-
2. Manually login to MeshCentral, and manually create users and set their permissions/restrictions.
117-
3. All techs will then have to manually login to https://mesh.example.com daily so they can use Remote Control and the MeshCentral Remote Background features.
113+
MeshCentral is still [actively being maintained](https://meshcentral2.blogspot.com/2023/10/meshcentral-windows-arm64-nodejs-v11.html), the lead devs had jobs in which they were paid by a corporation to develop MeshCentral, they now have got other jobs which means they are supporting and developing MeshCentral in their free time (like alot of other projects) this means development is slower but not that it isn't maintained anymore. If this changes or it becomes necessary to fix something that breaks or packages needing updated we are prepared to begin maintaining our own fork. The features of MeshCentral that TRMM uses are only the 3 items above and are extremely mature.
118114

119-
It is planned at some point in the future for this to either be automated, or eliminated entirely. For now, you will need to handle this yourself.

0 commit comments

Comments
 (0)