Connect Activity
The Connect activity establishes a secure connection to an SSH server. It enables users to authenticate and initiate a session for subsequent operations, facilitating remote command execution and file transfers.
| Field | Description | Requirement |
|---|---|---|
| Session name | Reference name of the session that will be connected. | Required |
| Username | The name of the user who will connect to the server. | Required |
| Password | The password of the user who will connect to the server. | Required |
| Host | The IP address of the server that will be connected. | Required |
| Port | The port number of the server that will be connected. | Optional |
Action Types & Examples
Session Name
- Format: String
- Example Result:
testSession
Username
- Format: String
- Example Result:
robusta
Password
- Format: String
- Example Result:
sifre12345
Host
- Format: String (IP Address)
- Example Result:
192.10.1.1
Port
- Format: Digit (Integer)
- Example Result:
22
Implementation Examples
Field Setup - Session name: testSession - Username: robusta - Password: sifre12345 - Host: 192.10.1.1 - Port: 22
Execution Parameters - Session name: testSession - Username: robusta - Password: sifre12345 - Host: 192.10.1.1 - Port: 22
Technical Notes
The default port for SSH connections is 22. Ensure network connectivity to the specified host and port for successful execution.