Skip to content

Instantly share code, notes, and snippets.

@DexterPOSH
Last active September 28, 2017 11:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DexterPOSH/f496826e62bc2f5cad42d181fcd65fc7 to your computer and use it in GitHub Desktop.
Save DexterPOSH/f496826e62bc2f5cad42d181fcd65fc7 to your computer and use it in GitHub Desktop.
@{
AllNodes = @(
@{
# common node information hashtable
NodeName = '*'; # do not edit
SETTeamName = 'S2DSwitch'; # <Edit> name of the SET team
DomainDCs = @('testad.Test.lab') # <edit> the DC names (can be a single value)
DNSServers = @('testad.Test.lab') # <edit> the DNS names (can be a single value)
Domain = 'test.lab' # <edit> the domain name
ClusterName = 'r740-mid-s2d-cluster' # <edit> the cluster name,
},
@{
NodeName = 'r740-mid-n2' # <edit> name of the node
NetworkConfig = @(
@{
Name = 'vEthernet (management)'; # <edit> the name of the vNIC for management
IPv4Address = '172.18.47.2'; # <edit> the IPv4 address assigned on the vNIC
Type = 'Management'; # Do not edit
},
@{
Name = 'vEthernet (storage1)'; # <edit> the name of the vNIC for storage
IPv4Address = '172.18.75.2'; # <edit> the IPv4 address assigned on the vNIC
Type = 'Storage'; # Do not edit
},
@{
Name = 'vEthernet (storage2)'; # <edit> the name of the vNIC for storage
IPv4Address = '172.18.115.2'; # <edit> the IPv4 address assigned on the vNIC
Type = 'Storage'; # Do not edit
}
)
},
@{
NodeName = 'r740-mid-n3' # <edit> name of the node
NetworkConfig = @(
@{
Name = 'vEthernet (management)'; # <edit> the name of the vNIC for management
IPv4Address = '172.18.47.3'; # <edit> the IPv4 address assigned on the vNIC
Type = 'Management'; # Do not edit
},
@{
Name = 'vEthernet (storage1)'; # <edit> the name of the vNIC for storage
IPv4Address = '172.18.75.3'; # <edit> the IPv4 address assigned on the vNIC
Type = 'Storage'; # Do not edit
},
@{
Name = 'vEthernet (storage2)'; # <edit> the name of the vNIC for storage
IPv4Address = '172.18.115.3'; # <edit> the IPv4 address assigned on the vNIC
Type = 'Storage'; # Do not edit
}
)
},
@{
NodeName = 'r740-mid-n4' # <edit> name of the node
NetworkConfig = @(
@{
Name = 'vEthernet (management)'; # <edit> the name of the vNIC for management
IPv4Address = '172.18.47.4'; # <edit> the IPv4 address assigned on the vNIC
Type = 'Management'; # Do not edit
},
@{
Name = 'vEthernet (storage1)'; # <edit> the name of the vNIC for storage
IPv4Address = '172.18.75.4'; # <edit> the IPv4 address assigned on the vNIC
Type = 'Storage'; # Do not edit
},
@{
Name = 'vEthernet (storage2)'; # <edit> the name of the vNIC for storage
IPv4Address = '172.18.115.4'; # <edit> the IPv4 address assigned on the vNIC
Type = 'Storage'; # Do not edit
}
)
}
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment