-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathconfig.example.json
43 lines (43 loc) · 1020 Bytes
/
config.example.json
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
38
39
40
41
42
43
[
{
"name": "net_1",
"description": "Network 1",
"subnet": "192.0.0.0/27",
"email": "[email protected]",
"notifications": ["unknown-device", "wrong-hostname", "vulnerability"],
"monitoring": "all",
"hosts": [
{
"hostname": "router.domain.com",
"ip": "192.0.0.33",
"exclude": ["vulnerability", "mac", "hostname"]
},
{
"hostname": "mail.domain.com",
"ip": "192.0.0.35",
"mac": "90:31:4D:3D:AE:BF",
"email": "[email protected]"
}
]
},
{
"name": "net_2",
"description": "Network 2",
"subnet": "192.168.0.0/27",
"email": "[email protected]",
"monitoring": "list-only",
"exclude": "mac",
"hosts": [
{
"hostname": "office-computer.domain.com",
"ip": "192.168.0.2",
"email": "[email protected]"
},
{
"hostname": "office-printer.domain.com",
"ip": "192.168.0.10",
"email": "[email protected]"
}
]
}
]