From f2e379f10ae8b293fffb04210bd935ead4890e3e Mon Sep 17 00:00:00 2001 From: import this <97586125+serinko@users.noreply.github.com> Date: Fri, 22 May 2026 11:36:28 +0200 Subject: [PATCH] [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 --- .../docs/pages/operators/changelog.mdx | 74 ++++++++++++++++++- 1 file changed, 73 insertions(+), 1 deletion(-) diff --git a/documentation/docs/pages/operators/changelog.mdx b/documentation/docs/pages/operators/changelog.mdx index 4cfb438764..16f72c28ca 100644 --- a/documentation/docs/pages/operators/changelog.mdx +++ b/documentation/docs/pages/operators/changelog.mdx @@ -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 = () => ( ); - # 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 +## Operators Tools + +As the upcoming platform release has been posponed, we prepared this indenpendent release of tools and updates important for node operators. + + +[**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! + + +- [**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: + +
+ Manual steps, + <>Ansible, + ]} defaultIndex="0"> + + +- 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= ./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 +``` + + + + + + +- 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 +``` + + + + + +
+ +- [**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)