-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsample_rules.xml
More file actions
68 lines (68 loc) · 2.11 KB
/
sample_rules.xml
File metadata and controls
68 lines (68 loc) · 2.11 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
<?xml version="1.0" encoding="utf-8"?>
<FirewallRules>
<Rule>
<Name>Sample Web Server HTTP</Name>
<Description>Allow HTTP traffic on port 80</Description>
<Direction>Inbound</Direction>
<Action>Allow</Action>
<Protocol>TCP</Protocol>
<LocalPort>80</LocalPort>
<RemotePort>Any</RemotePort>
<LocalAddress>Any</LocalAddress>
<RemoteAddress>Any</RemoteAddress>
<Profile>Domain,Private,Public</Profile>
<Enabled>true</Enabled>
</Rule>
<Rule>
<Name>Sample Web Server HTTPS</Name>
<Description>Allow HTTPS traffic on port 443</Description>
<Direction>Inbound</Direction>
<Action>Allow</Action>
<Protocol>TCP</Protocol>
<LocalPort>443</LocalPort>
<RemotePort>Any</RemotePort>
<LocalAddress>Any</LocalAddress>
<RemoteAddress>Any</RemoteAddress>
<Profile>Domain,Private,Public</Profile>
<Enabled>true</Enabled>
</Rule>
<Rule>
<Name>Sample FTP Server</Name>
<Description>Allow FTP traffic on port 21</Description>
<Direction>Inbound</Direction>
<Action>Allow</Action>
<Protocol>TCP</Protocol>
<LocalPort>21</LocalPort>
<RemotePort>Any</RemotePort>
<LocalAddress>Any</LocalAddress>
<RemoteAddress>Any</RemoteAddress>
<Profile>Private</Profile>
<Enabled>true</Enabled>
</Rule>
<Rule>
<Name>Sample SSH Server</Name>
<Description>Allow SSH traffic on port 22</Description>
<Direction>Inbound</Direction>
<Action>Allow</Action>
<Protocol>TCP</Protocol>
<LocalPort>22</LocalPort>
<RemotePort>Any</RemotePort>
<LocalAddress>Any</LocalAddress>
<RemoteAddress>192.168.1.0/24</RemoteAddress>
<Profile>Private</Profile>
<Enabled>false</Enabled>
</Rule>
<Rule>
<Name>Sample Game Server UDP</Name>
<Description>Allow game traffic on UDP port 7777</Description>
<Direction>Inbound</Direction>
<Action>Allow</Action>
<Protocol>UDP</Protocol>
<LocalPort>7777</LocalPort>
<RemotePort>Any</RemotePort>
<LocalAddress>Any</LocalAddress>
<RemoteAddress>Any</RemoteAddress>
<Profile>Private,Public</Profile>
<Enabled>true</Enabled>
</Rule>
</FirewallRules>