Difference between revisions of "SSH"

From HSYCO
Jump to navigation Jump to search
Line 124: Line 124:
 
{{tip|In the following examples, we assume that the id of the SSH I/O Server is "ssh".}}
 
{{tip|In the following examples, we assume that the id of the SSH I/O Server is "ssh".}}
  
 +
=== Remote Command Execution ===
  
Reboot a remote system at midnight
+
Reboot a remote system at midnight.
  
 
<syntaxhighlight lang="javascript">
 
<syntaxhighlight lang="javascript">
Line 131: Line 132:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
 +
=== File Transfer ===
  
At midnight, copy HSYCO's internal database backup to a remote server
+
At midnight, copy HSYCO's internal database backup to a remote server.
  
 
<syntaxhighlight lang="javascript">
 
<syntaxhighlight lang="javascript">
Line 138: Line 140:
 
io ssh.put = "data_backup/hsyco.properties /tmp/data_backup/hsyco.properties",
 
io ssh.put = "data_backup/hsyco.properties /tmp/data_backup/hsyco.properties",
 
io ssh.put = "data_backup/hsyco.script /tmp/data_backup/hsyco.script"
 
io ssh.put = "data_backup/hsyco.script /tmp/data_backup/hsyco.script"
 +
</syntaxhighlight>
 +
 +
=== Interactive Remote Command Project ===
 +
 +
Create a simple interactive command console in HSYCO.
 +
 +
 +
[[File:SSH_example_inteactive_command_interface.png|border|600px|center]]
 +
 +
'''The project's file'''
 +
 +
<syntaxhighlight lang="text">
 +
(#skin blue)
 +
(#language it)
 +
(#size 980x640)
 +
(#style body-background-color=#FF00FF; pages-background-color=#770077)
 +
(#uiset $exec.eraseicon=true)
 +
 +
(header SSH)
 +
 +
(menu)
 +
(text!stderr r5c3;; (width:600px; text-align:left; height:400px; font-family:Courier New, Courier, monospace))
 +
(text!stdout r5c3;; (width:600px; text-align:left; height:400px; overflow:auto; font-family:Courier New, Courier, monospace))
 +
(input!$exec r4c3; (width:600px; font-family:Courier New, Courier, monospace); input)
 +
(text r1c1; $; font-size:200px)
 +
(text!exitcode r4c9;; font-size:24px)
 +
(endofmenu)
 +
</syntaxhighlight>
 +
 +
 +
'''Events logic'''
 +
 +
<syntaxhighlight lang="javascript">
 +
user "$exec" : io ssh.exec = $exec, uiset "$exec.focus" = true
 +
io ssh.out : uiset stdout.text = io ssh.out
 +
io ssh.err : uiset stderr.text = io ssh.err
 +
io ssh.exec : uiset exitcode.text = io ssh.exec
 
</syntaxhighlight>
 
</syntaxhighlight>
  

Revision as of 13:55, 15 February 2014

Secure Shell (SSH) is a cryptographic network protocol for secure data communication, remote command-line login, remote command execution, and other secure network services between two networked computers that connects, via a secure channel over an insecure network, a server and a client (running SSH server and SSH client programs, respectively).

The best-known application of the protocol is for access to shell accounts on Unix-like operating systems, but it can also be used in a similar fashion for accounts on Windows.

It was designed as a replacement for Telnet and other insecure remote shell protocols, which send information, notably passwords, in plaintext, rendering them susceptible to interception and disclosure using packet analysis.

The encryption used by SSH is intended to provide confidentiality and integrity of data over an unsecured network, such as the Internet.

The SSH I/O Server implements the SSH-2 version of the protocol, and supports remote command execution and the SCP protocol for bidirectional file transfer. It uses HSYCO data points to execute commands and return command status, making it easy to use the SSH protocol in EVENTS, as well as JavaScript and Java.

The SSH I/O Server establishes a single SSH connection to the server, using password-based authentication, and creates individual sessions to execute single commands.

Note Commands are executed sequentially, not in parallel.

SSH Remote Server Configuration

The remote system should be configured to accept the SSH connection from the HSYCO server using the username and password defined in the I/O Server’s options.

If you need to execute operating system’s commands with superuser privileges (with the sudo program), the remote user name defined with the user option in the SSH I/O Server configuration must be allowed to execute “sudo” commands without asking for a password.

For example, if the user is hsyco, you could add the line:

hsyco ALL=(ALL:ALL) NOPASSWD: ALL

at the end of the /etc/sudoers file (use the visudo command to edit the /etc/sudoers file).

HSYCO Configuration

Options

ID Default Values Description
stdout true true when a remote command is executed, generate IO events containing the command's standard output and standard error streams
false do not generate IO events of the command's output and error streams

Datapoints

ID Value R/W Description
connection online R connection established
offline R HSYCO can't connect to the remote SSH server
exec command string W executes the command passed as value
exit status R
  • the command's exit status number
  • "error" if the command could not be sent to the remote server
  • "null" if the remote server failed to return an exit status code (some SSH servers do not return the exit status)
err error stream R the executed command standard error stream, with lines separated by "<br>", or an empty string if the command's error stream is empty
out error stream R the executed command standard output stream, with lines separated by "<br>", or an empty string if the command's output stream is empty
get source destination W retrieves the remote source file and writes it locally to the destination path name.
The source and destination string in value should be separated by one or more spaces.
Always use the "/" character as path separator.
Use "\" as the escape character if the file names have spaces.
The destination directory must exist and cannot be outside of the HSYCO's base directory, or the command will fail. If the destination name doesn't have a path, the file will be written to the HSYCO's base directory
number of transferred bytes, or "error" R
  • the total number of transferred bytes (should be equal to the actual file size)
  • "error" if the file transfer failed
put source destination W copy the local source file to the remote server's destination path name.
The source and destination string in value should be separated by one or more spaces.
Always use the "/" character as path separator.
Use "\" as the escape character if the file names have spaces.
The source directory must exist and cannot be outside of the HSYCO's base directory, or the command will fail. If the source name doesn't have a path, the file will be written to the HSYCO's base directory.
The file will be saved to the remote server with 600 (owner's only read and write) permission
number of transferred bytes, or "error" R
  • the total number of transferred bytes (should be equal to the actual file size)
  • "error" if the file transfer failed


Note The exec, err, out, get and put data points will trigger the IO events at the end of the command's execution even if the value is not changed. This allows you to easily intercept the exit status and other return information.

Examples

Note In the following examples, we assume that the id of the SSH I/O Server is "ssh".

Remote Command Execution

Reboot a remote system at midnight.

TIME 0000 : IO ssh.exec = "sudo reboot"

File Transfer

At midnight, copy HSYCO's internal database backup to a remote server.

init : 	io ssh.put = "data_backup/hsyco.data /tmp/data_backup/hsyco.data",
	io ssh.put = "data_backup/hsyco.properties /tmp/data_backup/hsyco.properties",
	io ssh.put = "data_backup/hsyco.script /tmp/data_backup/hsyco.script"

Interactive Remote Command Project

Create a simple interactive command console in HSYCO.


SSH example inteactive command interface.png

The project's file

(#skin blue)
(#language it)
(#size 980x640)
(#style body-background-color=#FF00FF; pages-background-color=#770077)
(#uiset $exec.eraseicon=true)

(header SSH)

(menu)
	(text!stderr r5c3;; (width:600px; text-align:left; height:400px; font-family:Courier New, Courier, monospace))
	(text!stdout r5c3;; (width:600px; text-align:left; height:400px; overflow:auto; font-family:Courier New, Courier, monospace))
	(input!$exec r4c3; (width:600px; font-family:Courier New, Courier, monospace); input)
	(text r1c1; $; font-size:200px)
	(text!exitcode r4c9;; font-size:24px)
(endofmenu)


Events logic

user "$exec" : io ssh.exec = $exec, uiset "$exec.focus" = true
io ssh.out : uiset stdout.text = io ssh.out
io ssh.err : uiset stderr.text = io ssh.err
io ssh.exec : uiset exitcode.text = io ssh.exec

Release Notes

3.3.0

  • initial release


HSYCO and Home Systems Consulting are registered trademarks of Home Systems Consulting SpA. Java and JavaScript are registered trademarks of Oracle and/or its affiliates. ARTECO is a registered trademark of Arteco Srl. Other products or company names can be trademarks or registered trademarks of other companies and are used for demonstrative purposes only, with no violation intent.