静的IPv6アドレスを持つServer2019ホストがあります。 Microsoft Windows 10に機能を追加 これは2019年にも存在し、ホストは静的IPアドレスとDHCPアドレスの両方を持つことができるようです。この機能はデフォルトで有効になっています。
C:\Windows\system32>netsh interface ipv6 show interfaces 3
Interface Ethernet Parameters
----------------------------------------------
<snip>
DHCP/Static IP coexistence : enabled
ただし、無効にできないようです。テストのために、機能する「有効」オプションを指定してコマンドを実行しましたが、「有効」を「無効」に変更すると、「パラメーターが正しくありません」と表示されます。
C:\Windows\system32>netsh interface ipv6 set interface "3" dhcpstaticipcoexistence=enabled
Ok.
C:\Windows\system32>netsh interface ipv6 set interface "3" dhcpstaticipcoexistence=disabled
The parameter is incorrect.
C:\Windows\system32>netsh interface ipv6 set interface "3" dhcpstaticipcoexistence=no
The parameter is incorrect.
C:\Windows\system32>netsh interface ipv6 set interface "3" dhcpstaticipcoexistence=false
The parameter is incorrect.
私は何か間違ったことをしているのですか、それともこれは壊れているだけですか?この追加のDHCPv6アドレスをどのように取り除くのですか?
次のようにSLAACなども無効にしていることに注意してください。 Win2k8R2 DHCPv6アドレスを取得していますが、静的構成があります
PowerShellからテストコマンドを試してください
Set-NetIPInterface -InterfaceIndex 3 -addressFamily IPv6-dhcp無効