• Ssh()
    • 语法
    • 类别
    • 描述
    • 参数
    • 返回值
    • 错误
    • 示例

    Ssh()

    语法

    var ssh = new Ssh( <hostname>, <user>, [password], [port] )

    类别

    Ssh

    描述

    使用 SSH 方式连接主机。

    参数

    参数名参数类型默认值描述是否必填
    hostnamestring—-主机 IP 地址
    userstring—-主机用户名
    passwordstring主机用户名密码
    portint22主机端口

    返回值

    无返回值。

    错误

    如果出错则抛异常,并输出错误信息,可以通过getLastErrMsg()获取错误信息或通过getLastError()获取错误码。关于错误处理可以参考常见错误处理指南。

    常见错误可参考错误码。

    示例

    • 使用 SSH 方式连接主机。
    1. > var ssh = new Ssh( "192.168.20.71", "sdbadmin", "sdbadmin", 22 )