Main Content

getSSHPort

Get port number connected to target computer

Since R2023b

    Description

    example

    PortNumber = getSSHPort(tg) returns the SSH port number connected to the target computer.

    Examples

    collapse all

    Create a target object and add a target with name LinuxTarget1 containing user name user1 and password myPassword.

    tgs = linux.Targets();
    tg = tgs.addTarget("LinuxTarget1", "178.10.10.1", "user1", "myPassword");

    Get the port number connected to the target computer.

    portNumber = getSSHPort(tg);

    Input Arguments

    collapse all

    Object represents a target computer. Use the object to establish the connection with Linux target, to deploy the applications on Linux target, and perform several other actions.

    Example: myTargetHandle

    Output Arguments

    collapse all

    Returns the SSH port number connected to the target computer.

    Example: 22

    Version History

    Introduced in R2023b