From a07883765d8c384965335d750de51b260999c5c2 Mon Sep 17 00:00:00 2001 From: Tim Eertmoed Date: Wed, 23 Oct 2024 11:10:48 +0200 Subject: [PATCH] docs/powershell.md aktualisiert --- docs/powershell.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/powershell.md b/docs/powershell.md index 7ecd169..7d12cd7 100644 --- a/docs/powershell.md +++ b/docs/powershell.md @@ -19,7 +19,15 @@ Profil der Netzwerkkarte auf Privat umstellen (Firewall) Set-NetConnectionProfile -InterfaceIndex '3' -NetworkCategory 'Private' ``` +## IPv6-abschalten +Schaltet IPv6 komplett ab! +> Command: Disable-NetAdapterBinding -Name [Name der Netzwerkkarte] -ComponentID ms_tcpip6 +```ruby +Disable-NetAdapterBinding -Name 'eth0' -ComponentID ms_tcpip6 +``` + ## IPv6-DHCP-abschalten +Nur DHCPv6 abschalten > Command: Get-NetIPInterface -AddressFamily [IPv6/IPv4] ```ruby Get-NetIPInterface -AddressFamily 'IPv6'