-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathNanoContainerExample.ps1
More file actions
78 lines (57 loc) · 2.45 KB
/
NanoContainerExample.ps1
File metadata and controls
78 lines (57 loc) · 2.45 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
75
76
77
78
Configuration NanoContainerExample {
<#
Requires the following DSC resources:
xNetworking: https://github.com/PowerShell/xNetworking
xPSDesiredStateConfiguration: https://github.com/PowerShell/xPSDesiredStateConfiguration
#>
param ()
Import-DscResource -Module xNetworking, xPSDesiredStateConfiguration;
node $AllNodes.Where({$true}).NodeName {
LocalConfigurationManager {
RebootNodeIfNeeded = $true;
AllowModuleOverwrite = $true;
ConfigurationMode = 'ApplyOnly';
CertificateID = $node.Thumbprint;
}
if (-not [System.String]::IsNullOrEmpty($node.IPAddress)) {
xIPAddress 'PrimaryIPAddress' {
IPAddress = $node.IPAddress;
InterfaceAlias = $node.InterfaceAlias;
#PrefixLength = $node.PrefixLength;
AddressFamily = $node.AddressFamily;
}
if (-not [System.String]::IsNullOrEmpty($node.DnsServerAddress)) {
xDnsServerAddress 'PrimaryDNSClient' {
Address = $node.DnsServerAddress;
InterfaceAlias = $node.InterfaceAlias;
AddressFamily = $node.AddressFamily;
}
}
if (-not [System.String]::IsNullOrEmpty($node.DefaultGateway)) {
xDefaultGatewayAddress 'PrimaryDefaultGateway' {
InterfaceAlias = $node.InterfaceAlias;
Address = $node.DefaultGateway;
AddressFamily = $node.AddressFamily;
}
}
} #end if IPAddress
xFirewall 'FPS-ICMP4-ERQ-In' {
Name = 'FPS-ICMP4-ERQ-In';
DisplayName = 'File and Printer Sharing (Echo Request - ICMPv4-In)';
Description = 'Echo request messages are sent as ping requests to other nodes.';
Direction = 'Inbound';
Action = 'Allow';
Enabled = 'True';
Profile = 'Any';
}
xFirewall 'FPS-ICMP6-ERQ-In' {
Name = 'FPS-ICMP6-ERQ-In';
DisplayName = 'File and Printer Sharing (Echo Request - ICMPv6-In)';
Description = 'Echo request messages are sent as ping requests to other nodes.';
Direction = 'Inbound';
Action = 'Allow';
Enabled = 'True';
Profile = 'Any';
}
} #end nodes ALL
} #end Configuration Example