Main Content

setSSHPort

R2026b

Set SSH port number

Since R2023b

    Description

    setSSHPort(tg, Portnumber) sets the specified SSH port number to connect to the target computer.

    example

    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");

    Set the port number.

    tg.setSSHPort(12345);

    Input Arguments

    collapse all

    Target computer for the deployed application, specified as a linuxTarget object. The object provides access to methods that manipulate the target computer properties.

    Example: tg

    Specify the SSH port number to connect to the target computer. By default, port number 22 is used to connect to the target computer. Other valid port numbers that can be specified are from 1024 to 65535.

    Example: myTargetHandle

    Version History

    Introduced in R2023b