SSH2-Handler

From wiki.amiga.org
Revision as of 12:35, 12 September 2018 by Admin (talk | contribs) (Created page with "=Introduction= SSH2-Handler is filesystem for accessing files remotely using the SFTP protocol. It is based on libssh2 1.8.0 and uses AmiSSLv4 for SSL encryption /decryption....")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Introduction

SSH2-Handler is filesystem for accessing files remotely using the SFTP protocol. It is based on libssh2 1.8.0 and uses AmiSSLv4 for SSL encryption /decryption.

It is part of the Enhancer Software for OS4.


Requirements

- newlib.library V53.40 or newer (or V53.30 as included in 4.1 FE).

- filesysbox.library 54.4 or newer.

- AmiSSLv4 (available under Packages tab in Updater tool)


Usage

Create a DOSDriver with the following contents:


Handler   = L:ssh2-handler
StackSize = 65536
Priority  = 5
GlobVec   = -1
Startup   = "'''<args>'''"

Where <args> should follow the template:

HOSTADDR/A,PORT/N/K,USER/A,PASSWORD,VOLUME,READONLY/S,NOSSHAGENT/S,KEYFILE/K,ROOTDIR/K

HOSTADDR is the IP address or domain name of the SSH server.

PORT is the port number (defaults to 22).

USER is the user name.

PASSWORD is the login password or key file passphrase depending on the authentication method used. If this argument is left out a password requester will be used instead.

VOLUME is the AmigaDOS volume name (defaults to <user>@<hostaddr>).

READONLY sets the filesystem to read only mode.

NOSSHAGENT stops filesystem from attempting to connect to ssh-agent.

KEYFILE can be used to change the key file used for public key authentication (defaults to "$HOME/.ssh/id_rsa" or "HOME:.ssh/id_rsa").

ROOTDIR sets the root directory to use as the root of the volume (defaults to "/").

To connect to a SFTP server with IP 192.168.1.16 and port 122 using username "user123" use:

Startup = "192.168.1.16 PORT 122 user123"

If you want the handler to be started immediately on mount, rather than on the first access, then make sure that ACTIVATE=1 is set in either in the icon tooltypes or in the DOSDriver file itself.