From 264e06c50092a653983f549ac33634b0f34b5fd3 Mon Sep 17 00:00:00 2001 From: Daniel Magro Date: Wed, 21 Feb 2024 13:44:04 +0000 Subject: [PATCH 1/2] Update paratime-node.mdx Updated p2p.port config path and default value --- docs/node/run-your-node/paratime-node.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/node/run-your-node/paratime-node.mdx b/docs/node/run-your-node/paratime-node.mdx index ceceecbb7f..a3707adcdc 100644 --- a/docs/node/run-your-node/paratime-node.mdx +++ b/docs/node/run-your-node/paratime-node.mdx @@ -332,7 +332,7 @@ Before using this configuration you should collect the following information to :::caution -Make sure the `worker.p2p.port` (default: `9200`) port is exposed and publicly +Make sure the `p2p.port` (default: `30002`) port is exposed and publicly accessible on the internet (for `TCP` traffic). ::: From 534a5623258ad668f7b5f5ac8e25c9a564be7c3b Mon Sep 17 00:00:00 2001 From: Daniel Magro Date: Wed, 21 Feb 2024 14:02:51 +0000 Subject: [PATCH 2/2] Update paratime-node.mdx Updated example config provided to match the defaults --- docs/node/run-your-node/paratime-node.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/node/run-your-node/paratime-node.mdx b/docs/node/run-your-node/paratime-node.mdx index a3707adcdc..0188e8b600 100644 --- a/docs/node/run-your-node/paratime-node.mdx +++ b/docs/node/run-your-node/paratime-node.mdx @@ -294,12 +294,12 @@ ias: p2p: # External P2P configuration. - port: 30002 + port: 9200 registration: addresses: # The external IP that is used when registering this node to the # network. - - {{ external_address }}:30002 + - {{ external_address }}:9200 seeds: # List of seed nodes to connect to. # NOTE: You can add additional seed nodes to this list if you want. @@ -332,7 +332,7 @@ Before using this configuration you should collect the following information to :::caution -Make sure the `p2p.port` (default: `30002`) port is exposed and publicly +Make sure the `p2p.port` (default: `9200`) port is exposed and publicly accessible on the internet (for `TCP` traffic). :::