ssh

Main API of the ssh application

Interface module for the ssh application.

SSH

For application dependencies see ssh(6) Supported SSH version is 2.0. Supported public key algorithms: ssh-rsa and ssh-dss. Supported MAC algorithms: hmac-sha2-256 and hmac-sha1. Supported encryption algorithms: aes128-ctr, aes128-cb and 3des-cbc. Supported key exchange algorithms: diffie-hellman-group1-sha1, diffie-hellman-group14-sha1, diffie-hellman-group-exchange-sha1 and diffie-hellman-group-exchange-sha256. Supported compression algorithms: none, zlib, zlib@openssh.com, Supports unicode filenames if the emulator and the underlaying OS support it. See section DESCRIPTION in the file manual page in kernel for information about this subject. Supports unicode in shell and CLI.

DATA TYPES

Type definitions that are used more than once in this module, or abstractions to indicate the intended use of the data type, or both:

boolean() =

true | false

string() =

[byte()]

ssh_daemon_ref() =

opaque() - as returned by ssh:daemon/[1,2,3]

ssh_connection_ref() =

opaque() - as returned by ssh:connect/3

ip_address() =

inet::ip_address

subsystem_spec() =

{subsystem_name(), {channel_callback(), channel_init_args()}}

subsystem_name() =

string()

channel_callback() =

atom() - Name of the Erlang module implementing the subsystem using the ssh_channel behavior, see ssh_channel(3)

channel_init_args() =

list()

algs_list() =

list( alg_entry() )

alg_entry() =

{kex, simple_algs()} | {public_key, simple_algs()} | {cipher, double_algs()} | {mac, double_algs()} | {compression, double_algs()}

simple_algs() =

list( atom() )

double_algs() =

[{client2serverlist,simple_algs()},{server2client,simple_algs()}] | simple_algs()

Functions


close(ConnectionRef) -> ok

  • ConnectionRef = ssh_connection_ref()

Closes an SSH connection.

connect(Host, Port, Options) ->

connect(Host, Port, Options, Timeout) -> {ok, ssh_connection_ref()} | {error, Reason}

  • Host = string()
  • Port = integer()
  • 22 is default, the assigned well-known port number for SSH.
  • Options = [{Option, Value}]
  • Timeout = infinity | integer()
  • Negotiation time-out in milli-seconds. The default value is infinity. For connection time-out, use option {connect_timeout, timeout()}.

Connects to an SSH server. No channel is started. This is done by calling ssh_connection:session_channel/[2, 4].

Options:

{inet, inet | inet6}

IP version to use.

{user_dir, string()}

Sets the user directory, that is, the directory containing ssh configuration files for the user, such as known_hosts, id_rsa, id_dsa, and authorized_key. Defaults to the directory normally referred to as ~/.ssh.

{dsa_pass_phrase, string()}

If the user DSA key is protected by a passphrase, it can be supplied with this option.

{rsa_pass_phrase, string()}

If the user RSA key is protected by a passphrase, it can be supplied with this option.

{silently_accept_hosts, boolean()}

When true, hosts are added to the file known_hosts without asking the user. Defaults to false.

{user_interaction, boolean()}

If false, disables the client to connect to the server if any user interaction is needed, such as accepting the server to be added to the known_hosts file, or supplying a password. Defaults to true. Even if user interaction is allowed it can be suppressed by other options, such as silently_accept_hosts and password. However, those optins are not always desirable to use from a security point of view.

{disconnectfun, fun(Reason:term()) -> _}

Provides a fun to implement your own logging when a server disconnects the client.

{unexpectedfun, fun(Message:term(), Peer) -> report | skip }

Provides a fun to implement your own logging or other action when an unexpected message arrives. If the fun returns report the usual info report is issued but if skip is returned no report is generated.

Peer is in the format of {Host,Port}.

{public_key_alg, 'ssh-rsa' | 'ssh-dss'}

Note!

This option is kept for compatibility. It is ignored if the preferred_algorithms option is used. The equivalence of {public_key_alg,'ssh-dss'} is {preferred_algorithms, [{public_key,['ssh-dss','ssh-rsa']}]}.

Sets the preferred public key algorithm to use for user authentication. If the preferred algorithm fails, the other algorithm is tried. The default is to try 'ssh-rsa' first.

{pref_public_key_algs, list()}

Note!

This option is kept for compatibility. It is ignored if the preferred_algorithms option is used. The equivalence of {pref_public_key_algs,['ssh-dss']} is {preferred_algorithms, [{public_key,['ssh-dss']}]}.

List of public key algorithms to try to use. 'ssh-rsa' and 'ssh-dss' are available. Overrides {public_key_alg, 'ssh-rsa' | 'ssh-dss'}

{preferred_algorithms, algs_list()}

List of algorithms to use in the algorithm negotiation. The default algs_list() can be obtained from default_algorithms/0.

Here is an example of this option:

{preferred_algorithms, [{public_key,['ssh-rsa','ssh-dss']}, {cipher,[{client2server,['aes128-ctr']}, {server2client,['aes128-cbc','3des-cbc']}]}, {mac,['hmac-sha2-256','hmac-sha1']}, {compression,[none,zlib]} }

The example specifies different algorithms in the two directions (client2server and server2client), for cipher but specifies the same algorithms for mac and compression in both directions. The kex (key exchange) and public key algorithms are set to their default values, kex is implicit but public_key is set explicitly.

Warning!

Changing the values can make a connection less secure. Do not change unless you know exactly what you are doing. If you do not understand the values then you are not supposed to change them.

{dh_gex_limits,{Min=integer(),I=integer(),Max=integer()}}

Sets the three diffie-hellman-group-exchange parameters that guides the connected server in choosing a group. See RFC 4419 for the function of thoose. The default value is {512, 1024, 4096}.

{connect_timeout, timeout()}

Sets a time-out on the transport layer connection. For gen_tcp the time is in milli-seconds and the default value is infinity.

{user, string()}

Provides a username. If this option is not given, ssh reads from the environment (LOGNAME or USER on UNIX, USERNAME on Windows).

{password, string()}

Provides a password for password authentication. If this option is not given, the user is asked for a password, if the password authentication method is attempted.

{key_cb, atom()}

Module implementing the behaviour ssh_client_key_api. Can be used to customize the handling of public keys.

{quiet_mode, atom() = boolean()}

If true, the client does not print anything on authorization.

{id_string, random | string()}

The string that the client presents to a connected server initially. The default value is "Erlang/VSN" where VSN is the ssh application version number.

The value random will cause a random string to be created at each connection attempt. This is to make it a bit more difficult for a malicious peer to find the ssh software brand and version.

{fd, file_descriptor()}

Allows an existing file descriptor to be used (by passing it on to the transport protocol).

{rekey_limit, integer()}

Provides, in bytes, when rekeying is to be initiated. Defaults to once per each GB and once per hour.

{idle_time, integer()}

Sets a time-out on a connection when no channels are active. Defaults to infinity.

{ssh_msg_debug_fun, fun(ConnectionRef::ssh_connection_ref(), AlwaysDisplay::boolean(), Msg::binary(), LanguageTag::binary()) -> _}

Provide a fun to implement your own logging of the SSH message SSH_MSG_DEBUG. The last three parameters are from the message, see RFC4253, section 11.3. The ConnectionRef is the reference to the connection on which the message arrived. The return value from the fun is not checked.

The default behaviour is ignore the message. To get a printout for each message with AlwaysDisplay = true, use for example {ssh_msg_debug_fun, fun(_,true,M,_)-> io:format("DEBUG: ~p~n", [M]) end}

connection_info(ConnectionRef, [Option]) ->[{Option, Value}]

  • Option = client_version | server_version | user | peer | sockname
  • Value = [option_value()]
  • option_value() = {{Major::integer(), Minor::integer()}, VersionString::string()} | User::string() | Peer::{inet:hostname(), {inet::ip_adress(), inet::port_number()}} | Sockname::{inet::ip_adress(), inet::port_number()}

Retrieves information about a connection.

daemon(Port) ->

daemon(Port, Options) ->

daemon(HostAddress, Port, Options) -> {ok, ssh_daemon_ref()} | {error, atom()}

  • Port = integer()
  • HostAddress = ip_address() | any
  • Options = [{Option, Value}]
  • Option = atom()
  • Value = term()

Starts a server listening for SSH connections on the given port.

Options:

{inet, inet | inet6}

IP version to use when the host address is specified as any.

{subsystems, [subsystem_spec()]}

Provides specifications for handling of subsystems. The "sftp" subsystem specification is retrieved by calling ssh_sftpd:subsystem_spec/1. If the subsystems option is not present, the value of [ssh_sftpd:subsystem_spec([])] is used. The option can be set to the empty list if you do not want the daemon to run any subsystems.

{shell, {Module, Function, Args} | fun(string() = User) - > pid() | fun(string() = User, ip_address() = PeerAddr) -> pid()}

Defines the read-eval-print loop used when a shell is requested by the client. The default is to use the Erlang shell: {shell, start, []}

{ssh_cli, {channel_callback(), channel_init_args()} | no_cli}

Provides your own CLI implementation, that is, a channel callback module that implements a shell and command execution. The shell read-eval-print loop can be customized, using the option shell. This means less work than implementing an own CLI channel. If set to no_cli, the CLI channels are disabled and only subsystem channels are allowed.

{user_dir, string()}

Sets the user directory. That is, the directory containing ssh configuration files for the user, such as known_hosts, id_rsa, id_dsa, and authorized_key. Defaults to the directory normally referred to as ~/.ssh.

{system_dir, string()}

Sets the system directory, containing the host key files that identify the host keys for ssh. Defaults to /etc/ssh. For security reasons, this directory is normally accessible only to the root user.

{auth_methods, string()}

Comma-separated string that determines which authentication methods that the server is to support and in what order they are tried. Defaults to "publickey,keyboard-interactive,password"

{auth_method_kb_interactive_data, PromptTexts}
where:
PromptTexts = kb_int_tuple() | fun(Peer::{IP::tuple(),Port::integer()}, User::string(), Service::string()) -> kb_int_tuple()
kb_int_tuple() = {Name::string(), Instruction::string(), Prompt::string(), Echo::boolean()}

Sets the text strings that the daemon sends to the client for presentation to the user when using keyboar-interactive authentication. If the fun/3 is used, it is called when the actual authentication occurs and may therefore return dynamic data like time, remote ip etc.

The parameter Echo guides the client about need to hide the password.

The default value is: {auth_method_kb_interactive_data, {"SSH server", "Enter password for \""++User++"\"", "password: ", false}>

{user_passwords, [{string() = User, string() = Password}]}

Provides passwords for password authentication. The passwords are used when someone tries to connect to the server and public key user-authentication fails. The option provides a list of valid usernames and the corresponding passwords.

{password, string()}

Provides a global password that authenticates any user. From a security perspective this option makes the server very vulnerable.

{preferred_algorithms, algs_list()}

List of algorithms to use in the algorithm negotiation. The default algs_list() can be obtained from default_algorithms/0.

Here is an example of this option:

{preferred_algorithms, [{public_key,['ssh-rsa','ssh-dss']}, {cipher,[{client2server,['aes128-ctr']}, {server2client,['aes128-cbc','3des-cbc']}]}, {mac,['hmac-sha2-256','hmac-sha1']}, {compression,[none,zlib]} }

The example specifies different algorithms in the two directions (client2server and server2client), for cipher but specifies the same algorithms for mac and compression in both directions. The kex (key exchange) and public key algorithms are set to their default values, kex is implicit but public_key is set explicitly.

Warning!

Changing the values can make a connection less secure. Do not change unless you know exactly what you are doing. If you do not understand the values then you are not supposed to change them.

{dh_gex_groups, [{Size=integer(),G=integer(),P=integer()}] | {file,filename()} }

Sets the groups that the server may choose among when diffie-hellman-group-exchange is negotiated. See RFC 4419 for details.

If the parameter is {file,filename()}, the file must exist and have one or more three-tuples terminated by a dot. The interpretation is as if the tuples had been given directly in the option. The file is read when the daemon starts.

{pwdfun, fun(User::string(), password::string()) -> boolean()}

Provides a function for password validation. This function is called with user and password as strings, and returns true if the password is valid and false otherwise.

{negotiation_timeout, integer()}

Maximum time in milliseconds for the authentication negotiation. Defaults to 120000 (2 minutes). If the client fails to log in within this time, the connection is closed.

{max_sessions, pos_integer()}

The maximum number of simultaneous sessions that are accepted at any time for this daemon. This includes sessions that are being authorized. Thus, if set to N, and N clients have connected but not started the login process, connection attempt N+1 is aborted. If N connections are authenticated and still logged in, no more logins are accepted until one of the existing ones log out.

The counter is per listening port. Thus, if two daemons are started, one with {max_sessions,N} and the other with {max_sessions,M}, in total N+M connections are accepted for the whole ssh application.

Notice that if parallel_login is false, only one client at a time can be in the authentication phase.

By default, this option is not set. This means that the number is not limited.

{parallel_login, boolean()}

If set to false (the default value), only one login is handled at a time. If set to true, an unlimited number of login attempts are allowed simultaneously.

If the max_sessions option is set to N and parallel_login is set to true, the maximum number of simultaneous login attempts at any time is limited to N-K, where K is the number of authenticated connections present at this daemon.

Warning!

Do not enable parallel_logins without protecting the server by other means, for example, by the max_sessions option or a firewall configuration. If set to true, there is no protection against DOS attacks.

{minimal_remote_max_packet_size, non_negative_integer()}

The least maximum packet size that the daemon will accept in channel open requests from the client. The default value is 0.

{id_string, random | string()}

The string the daemon will present to a connecting peer initially. The default value is "Erlang/VSN" where VSN is the ssh application version number.

The value random will cause a random string to be created at each connection attempt. This is to make it a bit more difficult for a malicious peer to find the ssh software brand and version.

{key_cb, atom()}

Module implementing the behaviour ssh_server_key_api. Can be used to customize the handling of public keys.

{profile, atom()}

Used together with ip-address and port to uniquely identify a ssh daemon. This can be useful in a virtualized environment, where there can be more that one server that has the same ip-address and port. If this property is not explicitly set, it is assumed that the the ip-address and port uniquely identifies the SSH daemon.

{fd, file_descriptor()}

Allows an existing file-descriptor to be used (passed on to the transport protocol).

{failfun, fun(User::string(), PeerAddress::ip_address(), Reason::term()) -> _}

Provides a fun to implement your own logging when a user fails to authenticate.

{connectfun, fun(User::string(), PeerAddress::ip_address(), Method::string()) ->_}

Provides a fun to implement your own logging when a user authenticates to the server.

{disconnectfun, fun(Reason:term()) -> _}

Provides a fun to implement your own logging when a user disconnects from the server.

{unexpectedfun, fun(Message:term(), Peer) -> report | skip }

Provides a fun to implement your own logging or other action when an unexpected message arrives. If the fun returns report the usual info report is issued but if skip is returned no report is generated.

Peer is in the format of {Host,Port}.

{ssh_msg_debug_fun, fun(ConnectionRef::ssh_connection_ref(), AlwaysDisplay::boolean(), Msg::binary(), LanguageTag::binary()) -> _}

Provide a fun to implement your own logging of the SSH message SSH_MSG_DEBUG. The last three parameters are from the message, see RFC4253, section 11.3. The ConnectionRef is the reference to the connection on which the message arrived. The return value from the fun is not checked.

The default behaviour is ignore the message. To get a printout for each message with AlwaysDisplay = true, use for example {ssh_msg_debug_fun, fun(_,true,M,_)-> io:format("DEBUG: ~p~n", [M]) end}

default_algorithms() -> algs_list()

Returns a key-value list, where the keys are the different types of algorithms and the values are the algorithms themselves. An example:

20> ssh:default_algorithms(). [{kex,['diffie-hellman-group1-sha1']}, {public_key,['ssh-rsa','ssh-dss']}, {cipher,[{client2server,['aes128-ctr','aes128-cbc','3des-cbc']}, {server2client,['aes128-ctr','aes128-cbc','3des-cbc']}]}, {mac,[{client2server,['hmac-sha2-256','hmac-sha1']}, {server2client,['hmac-sha2-256','hmac-sha1']}]}, {compression,[{client2server,[none,zlib]}, {server2client,[none,zlib]}]}] 21>

shell(Host) ->

shell(Host, Option) ->

shell(Host, Port, Option) -> _

  • Host = string()
  • Port = integer()
  • Options - see ssh:connect/3

Starts an interactive shell over an SSH server on the given Host. The function waits for user input, and does not return until the remote shell is ended (that is, exit from the shell).

start() ->

start(Type) -> ok | {error, Reason}

  • Type = permanent | transient | temporary
  • Reason = term()

Utility function that starts the applications crypto, public_key, and ssh. Default type is temporary. For more information, see the application(3) manual page in kernel.

stop() -> ok | {error, Reason}

  • Reason = term()

Stops the ssh application. For more information, see the application(3) manual page in kernel.

stop_daemon(DaemonRef) ->

stop_daemon(Address, Port) -> ok

  • DaemonRef = ssh_daemon_ref()
  • Address = ip_address()
  • Port = integer()

Stops the listener and all connections started by the listener.

stop_listener(DaemonRef) ->

stop_listener(Address, Port) -> ok

  • DaemonRef = ssh_daemon_ref()
  • Address = ip_address()
  • Port = integer()

Stops the listener, but leaves existing connections started by the listener operational.