-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_rules.json
More file actions
74 lines (74 loc) · 1.87 KB
/
sample_rules.json
File metadata and controls
74 lines (74 loc) · 1.87 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
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
{
"exportInfo": {
"version": "1.0",
"exportDate": "2024-01-15T10:30:00Z",
"totalRules": 5
},
"rules": [
{
"name": "Sample Web Server HTTP",
"description": "Allow HTTP traffic on port 80",
"direction": "Inbound",
"action": "Allow",
"protocol": "TCP",
"localPort": "80",
"remotePort": "Any",
"localAddress": "Any",
"remoteAddress": "Any",
"profile": "Domain,Private,Public",
"enabled": true
},
{
"name": "Sample Web Server HTTPS",
"description": "Allow HTTPS traffic on port 443",
"direction": "Inbound",
"action": "Allow",
"protocol": "TCP",
"localPort": "443",
"remotePort": "Any",
"localAddress": "Any",
"remoteAddress": "Any",
"profile": "Domain,Private,Public",
"enabled": true
},
{
"name": "Sample FTP Server",
"description": "Allow FTP traffic on port 21",
"direction": "Inbound",
"action": "Allow",
"protocol": "TCP",
"localPort": "21",
"remotePort": "Any",
"localAddress": "Any",
"remoteAddress": "Any",
"profile": "Private",
"enabled": true
},
{
"name": "Sample SSH Server",
"description": "Allow SSH traffic on port 22",
"direction": "Inbound",
"action": "Allow",
"protocol": "TCP",
"localPort": "22",
"remotePort": "Any",
"localAddress": "Any",
"remoteAddress": "192.168.1.0/24",
"profile": "Private",
"enabled": false
},
{
"name": "Sample Game Server UDP",
"description": "Allow game traffic on UDP port 7777",
"direction": "Inbound",
"action": "Allow",
"protocol": "UDP",
"localPort": "7777",
"remotePort": "Any",
"localAddress": "Any",
"remoteAddress": "Any",
"profile": "Private,Public",
"enabled": true
}
]
}