那今天没我就来说说相关记录的编辑操作

时间:2021-11-08 04:19:39

标签:windows server 2016   DNS   

Windows Server 2016 智能DNS(四)
我们前面几篇文章介绍了如何Windows Server 2016 智能DNS的相关配置介绍,今天继续介绍Windows Server 2016 智能DNS的配置打点,前面我们介绍了按照本身的需求来配置相关成果,但是对付配置的相关命令我们如何改削呢?固然既然有创建,,必定会有相关的编纂、删除命令,那今天没我就来说说相关记录的编纂操纵。

首先是子网:
首先检察子网
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"

那今天没我就来说说相关记录的编辑操作


那今天没我就来说说相关记录的编辑操作

Windows Server 2016 智能DNS(四)

标签:windows server 2016   DNS