<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[-[nchow]- - Wie mach ich was]]></title>
		<link>https://nchow.de/forum/</link>
		<description><![CDATA[-[nchow]- - https://nchow.de/forum]]></description>
		<pubDate>Sun, 19 Apr 2026 10:24:13 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[Optimale MTU ermitteln]]></title>
			<link>https://nchow.de/forum/thread-70.html</link>
			<pubDate>Mon, 09 Mar 2026 22:43:48 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://nchow.de/forum/member.php?action=profile&uid=1">Michael</a>]]></dc:creator>
			<guid isPermaLink="false">https://nchow.de/forum/thread-70.html</guid>
			<description><![CDATA[in Power Shell kopieren<br />
<br />
&#36;target = "google.com"<br />
&#36;maxBuffer = 1400<br />
<br />
# Teste in 1er-Schritten nach oben<br />
for (&#36;buf = 1401; &#36;buf -le 1452; &#36;buf++) {<br />
    if (Test-Connection -TargetName &#36;target -IPv6 -BufferSize &#36;buf -DontFragment -Count 1 -ErrorAction SilentlyContinue -Quiet) {<br />
        &#36;maxBuffer = &#36;buf<br />
    } else {<br />
        break # Stoppe beim ersten Fehler<br />
    }<br />
}<br />
<br />
&#36;optimalMtu = &#36;maxBuffer + 48<br />
Write-Host "--- Ergebnis ---" -ForegroundColor Green<br />
Write-Host "Maximaler Buffer: &#36;maxBuffer Bytes"<br />
Write-Host "Optimale IPv6 MTU: &#36;optimalMtu Bytes"]]></description>
			<content:encoded><![CDATA[in Power Shell kopieren<br />
<br />
&#36;target = "google.com"<br />
&#36;maxBuffer = 1400<br />
<br />
# Teste in 1er-Schritten nach oben<br />
for (&#36;buf = 1401; &#36;buf -le 1452; &#36;buf++) {<br />
    if (Test-Connection -TargetName &#36;target -IPv6 -BufferSize &#36;buf -DontFragment -Count 1 -ErrorAction SilentlyContinue -Quiet) {<br />
        &#36;maxBuffer = &#36;buf<br />
    } else {<br />
        break # Stoppe beim ersten Fehler<br />
    }<br />
}<br />
<br />
&#36;optimalMtu = &#36;maxBuffer + 48<br />
Write-Host "--- Ergebnis ---" -ForegroundColor Green<br />
Write-Host "Maximaler Buffer: &#36;maxBuffer Bytes"<br />
Write-Host "Optimale IPv6 MTU: &#36;optimalMtu Bytes"]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Bei zugriff von aussen TCP optimieren]]></title>
			<link>https://nchow.de/forum/thread-51.html</link>
			<pubDate>Sat, 07 Feb 2026 17:54:10 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://nchow.de/forum/member.php?action=profile&uid=1">Michael</a>]]></dc:creator>
			<guid isPermaLink="false">https://nchow.de/forum/thread-51.html</guid>
			<description><![CDATA[Standardmäßig nutzt Windows „CUBIC“. <span style="font-weight: bold;" class="mycode_b">BBR (Bottleneck Bandwidth and Round-trip propagation time)</span> wurde von Google entwickelt und sorgt dafür, dass Verbindungen von außen deutlich stabiler die volle Bandbreite erreichen, selbst wenn die Leitung eine hohe Latenz oder leichte Paketverluste hat.<br />
<br />
Der Profi-Tipp: BBR aktivieren<br />
Führe diesen Befehl in einer Admin-PowerShell aus:<br />
<br />
powershell<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code># Setzt den TCP-Algorithmus für Internet-Verbindungen auf BBR<br />
netsh int tcp set supplemental template=internet congestionprovider=bbr</code></div></div>Verwende Code mit Vorsicht.<br />
<br />
Warum das bei deinem Setup hilft:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Durchsatz:</span> Während CUBIC bei Paketverlusten sofort die Geschwindigkeit halbiert, hält BBR die Leitung „gesättigt“.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">RDMA-Side-Effect:</span> Da dein interner Traffic (LAN) meist über das <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Datacenter</code></div></div>-Template läuft (wo RDMA/iWARP greift), optimiert BBR gezielt nur die Zugriffe, die über den Standard-TCP-Stack von außen reinkommen.<br />
</li>
</ol>
<br />
Zusätzlicher Check: Receive Window Auto-Tuning<br />
Stelle sicher, dass Windows das Empfangsfenster dynamisch anpassen darf, um den 10G-Link auch bei Fernzugriffen zu füllen:<br />
<br />
powershell<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>netsh int tcp set global autotuninglevel=normal</code></div></div>Verwende Code mit Vorsicht.<br />
<span style="font-weight: bold;" class="mycode_b">Zusammenfassung:</span><br />
Mit <span style="font-weight: bold;" class="mycode_b">BBR</span> und <span style="font-weight: bold;" class="mycode_b">Auto-Tuning</span> stellst du sicher, dass dein RAID-Speicher nicht nur im LAN (via RDMA) rennt, sondern auch über das Internet/VPN so schnell wie möglich erreichbar ist.]]></description>
			<content:encoded><![CDATA[Standardmäßig nutzt Windows „CUBIC“. <span style="font-weight: bold;" class="mycode_b">BBR (Bottleneck Bandwidth and Round-trip propagation time)</span> wurde von Google entwickelt und sorgt dafür, dass Verbindungen von außen deutlich stabiler die volle Bandbreite erreichen, selbst wenn die Leitung eine hohe Latenz oder leichte Paketverluste hat.<br />
<br />
Der Profi-Tipp: BBR aktivieren<br />
Führe diesen Befehl in einer Admin-PowerShell aus:<br />
<br />
powershell<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code># Setzt den TCP-Algorithmus für Internet-Verbindungen auf BBR<br />
netsh int tcp set supplemental template=internet congestionprovider=bbr</code></div></div>Verwende Code mit Vorsicht.<br />
<br />
Warum das bei deinem Setup hilft:<br />
<ol type="1" class="mycode_list"><li><span style="font-weight: bold;" class="mycode_b">Durchsatz:</span> Während CUBIC bei Paketverlusten sofort die Geschwindigkeit halbiert, hält BBR die Leitung „gesättigt“.<br />
</li>
<li><span style="font-weight: bold;" class="mycode_b">RDMA-Side-Effect:</span> Da dein interner Traffic (LAN) meist über das <br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>Datacenter</code></div></div>-Template läuft (wo RDMA/iWARP greift), optimiert BBR gezielt nur die Zugriffe, die über den Standard-TCP-Stack von außen reinkommen.<br />
</li>
</ol>
<br />
Zusätzlicher Check: Receive Window Auto-Tuning<br />
Stelle sicher, dass Windows das Empfangsfenster dynamisch anpassen darf, um den 10G-Link auch bei Fernzugriffen zu füllen:<br />
<br />
powershell<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>netsh int tcp set global autotuninglevel=normal</code></div></div>Verwende Code mit Vorsicht.<br />
<span style="font-weight: bold;" class="mycode_b">Zusammenfassung:</span><br />
Mit <span style="font-weight: bold;" class="mycode_b">BBR</span> und <span style="font-weight: bold;" class="mycode_b">Auto-Tuning</span> stellst du sicher, dass dein RAID-Speicher nicht nur im LAN (via RDMA) rennt, sondern auch über das Internet/VPN so schnell wie möglich erreichbar ist.]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[NIc den Numas zuordnen]]></title>
			<link>https://nchow.de/forum/thread-48.html</link>
			<pubDate>Wed, 04 Feb 2026 23:27:16 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://nchow.de/forum/member.php?action=profile&uid=1">Michael</a>]]></dc:creator>
			<guid isPermaLink="false">https://nchow.de/forum/thread-48.html</guid>
			<description><![CDATA[PS C:\Users\Administrator&gt; Get-NetAdapterHardwareInfo<br />
<br />
Name                          Segment Bus Device Function Slot NumaNode PcieLinkSpeed PcieLinkWidth Version<br />
----                          ------- --- ------ -------- ---- -------- ------------- ------------- -------<br />
Ethernet 11                          0  1      0        1            0    16.0 GT/s            4 1.1+<br />
Ethernet 3                          0  1      0        0            0    16.0 GT/s            4 1.1+<br />
<br />
PS C:\Users\Administrator&gt; # Setzt den bevorzugten NUMA-Knoten fest auf 0<br />
PS C:\Users\Administrator&gt; Set-NetAdapterAdvancedProperty -Name "Ethernet 11" -DisplayName "Bevorzugter NUMA-Knoten" -DisplayValue "0"<br />
PS C:\Users\Administrator&gt; Set-NetAdapterAdvancedProperty -Name "Ethernet 3" -DisplayName "Bevorzugter NUMA-Knoten" -DisplayValue "0"]]></description>
			<content:encoded><![CDATA[PS C:\Users\Administrator&gt; Get-NetAdapterHardwareInfo<br />
<br />
Name                          Segment Bus Device Function Slot NumaNode PcieLinkSpeed PcieLinkWidth Version<br />
----                          ------- --- ------ -------- ---- -------- ------------- ------------- -------<br />
Ethernet 11                          0  1      0        1            0    16.0 GT/s            4 1.1+<br />
Ethernet 3                          0  1      0        0            0    16.0 GT/s            4 1.1+<br />
<br />
PS C:\Users\Administrator&gt; # Setzt den bevorzugten NUMA-Knoten fest auf 0<br />
PS C:\Users\Administrator&gt; Set-NetAdapterAdvancedProperty -Name "Ethernet 11" -DisplayName "Bevorzugter NUMA-Knoten" -DisplayValue "0"<br />
PS C:\Users\Administrator&gt; Set-NetAdapterAdvancedProperty -Name "Ethernet 3" -DisplayName "Bevorzugter NUMA-Knoten" -DisplayValue "0"]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Welche step Funktion ist aktiv?]]></title>
			<link>https://nchow.de/forum/thread-40.html</link>
			<pubDate>Wed, 14 Jan 2026 07:53:58 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://nchow.de/forum/member.php?action=profile&uid=1">Michael</a>]]></dc:creator>
			<guid isPermaLink="false">https://nchow.de/forum/thread-40.html</guid>
			<description><![CDATA[Get-CimInstance -ClassName Win32_Processor | Format-List Caption, *SpeedStep*, *SpeedShift*]]></description>
			<content:encoded><![CDATA[Get-CimInstance -ClassName Win32_Processor | Format-List Caption, *SpeedStep*, *SpeedShift*]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Deutsche Glasfaser  nativ ip6 tunneln]]></title>
			<link>https://nchow.de/forum/thread-38.html</link>
			<pubDate>Tue, 13 Jan 2026 14:58:27 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://nchow.de/forum/member.php?action=profile&uid=1">Michael</a>]]></dc:creator>
			<guid isPermaLink="false">https://nchow.de/forum/thread-38.html</guid>
			<description><![CDATA[ps -aux | grep 6tunnel          //Zeigt die bestehenden bindungen an (mit id)<br />
kill                          //und die id wird die verbindung gelöscht zb.: kill 2453<br />
<br />
6tunnel 443 2a00:6020:1ff5:5500:ae1f:6bff:fee8:xxxx 443    / tunnelt port 443 zu dieser ip6 adresse]]></description>
			<content:encoded><![CDATA[ps -aux | grep 6tunnel          //Zeigt die bestehenden bindungen an (mit id)<br />
kill                          //und die id wird die verbindung gelöscht zb.: kill 2453<br />
<br />
6tunnel 443 2a00:6020:1ff5:5500:ae1f:6bff:fee8:xxxx 443    / tunnelt port 443 zu dieser ip6 adresse]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[URL verstecken]]></title>
			<link>https://nchow.de/forum/thread-37.html</link>
			<pubDate>Tue, 13 Jan 2026 14:49:26 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://nchow.de/forum/member.php?action=profile&uid=1">Michael</a>]]></dc:creator>
			<guid isPermaLink="false">https://nchow.de/forum/thread-37.html</guid>
			<description><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Seitentitel&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;frameset rows="100%,*" border="0" frameborder="0" framespacing="0"&gt;<br />
&lt;frame src="http://www.ziel-url.de/muster/" scrolling="Auto"&gt;<br />
&lt;/frameset&gt;<br />
&lt;/html&gt;</code></div></div>]]></description>
			<content:encoded><![CDATA[<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>&lt;html&gt;<br />
&lt;head&gt;<br />
&lt;title&gt;Seitentitel&lt;/title&gt;<br />
&lt;/head&gt;<br />
&lt;frameset rows="100%,*" border="0" frameborder="0" framespacing="0"&gt;<br />
&lt;frame src="http://www.ziel-url.de/muster/" scrolling="Auto"&gt;<br />
&lt;/frameset&gt;<br />
&lt;/html&gt;</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Zuordnung checken nach formatierung, Allocation Unit Size]]></title>
			<link>https://nchow.de/forum/thread-36.html</link>
			<pubDate>Tue, 13 Jan 2026 14:48:02 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://nchow.de/forum/member.php?action=profile&uid=1">Michael</a>]]></dc:creator>
			<guid isPermaLink="false">https://nchow.de/forum/thread-36.html</guid>
			<description><![CDATA[Get-Volume  | Format-List AllocationUnitSize, FileSystemLabel]]></description>
			<content:encoded><![CDATA[Get-Volume  | Format-List AllocationUnitSize, FileSystemLabel]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[Netzwerk erkennung schaltet sich immer wieder aus]]></title>
			<link>https://nchow.de/forum/thread-35.html</link>
			<pubDate>Tue, 13 Jan 2026 14:47:28 +0100</pubDate>
			<dc:creator><![CDATA[<a href="https://nchow.de/forum/member.php?action=profile&uid=1">Michael</a>]]></dc:creator>
			<guid isPermaLink="false">https://nchow.de/forum/thread-35.html</guid>
			<description><![CDATA[Suchen Sie die folgenden Dienste in der Liste:<br />
<br />
  DNS-Client<br />
  Funktionssuche-Ressourcenveröffentlichung<br />
  SSDP-Suche<br />
  UPnP-Gerätehost<br />
<br />
Doppelklicken Sie auf jeden dieser Dienste, um seine Eigenschaften zu öffnen.<br />
Ändern Sie den Starttyp auf Automatisch.]]></description>
			<content:encoded><![CDATA[Suchen Sie die folgenden Dienste in der Liste:<br />
<br />
  DNS-Client<br />
  Funktionssuche-Ressourcenveröffentlichung<br />
  SSDP-Suche<br />
  UPnP-Gerätehost<br />
<br />
Doppelklicken Sie auf jeden dieser Dienste, um seine Eigenschaften zu öffnen.<br />
Ändern Sie den Starttyp auf Automatisch.]]></content:encoded>
		</item>
	</channel>
</rss>