-
Notifications
You must be signed in to change notification settings - Fork 28
/
macOS Firewall (com.apple.security.firewall).json
97 lines (97 loc) · 3.78 KB
/
macOS Firewall (com.apple.security.firewall).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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"title": "macOS Firewall (com.apple.security.firewall)",
"description": "Available in macOS 10.12 and later. A Firewall payload manages the Application Firewall settings accessible in the Security Preferences pane. https://developer.apple.com/business/documentation/Configuration-Profile-Reference.pdf https://support.apple.com/en-us/HT201642",
"__feedback": "[email protected]",
"properties": {
"EnableFirewall": {
"title": "Enable Firewall",
"description": "Required. Whether the firewall should be enabled or not.",
"property_order": 10,
"options": {
"infoText": "Key name: EnableFirewall"
},
"type": "boolean"
},
"BlockAllIncoming": {
"title": "Block All Incoming",
"description": "Optional. Corresponds to the 'Block all incoming connections' option.",
"property_order": 20,
"options": {
"infoText": "Key name: BlockAllIncoming"
},
"type": "boolean"
},
"EnableLogging": {
"title": "Enable Logging",
"description": "Required with Logging Option. Enables logging for use with Logging Options.",
"property_order": 30,
"options": {
"infoText": "Key name: EnableLogging"
},
"type": "boolean",
"links": [
{
"rel": "Device Management Profile - Firewall",
"href": "https://developer.apple.com/documentation/devicemanagement/firewall?changes=latest_minor"
}
]
},
"LoggingOption": {
"title": "Logging Option",
"description": "Required with Enable Logging. Enable Logging must be set to true. Selects the log level for logging",
"property_order": 40,
"type": "string",
"options": {
"enum_titles": [
"Throttled",
"Brief",
"Detailed"
],
"infoText": "Key name: LoggingOption"
},
"links": [
{
"rel": "Device Management Profile - Firewall",
"href": "https://developer.apple.com/documentation/devicemanagement/firewall?changes=latest_minor"
}
],
"enum": [
"throttled",
"brief",
"detail"
]
},
"EnableStealthMode": {
"title": "Enable Stealth Mode",
"description": "Optional. Corresponds to 'Enable stealth mode.'",
"property_order": 50,
"options": {
"infoText": "Key name: EnableStealthMode"
},
"type": "boolean"
},
"Applications": {
"title": "Applications",
"description": "Optional. A list of applications explicitly allowing or denying incoming connections. Applications that are signed by a valid certificate authority are automatically added to the list of allowed apps, rather than prompting the user to authorize them.",
"property_order": 60,
"options": {
"infoText": "Key name: Applications"
},
"type": "array",
"items": {
"type": "object",
"properties": {
"BundleID": {
"title": "Application Bundle ID",
"type": "string"
},
"Allowed": {
"title": "Allowed",
"type": "boolean"
}
}
}
}
},
"required": ["EnableFirewall"]
}