...
An example of an SSHFS client is GNOME Files on Linux (see the example below). There are also ports of this functionality to both Windows and macOS though they don't ship with it out of the box.
...
unimelb for staff e.g. unimelb:sclaus
student for students e.g. student:jfrost
- token if using a Secure identity token
Local account
If your account is a local account (i.e. you are not using your institutional account), you will have been provided with the details for domain, user and password. Your username is of the form domain:username, e.g. local:dwho
...
For UoM central accounts or local accounts can use the domain:username or domain/username syntax for the sFTP username. For University of Melbourne Staff:
Code Block | ||
---|---|---|
| ||
sftp -o User=unimelb:sclaus mediaflux.researchsoftware.unimelb.edu.au |
or
Code Block | ||
---|---|---|
| ||
sftp unimelb/sclaus@mediaflux.researchsoftware.unimelb.edu.au |
...
For University of Melbourne students:
Code Block | ||
---|---|---|
| ||
sftp -o User=student:astudent mediaflux.researchsoftware.unimelb.edu.au |
or
Code Block | ||
---|---|---|
| ||
sftp student/astudent@mediaflux.researchsoftware.unimelb.edu.au |
...
To log in with a local account, on the alternate port of 9003:
Code Block | ||
---|---|---|
| ||
sftp -P 9003 -o User=local:nkilleen mediaflux.researchsoftware.unimelb.edu.au
|
or
Code Block | ||
---|---|---|
| ||
sftp -P 9003local/nkilleen@mediaflux.researchsoftware.unimelb.edu.au |
Log in with a Secure Identity Token
Code Block | ||
---|---|---|
| ||
sftp -o User=token:<your token> mediaflux.researchsoftware.unimelb.edu.au |
or
Code Block |
---|
sftp local/nkilleen@mediaflux.researchsoftware.unimelb.edu.au |
...
Put in your credentials, based on the Username Format section and click Connect.
...