-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathconfig.conf.example
More file actions
37 lines (30 loc) · 935 Bytes
/
config.conf.example
File metadata and controls
37 lines (30 loc) · 935 Bytes
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
#ssh auth method (pass\key)
auth_method: "pass"
#Login and password.
Login: "backup"
Password: "SecurePA$$WD"
#Number of simultaneous connections
#default 30
threads: 30
#ssh private key file (RSA or DSA)
# '\'' needs to be escaped with '\'
# '~' is not permited
#For example, private_key_file: "d:\\ssh-keys\\id_rsa"
#or private_key_file: ../.ssh/id_rsa
private_key_file: "../.ssh/id_rsa"
#Backup storage path
# \ needs to be escaped with \!
#For example, backup_pth: "d:\\backups\\mikrotik"
backup_pth: "c:\\temp\\backup"
#Binary backup encryption (yes\no) (available from ROS 6.13)
encrypt: "no"
#Binary backup password protection.
#If password is not set, recovery available only
#on routrer where backup was created.
backup_passwd: "SecurePA$$WD"
#Email notification settings
smtp_server: "smtp.gmail.com:587"
smtp_login: "test@example.com"
smtp_paswd: "passwd"
email_from: "test@example.com"
email_to: "admin@example.com"