[DOCs/operators]: Indenpendent devrel tool release (#6809)
* operators updates * placeholding reminder for later * new component import * correct comment syntax * turtle beats the rabbitai * syntax fix * syntax fix * rm platform release and finish pr * fix header
This commit is contained in:
@@ -16,6 +16,8 @@ import { Steps } from 'nextra/components';
|
||||
import AbuseResponse from 'components/operators/templates/dmca_response.md';
|
||||
import OperatorIntroduction from 'components/operators/templates/provider_introduction.md';
|
||||
import QuicDeploymentSteps from 'components/operators/snippets/quic-bridge-deployment-script-setup.mdx';
|
||||
import NTMExplanation from 'components/operators/snippets/ntm-accordion-explanation.mdx';
|
||||
|
||||
|
||||
|
||||
export const TestingSteps = () => (
|
||||
@@ -48,7 +50,6 @@ export const LoadEndpointInfo = () => (
|
||||
</div>
|
||||
);
|
||||
|
||||
|
||||
# Changelog
|
||||
|
||||
This page displays a full list of all the changes during our release cycle from `v2024.3-eclipse` onward. Operators can find here the newest updates together with links to relevant documentation. The list is sorted so that the newest changes appear first.
|
||||
@@ -57,6 +58,77 @@ This page displays a full list of all the changes during our release cycle from
|
||||
|
||||
<VarInfo />
|
||||
|
||||
## Operators Tools
|
||||
|
||||
As the upcoming platform release has been posponed, we prepared this indenpendent release of tools and updates important for node operators.
|
||||
|
||||
<Callout type="error" emoji="🚨">
|
||||
[**Security steps required**](/operators/troubleshooting/vps-isp#security-patch-copyfail--dirtyfrag): Several critical [Linux kernel vulnerabilities](https://ubuntu.com/blog/copy-fail-vulnerability-fixes-available) had been disclosed. Check out your servers and if needed apply required mitigations!
|
||||
</Callout>
|
||||
|
||||
- [**NIP-11 - NTM updated: Telegram voice and video call works now!**](https://github.com/nymtech/nym/pull/6807) Please re-run [Nym network tunnel manager](https://raw.githubusercontent.com/nymtech/nym/refs/heads/develop/scripts/nym-node-setup/network-tunnel-manager.sh) (NTM) on your hosting servers:
|
||||
|
||||
<div>
|
||||
<Tabs items={[
|
||||
<>Manual steps</>,
|
||||
<>Ansible</>,
|
||||
]} defaultIndex="0">
|
||||
<MyTab>
|
||||
<Steps>
|
||||
- Get the latest version of NTM
|
||||
|
||||
```sh
|
||||
curl -L "https://raw.githubusercontent.com/nymtech/nym/refs/heads/develop/scripts/nym-node-setup/network-tunnel-manager.sh" -o network-tunnel-manager.sh && chmod +x ./network-tunnel-manager.sh
|
||||
```
|
||||
|
||||
- Run NTM (Standard SSH on port 22 (default)):
|
||||
```sh
|
||||
./network-tunnel-manager.sh complete_networking_configuration
|
||||
```
|
||||
|
||||
- Run NTM on non-standard SSH port:
|
||||
```sh
|
||||
HOST_SSH_PORT=<PORT> ./network-tunnel-manager.sh complete_networking_configuration
|
||||
|
||||
# example - replace 2222 with your actual port:
|
||||
# HOST_SSH_PORT=2222 ./network-tunnel-manager.sh complete_networking_configuration
|
||||
```
|
||||
|
||||
<NTMExplanation />
|
||||
</Steps>
|
||||
</MyTab>
|
||||
<MyTab>
|
||||
<Steps>
|
||||
- Navigate to your Nym node Ansible directory with all playbooks (`/playbooks`)
|
||||
|
||||
- For safety start only with one node:
|
||||
```sh
|
||||
ansible-playbook deploy.yml -t ntm -l node1
|
||||
```
|
||||
|
||||
- Check if everything worked smooth and the node works on VPN
|
||||
|
||||
- Run on all machines in your inventory
|
||||
```sh
|
||||
ansible-playbook deploy.yml -t ntm
|
||||
```
|
||||
|
||||
<NTMExplanation />
|
||||
</Steps>
|
||||
</MyTab>
|
||||
</Tabs>
|
||||
</div>
|
||||
|
||||
- [**New docs**](https://github.com/nymtech/nym/pull/6716): Max's leg work on [exit services documentation](/network/infrastructure/exit-services), [`Mixfetch`](/developers/mix-fetch) and [`smolmix`](/developers/smolmix)
|
||||
|
||||
### Operators UX Improvements
|
||||
|
||||
- [NTM: Split IPv4 / IPv6 uplinks](https://github.com/nymtech/nym/pull/6640): Now NTM can work with different uplink interfaces for IPv4 and IPv6
|
||||
|
||||
- [Nym Node CLI: Split IPv4 / IPv6 uplinks](https://github.com/nymtech/nym/pull/6743): `nym-node-cli.py` uplinks sync up with NTM
|
||||
|
||||
- [NTM & Nym Node CLI: Alternative SSH port](https://github.com/nymtech/nym/pull/6633): Operators can use these tools with `HOST_SSH_PORT` allowing them to define any alternative port instead of only using hard-coded 22
|
||||
|
||||
## `v2026.9-venaco`
|
||||
|
||||
- [Release Binaries](https://github.com/nymtech/nym/releases/tag/nym-binaries-v2026.9-venaco)
|
||||
|
||||
Reference in New Issue
Block a user