docs: fix unsupported languages

This commit is contained in:
Johannes Kirschbauer
2024-04-10 18:40:07 +02:00
parent 6aec3ac73d
commit d292f2de98
6 changed files with 32 additions and 32 deletions

View File

@@ -24,7 +24,7 @@ crucial.
};
```
3. **Update the Controller Machine**: Execute the following:
```console
```bash
$ clan machines update <CONTROLLER>
```
Your machine is now operational as the VPN controller.
@@ -43,24 +43,24 @@ To introduce a new machine to the VPN, adhere to the following steps:
}
```
2. **Update the New Machine**: Execute:
```console
```bash
$ clan machines update <NEW_MACHINE>
```
Replace `<NEW_MACHINE>` with the designated new machine name.
3. **Retrieve the ZeroTier ID**: On the `new_machine`, execute:
```console
```bash
$ sudo zerotier-cli info
```
Example Output: `200 info d2c71971db 1.12.1 OFFLINE`, where `d2c71971db` is
the ZeroTier ID.
4. **Authorize the New Machine on Controller**: On the controller machine,
execute:
```console
```bash
$ sudo zerotier-members allow <ID>
```
Substitute `<ID>` with the ZeroTier ID obtained previously.
5. **Verify Connection**: On the `new_machine`, re-execute:
```console
```bash
$ sudo zerotier-cli info
```
The status should now be "ONLINE" e.g., `200 info 47303517ef 1.12.1 ONLINE`.