-
Notifications
You must be signed in to change notification settings - Fork 0
/
devices.json.example
37 lines (36 loc) · 1.15 KB
/
devices.json.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"device1-keypair-auth": {
"DEVICE_NAME": "Mikrotik-A",
"DEVICE_IP": "192.168.22.1",
"DEVICE_PORT": 5522,
"DEVICE_USERNAME": "admin-backup",
"DEVICE_PASSWORD": "",
"DEVICE_SSHKEY": "~/.ssh/id_rsa",
"DEVICE_ROS7": false,
"SSH_OPTIONS": "-oPubkeyAcceptedAlgorithms=+ssh-rsa",
"BASE_PATH": "./backups/Device-A",
"EXPORT": true,
"EXPORT_TERSE": true,
"EXPORT_VERBOSE": true,
"EXPORT_COMPACT": true,
"BACKUP": true,
"BACKUP_PASSWORD": "backuppassword"
},
"device2-password-auth": {
"DEVICE_NAME": "Another-Mikrotik-Device",
"DEVICE_IP": "192.168.22.22",
"DEVICE_PORT": 22,
"DEVICE_USERNAME": "backup-user",
"DEVICE_PASSWORD": "Astrongdeviceepassword",
"DEVICE_ROS7": true,
"SSH_OPTIONS": "-oPubkeyAcceptedAlgorithms=+ssh-rsa",
"DEVICE_SSHKEY": "~/.ssh/id_rsa",
"BASE_PATH": "./backups/Device-B",
"EXPORT": true,
"EXPORT_TERSE": true,
"EXPORT_VERBOSE": true,
"EXPORT_COMPACT": true,
"BACKUP": true,
"BACKUP_PASSWORD": null
}
}