ssh_disconnect
Terminate an active SSH connection to a remote server by specifying its connection ID, freeing up resources and closing the secure session.
Instructions
Disconnect from an SSH server
Input Schema
Name | Required | Description | Default |
---|---|---|---|
connectionId | Yes | Connection ID to disconnect |
Input Schema (JSON Schema)
{
"properties": {
"connectionId": {
"description": "Connection ID to disconnect",
"type": "string"
}
},
"required": [
"connectionId"
],
"type": "object"
}