-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFW_Template_fw_xops_setup.json
More file actions
47 lines (47 loc) · 1.1 KB
/
Copy pathFW_Template_fw_xops_setup.json
File metadata and controls
47 lines (47 loc) · 1.1 KB
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
44
45
46
47
// Template to push Sophos XOPS Setup to firewall(s)
// It is structured as follow.
//{
// "Firewall": "172.16.16.16",
// "ATPValues": {
// "InspectContent": "all",
// "ThreatProtectionStatus": "Enable",
// "HostException": [
// "Quad9 DNS 02 IPv4",
// "RFC 1918 A CLASS",
// "RFC 1918 B CLASS"
// ],
// "ThreatException": [
// "8.8.8.8",
// "menaces-a-exclure.net"
// ],
// "Policy": "Log and Drop"
// }
//}
// Examples
//{
// "Firewall": "172.16.16.16",
// "ATPValues": {
// "ThreatProtectionStatus": "Enable",
// "ThreatException": ["222.333.4.5",<Destination_ip_or domain name #02>],
// "Policy": "<Log and Drop>",
// "HostException": ["172.16.24.1","Workstation 01"],
// "InspectContent": "untrusted"
// }
//}
{
"Firewall": "172.16.16.16",
"ATPValues": {
"InspectContent": "all",
"ThreatProtectionStatus": "Enable",
"HostException": [
"Quad9 DNS 02 IPv4",
"RFC 1918 A CLASS",
"RFC 1918 B CLASS"
],
"ThreatException": [
"8.8.8.8",
"menaces-a-exclure.net"
],
"Policy": "Log and Drop"
}
}