> For the complete documentation index, see [llms.txt](https://services.thequadblock.com/services/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://services.thequadblock.com/services/testnet/dymension/cli-cheatsheet/info-and-status.md).

# Info & Status

command for Information about node, validator and status

<table><thead><tr><th align="center">Function </th><th align="center">Command</th></tr></thead><tbody><tr><td align="center">Synchronize Information</td><td align="center"><p></p><pre class="language-sh"><code class="lang-sh">dymd status 2>&#x26;1 | jq .SyncInfo
</code></pre><p>or</p><pre class="language-sh" data-title="define your PORT first."><code class="lang-sh">curl -s localhost:${PORT}657/status | jq .result.sync_info
</code></pre></td></tr><tr><td align="center">Node Information</td><td align="center"><p></p><pre class="language-bash"><code class="lang-bash">dymd status 2>&#x26;1 | jq .NodeInfo
</code></pre></td></tr><tr><td align="center">Show Node ID</td><td align="center"><p></p><pre class="language-bash"><code class="lang-bash">dymd tendermint show-node-id
</code></pre></td></tr><tr><td align="center">Show Node Logs</td><td align="center"><p></p><pre class="language-bash"><code class="lang-bash">journalctl -fu dymd -o cat
</code></pre></td></tr><tr><td align="center">Get List of Connected Peers</td><td align="center"><p></p><pre class="language-bash" data-title="define your PORT first"><code class="lang-bash">curl -s http://localhost:$PORT/net_info | jq -r '.result.peers[] | "\(.node_info.id)@\(.remote_ip):\(.node_info.listen_addr)"' | awk -F ':' '{print $1":"$(NF)}'
</code></pre></td></tr><tr><td align="center">Check Peer ID and Port</td><td align="center"><p></p><pre class="language-bash" data-full-width="true"><code class="lang-bash">echo $(dymd tendermint show-node-id)'@'$(curl -s ifconfig.me)':'$(cat $HOME/.dymension/config/config.toml | sed -n '/Address to listen for incoming connection/{n;p;}' | sed 's/.*://; s/".*//')
</code></pre></td></tr></tbody></table>
