diff --git a/docs/node/initial.mdx b/docs/node/initial.mdx index 92ca07c1e..890586177 100644 --- a/docs/node/initial.mdx +++ b/docs/node/initial.mdx @@ -239,3 +239,48 @@ node_get_staking_addresses ``` Now you can leave the node running, and it will start producing blocks just after Genesis! + +## Step 4: Checking 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 routable IP. + +```shell +get_status +``` + +### Check your node staking address + +You can check that the staking address you obtain with the following command in massa-client: + +```shell +node_get_staking_addresses +``` + +is present in the initial staker lists, available in `massa/massa-node/base_config/initial_rolls.json`. + +### 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 node you are connected too: +```shell +get_status +``` + + + + + + + + + + + + + +