غیر فعال کردن Autoconfiguration IPv4 از طریق رجیستری
Parham
ژوئن 15, 2019
ویندوز
4,034 بازدید
- در رجیستری به این آدرس میرویم:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces\adaptername
( در قسمت adapter name کارت شبکه مورد نظر خودمان را انتخاب میکنیم )
- یک کلید رجیستری از نوع REG_DWORD با نام IPAutoconfigurationEnabled میسازیم.
- مقدار آنرا برابر ۰ قرار میدهیم.
- دستگاه را ریست میکنیم.
- Use Registry Editor to create the following registry key, where <var>adapter name</var> is the name of the Dynamic Host Configuration Protocol (DHCP) configured adapter where you want to disable APIPA:
- HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\ Services\Tcpip\Parameters\Interfaces\<var>adapter name</var>
- Add the following value to this key:
- Value name: IPAutoconfigurationEnabled
Value type: REG_DWORD
Value in hexadecimal: 0 (A value of 0 disables APIPA support on this adapter)
- NOTE: If the IPAutoconfigurationEnabled entry is not present, a default value of 1 is assumed, which indicates that APIPA is enabled.
- After you make this change, restart your computer.