首先是子网:
首先查看子网Get-DnsServerClientSubnet
如果对现有的子网进行增加及删除我们有了解到参数
-action add 是增加子网
-action remove是删除子网
首先是增加:set-dnsserverclientsubnet -name "USSubnet" -action add -IPv4Subnet "192.168.7.0/24"
然后是删除set-dnsserverclientsubnet -name "USSubnet" -action remove -IPv4Subnet "192.168.7.0/24"
当然删除子网的命令就简单了Remove-DnsServerClientSubnet -Name "SubnetName"
2.然后就是DNS区域查看:Get-DnsServerZoneScope -ZoneName "byssoft.com"
增加:add-DnsServerZoneScope -ZoneName "ZoneName"
删除:remove-DnsServerZoneScope -ZoneName "ZoneName"
3.DNS 区域记录:
首先查看Get-DnsServerResourceRecord -ZoneName "byssoft.com" -zonescope "USZoneScope"
增加:
编辑:修改IP地址
$Record = Get-DnsServerResourceRecord -ZoneName "byssoft.com" -Name "g" -ZoneScope "USZoneScope"
$NewRecord = $Record.Clone()
$NewRecord.RecordData.IPv4Address = ‘192.168.20.20‘
Set-DnsServerResourceRecord -ZoneName byssoft.com -ZoneScope "USZoneScope" -OldInputObject $Record -NewInputObject $NewRecord
删除:Remove-DnsServerResourceRecord -ZoneName "byssoft.com" -RRType "A" -name "g" -RecordData "192.168.20.20" -ZoneScope "USZoneScope"
原文地址:http://blog.51cto.com/gaowenlong/2085097