Move Disable Teredo to Advanced and Add prefer-ipv4 tweak (#2633)

* Move Disable Teredo to Advanced and Add prefer-ipv4 tweak

* Push DevDocs Update

* Fix DevDocs annoyance where the path is changed

* Fix DevDocs annoyance where the path is changed
This commit is contained in:
Martin Wiethan
2024-08-28 18:18:33 +02:00
committed by GitHub
parent c741e006eb
commit 9ae5092e29
5 changed files with 93 additions and 12 deletions

View File

@ -1,13 +1,13 @@
# Disable Teredo
# Prefer IPv4 over IPv6
Last Updated: 2024-08-07
Last Updated: 2024-08-27
!!! info
The Development Documentation is auto generated for every compilation of WinUtil, meaning a part of it will always stay up-to-date. **Developers do have the ability to add custom content, which won't be updated automatically.**
## Description
Teredo network tunneling is a ipv6 feature that can cause additional latency.
To set the IPv4 preference can have latency and security benefits on private networks where IPv6 is not configured.
<!-- BEGIN CUSTOM CONTENT -->
@ -18,8 +18,8 @@ Teredo network tunneling is a ipv6 feature that can cause additional latency.
```json
{
"Content": "Disable Teredo",
"Description": "Teredo network tunneling is a ipv6 feature that can cause additional latency.",
"Content": "Prefer IPv4 over IPv6",
"Description": "To set the IPv4 preference can have latency and security benefits on private networks where IPv6 is not configured.",
"category": "Essential Tweaks",
"panel": "1",
"Order": "a005_",
@ -27,35 +27,17 @@ Teredo network tunneling is a ipv6 feature that can cause additional latency.
{
"Path": "HKLM:\\SYSTEM\\CurrentControlSet\\Services\\Tcpip6\\Parameters",
"Name": "DisabledComponents",
"Value": "1",
"Value": "32",
"OriginalValue": "0",
"Type": "DWord"
}
],
"InvokeScript": [
"netsh interface teredo set state disabled"
],
"UndoScript": [
"netsh interface teredo set state default"
],
"link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/Teredo"
"link": "https://christitustech.github.io/winutil/dev/tweaks/Essential-Tweaks/IPv46"
}
```
</details>
## Invoke Script
```powershell
netsh interface teredo set state disabled
```
## Undo Script
```powershell
netsh interface teredo set state default
```
## Registry Changes
Applications and System Components store and retrieve configuration data to modify windows settings, so we can use the registry to change many settings in one place.
@ -68,7 +50,7 @@ You can find information about the registry on [Wikipedia](https://www.wikiwand.
**Original Value:** 0
**New Value:** 1
**New Value:** 32