PluginProbe ʕ •ᴥ•ʔ
JetBackup – Backup, Restore & Migrate / trunk
JetBackup – Backup, Restore & Migrate vtrunk
3.1.22.4 3.1.22.3 1.4.3 1.4.4 1.4.5 1.4.6 1.4.7 1.4.8 1.4.8.1 1.4.9 1.5.0 1.5.1 1.5.1.1 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.6.0 1.6.10 1.6.11 1.6.12 1.6.13 1.6.15 1.6.5.1 1.6.8.8 1.6.9 1.6.9.1 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7.5 2.0.8.7 2.0.9.11 2.0.9.14 2.0.9.15 2.0.9.6 2.0.9.7 2.0.9.9 3.1.10.7 3.1.11.1 3.1.12.3 3.1.13.4 3.1.14.17 3.1.15.4 3.1.16.1 3.1.17.5 3.1.18.10 3.1.18.8 3.1.18.9 3.1.19.8 3.1.20.3 3.1.21.3 3.1.7.9 3.1.9.2 trunk 1.1.90 1.1.91 1.2.0 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.6 1.3.7 1.3.8 1.3.9 1.4.0 1.4.1 1.4.2
backup / public / views / destinations / SFTP.htm
backup / public / views / destinations Last commit date
Box.htm 1 year ago DropBox.htm 1 year ago FTP.htm 1 year ago GoogleDrive.htm 1 year ago JetStorage.htm 1 year ago Local.htm 1 year ago OneDrive.htm 1 year ago S3.htm 1 year ago SFTP.htm 1 year ago pCloud.htm 1 year ago
SFTP.htm
51 lines
1 <div ng-controller="destinationSFTP">
2
3 <div class="form-group row">
4 <label for="sftp_remote_host" class="col-sm-3 col-form-label jb-label">{{ lang.t("Remote Host") }}</label>
5 <div class="col-sm-7">
6 <input type="text" class="form-control jb-input jb-grey-0" id="sftp_remote_host" name="sftp_remote_host" ng-model="saveData.options.host">
7 <p class="pd-3">{{ lang.t("Enter the hostname or IP address of the SFTP server you wish to connect to for backup storage. Example: FTP.example.com or 192.0.2.1") }}</p>
8 </div>
9 </div>
10
11 <div class="form-group row">
12 <label for="sftp_port" class="col-sm-3 col-form-label jb-label">{{ lang.t("Port") }}</label>
13 <div class="col-sm-7">
14 <input type="number" class="form-control jb-input jb-grey-0" id="sftp_port" name="sftp_port" ng-model="saveData.options.port">
15 <p class="pd-3">{{ lang.t("Specify the port number used to connect to the SFTP server. The default SFTP port is 21, but this may differ if your server uses a custom configuration.") }}</p>
16 </div>
17 </div>
18
19 <div class="form-group row">
20 <label for="sftp_username" class="col-sm-3 col-form-label jb-label">{{ lang.t("Remote Username") }}</label>
21 <div class="col-sm-7">
22 <input type="text" class="form-control jb-input jb-grey-0" id="sftp_username" name="sftp_username" ng-model="saveData.options.username">
23 <p class="pd-3">{{ lang.t("Enter the username for authentication with the SFTP server. This user must have the necessary permissions to access and write to the specified backup directory.") }}</p>
24 </div>
25 </div>
26
27 <div class="form-group row">
28 <label for="sftp_password" class="col-sm-3 col-form-label jb-label">{{ lang.t("Remote Password") }}</label>
29 <div class="col-sm-7">
30 <input type="password" class="form-control jb-input jb-grey-0" id="sftp_password" name="sftp_password" ng-model="saveData.options.password" value="{{$saveData.options.password}}">
31 <p class="pd-3">{{ lang.t("Provide the password for the specified username. Ensure this password is kept secure to prevent unauthorized access to your backups.") }}</p>
32 </div>
33 </div>
34
35 <div class="form-group row">
36 <label for="sftp_timeout" class="col-sm-3 col-form-label jb-label">{{ lang.t("Connection Timeout") }}</label>
37 <div class="col-sm-7">
38 <input type="number" class="form-control jb-input jb-grey-0" id="sftp_timeout" name="sftp_timeout" ng-model="saveData.options.timeout">
39 <p class="pd-3">{{ lang.t("Set the maximum time (in seconds) the system should wait for a connection to the SFTP server before timing out. Increase this if you experience connection issues, especially over slow networks.") }}</p>
40 </div>
41 </div>
42
43 <div class="form-group row">
44 <label for="sftp_retries" class="col-sm-3 col-form-label jb-label">{{ lang.t("Connection Retries") }}</label>
45 <div class="col-sm-7">
46 <input type="number" min="0" max="10" class="form-control jb-input jb-grey-0" id="sftp_retries" name="sftp_retries" ng-model="saveData.options.retries">
47 <p class="pd-3">{{ lang.t("Specify the number of times the system should attempt to reconnect to the SFTP server if the initial connection fails. A higher number of retries can be useful in unstable network conditions.") }}</p>
48 </div>
49 </div>
50
51 </div>