Skip to content

Commit 5513577

Browse files
committed
Fix Zyxel lanpcs frame size from 1518 to 9990
1 parent 9a5486f commit 5513577

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/NetworkOptimizer.Web/Components/Pages/PerformanceTweaks.razor

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@
558558

559559
<p><strong>Configure auto-negotiation.</strong> SSH to the stick and run:</p>
560560
<pre><code>linuxshell
561-
onu lanpcs 0 1 -1 4 15 1 0 5 0 0 1518 1 3 0 0 0</code></pre>
561+
onu lanpcs 0 1 -1 4 15 1 0 5 0 0 9990 1 3 0 0 0</code></pre>
562562
<p>The <code>linuxshell</code> command breaks out of the Zyxel CLI into a Linux shell. The <code>onu lanpcs</code> command switches the SFP interface to 2.5/1 G auto-negotiation mode. It resets on SFP reboot, so you always have a way out.</p>
563563

564564
<p><strong>Deploy the patch.</strong> Come back here and deploy the SGMII+ patch. After about a minute, the link should come up and you should have data path again.</p>
@@ -571,10 +571,10 @@ linuxshell
571571
ls -la /var/config/run-syslog.sh</code></pre>
572572

573573
<p>If the file <strong>does not exist</strong> (you see "No such file or directory"):</p>
574-
<pre><code>echo 'onu lanpcs 0 1 -1 4 15 1 0 5 0 0 1518 1 3 0 0 0' > /var/config/run-syslog.sh</code></pre>
574+
<pre><code>echo 'onu lanpcs 0 1 -1 4 15 1 0 5 0 0 9990 1 3 0 0 0' > /var/config/run-syslog.sh</code></pre>
575575

576576
<p>If the file <strong>already exists</strong>, safely append the command:</p>
577-
<pre><code>grep -q 'lanpcs' /var/config/run-syslog.sh 2>/dev/null || echo 'onu lanpcs 0 1 -1 4 15 1 0 5 0 0 1518 1 3 0 0 0' >> /var/config/run-syslog.sh</code></pre>
577+
<pre><code>grep -q 'lanpcs' /var/config/run-syslog.sh 2>/dev/null || echo 'onu lanpcs 0 1 -1 4 15 1 0 5 0 0 9990 1 3 0 0 0' >> /var/config/run-syslog.sh</code></pre>
578578
</div>
579579
<div class="pt-modal-footer">
580580
<button class="btn btn-primary btn-sm" @onclick="() => _showZyxelInstructions = false">Got It</button>

0 commit comments

Comments
 (0)