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"
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。