![Digi TransPort LR54-AA401 User Manual Download Page 88](http://html.mh-extra.com/html/digi/transport-lr54-aa401/transport-lr54-aa401_user-manual_2496484088.webp)
Upload and download files
TransPort LR User Guide
124
Upload and download files
You can download and upload files from and to a TLR device, using utilities such as Secure Copy (SCP),
SSH File Transfer Protocol (SFTP), or an SFTP application such as FileZilla.
Upload files using SCP
To upload a file to a TLR device using SCP, the syntax is as follows:
scp
filename username@ip_address:filename
This example uploads a file named
script.py
to TLR device
192.168.1.1
:
$ scp script.py [email protected]:script.py
Password:
script.py
100%
3728
0.3KB/s
00:00
Download files using SCP
To download a file from a TLR device using SCP, the syntax is as follows:
scp username@
ip_address:filename filename
This example downloads a file named
config.da0
from TLR device
192.168.1.1
using the username
john
to the local directory:
$ scp [email protected]:config.da0 config.da0
Password:
config.da0
100%
254
0.3KB/s
00:00
Upload files using SFTP
This example uploads a file named
lr54-1.0.2.10.bin
to TLR device
192.168.1.1
using the username
john
:
$ sftp [email protected]
Password:
Connected to 192.168.1.1
sftp> put lr54-1.0.2.10.bin
Uploading lr54-1.0.2.10.bin to lr54-1.0.2.10.bin
lr54-1.0.2.10.bin
100%
24M 830.4KB/s
00:00
sftp> exit
$
Download files using SFTP
This example downloads a file named
config.da0
from TLR device
192.168.1.1
using the username
john
to the local directory:
$ sftp [email protected]
Password:
Connected to 192.168.1.1
sftp> get config.da0
Fetching config.da0 to config.da0