만들기 및 구성 논리 네트워크 및 IP 주소 풀 (스크립트)
게시 날짜: 2016년 7월
적용 대상: System Center 2012 R2 Virtual Machine Manager, System Center 2012 - Virtual Machine Manager
모델 그룹화 함께 서브넷 및 Vlan으로 필요한 비즈니스에 맞춰 정렬 인식할 수 있는 범주에 따라 네트워크에 네트워크 관리자를 사용 하는 논리 네트워크가 있습니다. 새 논리 네트워크를 만든 후 논리 네트워크에 IP 서브넷 및 Vlan을 할당 하려면 네트워크 사이트 라고도, 논리 네트워크 정의 사용 합니다.
고정 IP 주소 풀을 만들고 하나 이상의 호스트 그룹에 연결할 수 있습니다. 고정 IP 주소 풀을 만든 후 수 DNS 서버를 사용 하 여 추가한는 집합 SCStaticIPAddressPool cmdlet입니다.
네트워킹을 구성 하는 방법에 대 한 자세한 내용은 System Center 2012 – Virtual Machine Manager, 참조 VMM에서 네트워킹 구성합니다.
다음 스크립트를 만들고 논리 네트워크와 정적 IP 주소 풀을 구성 합니다. 스크립트는 시애틀을 이라는 호스트 그룹을 이미 만들었다고 가정 합니다.
# Description: This script creates a logical network and then creates a logical
# network definition that it applies it to the logical network.
# The script then creates a static IP address pool, associates
# the pool with a host group, and adds DNS servers.
# Create a logical network.
$LogicalNetwork = New-SCLogicalNetwork -Name "FrontEnd"
# Create a logical network definition and associate it with the new logical network.
$HostGroup = Get-SCVMHostGroup | where { $_.Path -eq "All Hosts\Seattle" }
$SubnetVLAN = New-SCSubnetVLAN -Subnet "10.0.0.1/24" -VLAN 25
$LogNetDef = New-SCLogicalNetworkDefinition -Name "Logical Network Definition for Seattle" -LogicalNetwork $LogicalNetwork -VMHostGroup $HostGroup -SubnetVLAN $SubnetVLAN
# Create a static IP address pool and associate it with a host group.
$HostGroup = Get-SCVMHostGroup | where { $_.Path -eq "All Hosts\New York\Production" }
$DefaultGateway = New-SCDefaultGateway -IPAddress "10.0.0.1" -Metric 10
$IPPool = New-SCStaticIPAddressPool -LogicalNetworkDefinition $LogNetDef -Name "Production IP Address Pool" -Description "This IP address pool is for production use in Seattle." -Subnet "10.0.0.0/24" -IPAddressRangeStart "10.0.0.10" -IPAddressRangeEnd "10.0.0.99" -IPAddressReservedSet "10.0.0.25-10.0.0.35, 10.0.0.38" -VIPAddressSet "10.0.0.95-10.0.0.99" -DNSSuffix "domain.contoso.com" -DNSSearchSuffix domain1.contoso.com, domain2.contoso.com -DNSServer "10.0.0.1", "10.0.0.2" -WINSServer "10.0.0.1", "10.0.0.2" -DefaultGateway $DefaultGateway -EnableNetBIOS $True
# Add DNS servers to the static IP address pool.
$DNSServerIPAddress = $IPPool.DNSServers
$DNSServerIPAddress += "10.0.0.5"
Set-SCStaticIPAddressPool -StaticIPAddressPool $IPPool -DNSServer $DNSServerIPAddress
참고 항목
새 SCLogicalNetwork
새 SCLogicalNetworkDefinition
새 SCStaticIPAddressPool
집합 SCStaticIPAddressPool