Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Beginning with release 3.1, file transfers must be performed using SFTP on port 2024. Use the following steps as a guide (default login/password is sftpadmin/sftpadminyou can use any CLI account in the Administrator group):

  1. From the source SBC, login to Linux shell using sftpadmin/sftpadmin and change directory to where the file is located.

  2. Connect to target SBC. In this example, SBXa is the source and SBXb is the target SBC.

    Code Block
    languagenone
    sftpadmin@SBXa$ sftp -oPort=2024 sftpadmin@SBXb
    Connecting to SBXb
    sftpadmin@SBXb's password: sftpadmin<password>
    Connected to SBXb
  3. Use the put command to transfer a file to the specified directory as shown in the example below.

    Code Block
    languagenone
    sftp> put sbc-V03.01.00-R000.x86_64.tar.gz /opt/sonus/external

...