nodes_restart_all
Restart all VPN nodes to resolve connectivity issues, apply configuration changes, or perform system maintenance on the Remnawave panel.
Instructions
Restart all nodes
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/nodes.ts:218-229 (handler)The tool 'nodes_restart_all' is registered and implemented within src/tools/nodes.ts. It calls the client's 'restartAllNodes' method.
server.tool( 'nodes_restart_all', 'Restart all nodes', {}, async () => { try { const result = await client.restartAllNodes(); return toolResult(result); } catch (e) { return toolError(e); } },