Versions Compared

Key

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

...

Create a SFTP User for Password Authentication

Step 1

From the UDMG navigation pane, select Management > Servers. The Servers list displays.

Step 2

Select an SFTP server, for example stonebranch-sftp-01.

The server details are populated on the Details tabs:

Image RemovedImage Added

Step 3

Click the Accounts tab.

Step 4Click the Add Account button.
Step 5

The Account Details displays:

  • In the Name field, enter stonebranch-01.
  • In the Password field, enter any value for instance ChangeMe.

Image RemovedImage Added

Step 6

Click the Save button.

The account is created and shows in the account list.

Image RemovedImage Added

Step 7

It's now possible to connect to the SFTP server with this account credentials:

Code Block
$  sftp -P 4000 stonebranch-01@0.0.0.0
stonebranch-01@0.0.0.0's password:
Connected to 0.0.0.0.
sftp> ls
sftp-01-in


...

Step 1Follow the above steps again to create another account stonebranch-sftp-02

If you don't already have a public key, generate a new SSH key for this account, for example:

Code Block
$ ssh-keygen -t rsa -b 4096 -C "stonebranch-02" -m PEM -N "" -f stonebranch-02
Generating public/private rsa key pair.
Your identification has been saved in stonebranch-02.
Your public key has been saved in stonebranch-02.pub.


Note
titleNote

The public key must be in PEM format.


Step 2From the UDMG navigation pane, select Management > Local Accounts. The Local Accounts list displays.
Step 3Select the SFTP server from the drop-down list, stonebranch-sftp-01.
Step 4

The list of accounts is refreshed with the accounts for that server.

Select the stonebranch-02 account.

The account details are populated in the Details pane

Image RemovedImage Added

Step 5Click the Certificates tab.
Step 6Click the Add Certificate button.
Step 7

The Certificate Details displays.

  • In the Name field, enter stb-02-pub.
  • In the Public Key field, select enter the user public key, for instance the content of the file stonebranch-02.pub:

Image RemovedImage Added

The fields can be resized for easier display, simply move up or down the resize grabber in the corner of the field.

Step 8

Click Save.

The SSH key is stored for this account and client connection can be performed with SSH key authentication.

Step 9

It's now possible to connect to the SFTP server with this account private key:

Code Block
$ sftp -i stonebranch-02 -P 4000 stonebranch-02@0.0.0.0
Connected to 0.0.0.0.
sftp> ls
sftp-01-in


...