diff --git a/documentation/docs/pages/operators/orchestration/ansible.mdx b/documentation/docs/pages/operators/orchestration/ansible.mdx
index 8a2540797a..8d6016bbd7 100644
--- a/documentation/docs/pages/operators/orchestration/ansible.mdx
+++ b/documentation/docs/pages/operators/orchestration/ansible.mdx
@@ -267,7 +267,15 @@ ansible-playbook upgrade.yml -l "*exit*"
###### Role limit
-Sometimes you may want to run just one role at a time, for that use `-q`, for example:
+
+To update your exit policy by using the newest [NTM](https://github.com/nymtech/nym/blob/develop/scripts/nym-node-setup/network-tunnel-manager.sh) via Ansible, just run:
+```sh
+ansible-playbook deploy.yml -t network_tunnel_manager
+```
+This will download the script from `develop`, make executable and run it with the command `complete_networking_configuration`.
+
+
+Sometimes you may want to run just one tag at a time, for that use `-t` flag, for example:
```sh
# in case of wanting to run only quic deployment role
ansible-playbook deploy.yml -t quic
@@ -276,6 +284,14 @@ ansible-playbook deploy.yml -t quic
ansible-playbook deploy.yml -l node2 -t quic
```
+To list all tags, run:
+```sh
+ansible-playbook .yml --list-tags
+
+# for example
+ansible-playbook deploy.yml --list-tags
+```
+
###### nocows
Yes, by default there is a cow printed under each task, you can turn it off by opening `playbooks/ansible.cfg` and un-commenting the `nocows` line: