diff --git a/docs/build/networks-faucets/public-networks.mdx b/docs/build/networks-faucets/public-networks.mdx index 7168022a3..ab90cf4eb 100644 --- a/docs/build/networks-faucets/public-networks.mdx +++ b/docs/build/networks-faucets/public-networks.mdx @@ -12,7 +12,7 @@ import VersionsTable from "@site/src/components/versions-table"; Here's a handy table containing all you need to know about the different Massa networks and their faucets. - + diff --git a/docs/node/all-configs.mdx b/docs/node/all-configs.mdx index f62ffbbd9..7e9edf783 100644 --- a/docs/node/all-configs.mdx +++ b/docs/node/all-configs.mdx @@ -21,7 +21,7 @@ the `massa-node/config/config.toml` file. - + ```toml EXTERNAL_MAINNET_NODE_CONFIG_CONTENT ``` @@ -41,7 +41,7 @@ the `massa-client/config/config.toml` file. - + ```toml EXTERNAL_MAINNET_CLIENT_CONFIG_CONTENT ``` diff --git a/docs/node/check_status.mdx b/docs/node/check_status.mdx new file mode 100644 index 000000000..abab9a34d --- /dev/null +++ b/docs/node/check_status.mdx @@ -0,0 +1,20 @@ +--- +id: check_status +sidebar_label: Check your node's status +--- + +# Check your node's status + +## Check your routability status + +You can use a service such as https://portchecker.co to check that the ports 31244 and 31245 are both opened for your public IP address. + +Additionally, in your massa-client, you can check that the `get_status` command shows your `Node's IP: `. +If it shows `No routable IP set` instead, please check again your configuration. + +## Make sure you are connected to peers + +In order for your node to be running properly, you have to make sure you are connected to other peers on the network. + +The `get_status` command will show you which nodes you are connected too. +You need to have both IN and OUT connections. diff --git a/docs/node/stake.mdx b/docs/node/stake.mdx index dec33dc98..ee7702741 100644 --- a/docs/node/stake.mdx +++ b/docs/node/stake.mdx @@ -88,3 +88,9 @@ them, again check with: ```shell wallet_info ``` + +## What next ? + +Congratulations, you followed all the steps to be part of the Massa adventure! + +You should now check the status of your setup: [Check your node's status](/docs/node/check_status). diff --git a/sidebars.js b/sidebars.js index d10eadec6..4aab3d68e 100644 --- a/sidebars.js +++ b/sidebars.js @@ -394,6 +394,11 @@ const sidebars = { id: "node/stake", label: "Staking", }, + { + type: "doc", + id: "node/check_status", + label: "Checking the node's status", + }, { type: "doc", id: "node/all-configs",
🔗 Public API