<?xml version="1.0" encoding="utf-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>时光小站</title><link>https://855333.xyz/</link><description>Good Luck To You!</description><item><title>飞牛系统FNOS添加NTFS3模块并挂载NTFS分区</title><link>https://855333.xyz/?id=15</link><description>&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;由于飞牛(FNOS)内核使用的是精简版内核，内核中没有NTFS3驱动，导致无法加载NTFS分区。 但是我的文件都是存储于NTFS硬盘分区的，挂载NTFS分区功能还是很有必要的。FNOS社区也有不少反馈的声音，但是官方貌似还没有计划将挂载NTFS分区功能开发例如路线图。&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;由于迫切的想挂载NTFS，所以自己尝试解决了。下面分享自行编译NTFS3模块并在FNOS使用的过程。&lt;/p&gt;&lt;h2 style=&quot;margin: 0px 0px 30px; padding: 0px 0px 0px 12px; position: relative; font-size: 20px; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;strong&gt;1. 安装必要的依赖&lt;/strong&gt;&lt;/h2&gt;&lt;pre style=&quot;color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255);&quot;&gt;sudo&amp;nbsp;apt&amp;nbsp;updatesudo&amp;nbsp;apt&amp;nbsp;install&amp;nbsp;build-essential&amp;nbsp;linux-headers-$(uname&amp;nbsp;-r)&lt;/pre&gt;&lt;h2 style=&quot;margin: 0px 0px 30px; padding: 0px 0px 0px 12px; position: relative; font-size: 20px; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;2. 下载 Linux 内核源码&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;由于&amp;nbsp;&lt;code&gt;ntfs3&lt;/code&gt;&amp;nbsp;是 Linux 内核中的&amp;nbsp;&lt;code&gt;fs/ntfs3&lt;/code&gt;&amp;nbsp;目录下的模块，我们需要获取与&amp;nbsp;&lt;code&gt;6.6.38-trim&lt;/code&gt;&amp;nbsp;版本匹配的源码。&lt;/p&gt;&lt;pre style=&quot;color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255);&quot;&gt;wget&amp;nbsp;https://cdn.kernel.org/pub/linux/kernel/v6.x/linux-6.6.38.tar.xz
tar&amp;nbsp;-xf&amp;nbsp;linux-6.6.38.tar.xzcd&amp;nbsp;linux-6.6.38&lt;/pre&gt;&lt;h2 style=&quot;margin: 0px 0px 30px; padding: 0px 0px 0px 12px; position: relative; font-size: 20px; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;3. 配置内核源码&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;复制系统的当前内核配置文件，以匹配&amp;nbsp;&lt;code&gt;6.6.38-trim&lt;/code&gt;&amp;nbsp;内核的配置：&lt;/p&gt;&lt;pre style=&quot;color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255);&quot;&gt;cp&amp;nbsp;/boot/config-$(uname&amp;nbsp;-r)&amp;nbsp;.config
make&amp;nbsp;oldconfig&lt;/pre&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;然后启用&amp;nbsp;&lt;code&gt;NTFS3&lt;/code&gt;&amp;nbsp;模块：&lt;/p&gt;&lt;pre style=&quot;color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255);&quot;&gt;make&amp;nbsp;menuconfig&lt;/pre&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;进入&amp;nbsp;&lt;code&gt;File systems -&amp;gt; DOS/FAT/NT Filesystems&lt;/code&gt;，确保&amp;nbsp;&lt;code&gt;NTFS3&lt;/code&gt;&amp;nbsp;选项 (&lt;code&gt;CONFIG_NTFS3_FS&lt;/code&gt;) 被选为&amp;nbsp;&lt;code&gt;m&lt;/code&gt;（模块）。&lt;/p&gt;&lt;pre style=&quot;color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255);&quot;&gt;File&amp;nbsp;systems&amp;nbsp;&amp;nbsp;---&amp;gt;&amp;nbsp;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;DOS/FAT/NT&amp;nbsp;Filesystems&amp;nbsp;&amp;nbsp;---&amp;gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;lt;M&amp;gt;&amp;nbsp;NTFS&amp;nbsp;read/write&amp;nbsp;support&lt;/pre&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;然后执行：&lt;/p&gt;&lt;pre style=&quot;color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255);&quot;&gt;make&amp;nbsp;olddefconfig&lt;/pre&gt;&lt;h2 style=&quot;margin: 0px 0px 30px; padding: 0px 0px 0px 12px; position: relative; font-size: 20px; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;4. 仅编译 NTFS3 模块&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;不需要编译整个内核，只编译&amp;nbsp;&lt;code&gt;ntfs3&lt;/code&gt;&amp;nbsp;模块：&lt;/p&gt;&lt;pre style=&quot;color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255);&quot;&gt;make&amp;nbsp;M=fs/ntfs3&amp;nbsp;modules&lt;/pre&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;编译完成后，&lt;code&gt;fs/ntfs3/&lt;/code&gt;&amp;nbsp;目录下应该会生成&amp;nbsp;&lt;code&gt;ntfs3.ko&lt;/code&gt;&amp;nbsp;模块文件。&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;**** 需要注意的是，由于FNOS的内核是精简内核，编译会遇到无法找到链接符号的问题，这时候可以通过编译所有内核模块解决，编译整个内核时间会比较长，需要耐心等待。**&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;内核完成编译&lt;/p&gt;&lt;pre style=&quot;color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255);&quot;&gt;make&amp;nbsp;modules_prepare
make&amp;nbsp;modules&amp;nbsp;-j$(nproc)&lt;/pre&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;同样在编译完成后可以在&amp;nbsp;&lt;code&gt;fs/ntfs3/&lt;/code&gt;&amp;nbsp;目录下应该会生成&amp;nbsp;&lt;code&gt;ntfs3.ko&lt;/code&gt;&amp;nbsp;模块文件。&lt;/p&gt;&lt;h2 style=&quot;margin: 0px 0px 30px; padding: 0px 0px 0px 12px; position: relative; font-size: 20px; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;5. 安装 NTFS3 模块&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;将编译好的模块拷贝到&amp;nbsp;&lt;code&gt;/lib/modules/6.6.38-trim/kernel/fs/ntfs3/&lt;/code&gt;&amp;nbsp;并更新&amp;nbsp;&lt;code&gt;depmod&lt;/code&gt;：&lt;/p&gt;&lt;pre style=&quot;color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255);&quot;&gt;sudo&amp;nbsp;cp&amp;nbsp;fs/ntfs3/ntfs3.ko&amp;nbsp;/lib/modules/6.6.38-trim/kernel/fs/ntfs3/sudo&amp;nbsp;depmod&amp;nbsp;-a&lt;/pre&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;然后尝试手动加载：&lt;/p&gt;&lt;pre style=&quot;color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255);&quot;&gt;sudo&amp;nbsp;modprobe&amp;nbsp;ntfs3&lt;/pre&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;如果没有报错，检查模块是否成功加载：&lt;/p&gt;&lt;pre style=&quot;color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255);&quot;&gt;lsmod&amp;nbsp;|&amp;nbsp;grep&amp;nbsp;ntfs3&lt;/pre&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;strong&gt;为了保持系统干净，也可以复制ntfs3.ko到FNOS系统。&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;系统路径为 /lib/modules/6.6.38-trim/kernel/fs/ntfs3/ ，注意权限问题，权限应为 644&lt;/p&gt;&lt;h2 style=&quot;margin: 0px 0px 30px; padding: 0px 0px 0px 12px; position: relative; font-size: 20px; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;6. 挂载 NTFS 分区&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;假设你的 NTFS 分区在&amp;nbsp;&lt;code&gt;/dev/sdXn&lt;/code&gt;（比如&amp;nbsp;&lt;code&gt;/dev/sdb1&lt;/code&gt;），可以测试挂载：&lt;/p&gt;&lt;pre style=&quot;color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255);&quot;&gt;sudo&amp;nbsp;mount&amp;nbsp;-t&amp;nbsp;ntfs3&amp;nbsp;/dev/sdb1&amp;nbsp;/mnt&lt;/pre&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;如果挂载成功，可以将其加入&amp;nbsp;&lt;code&gt;/etc/fstab&lt;/code&gt;，使其在系统启动时自动挂载：&lt;/p&gt;&lt;pre style=&quot;color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255);&quot;&gt;echo&amp;nbsp;&amp;quot;/dev/sdb1&amp;nbsp;/mnt&amp;nbsp;ntfs3&amp;nbsp;defaults&amp;nbsp;0&amp;nbsp;0&amp;quot;&amp;nbsp;|&amp;nbsp;sudo&amp;nbsp;tee&amp;nbsp;-a&amp;nbsp;/etc/fstab&lt;/pre&gt;&lt;h2 style=&quot;margin: 0px 0px 30px; padding: 0px 0px 0px 12px; position: relative; font-size: 20px; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;7. 解决模块丢失问题&lt;/h2&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;如果内核更新后&amp;nbsp;&lt;code&gt;ntfs3.ko&lt;/code&gt;&amp;nbsp;丢失，你可能需要重新编译并安装它。可以创建一个&amp;nbsp;&lt;code&gt;dkms&lt;/code&gt;&amp;nbsp;模块，或者将&amp;nbsp;&lt;code&gt;ntfs3.ko&lt;/code&gt;&amp;nbsp;复制到&amp;nbsp;&lt;code&gt;/lib/modules/6.6.38-trim/extra/&lt;/code&gt;，然后执行：&lt;/p&gt;&lt;pre style=&quot;color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255);&quot;&gt;sudo&amp;nbsp;depmod&amp;nbsp;-a&lt;/pre&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;这样即使系统更新，&lt;code&gt;ntfs3&lt;/code&gt;&amp;nbsp;仍然可用。&lt;/p&gt;&lt;pre style=&quot;color: rgb(51, 51, 51); font-size: 16px; background-color: rgb(255, 255, 255);&quot;&gt;解除挂载&amp;nbsp;umount&amp;nbsp;/volXX/1000/ntfs&lt;/pre&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sun, 28 Sep 2025 16:26:37 +0800</pubDate></item><item><title>两步让飞牛(fnOS) 使用ntfs3挂载NTFS分区，并在文件管理中显示，目前是最简单方法</title><link>https://855333.xyz/?id=14</link><description>&lt;article class=&quot;post-content&quot; b-mqltgooysm=&quot;&quot; style=&quot;margin: 0px; padding: 0px; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div class=&quot;post-main&quot; b-mqltgooysm=&quot;&quot; style=&quot;margin: 0px; padding: 0px; line-height: 2;&quot;&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%;&quot;&gt;飞牛NAS系统中默认使用ntfs-3g挂载NTFS分区，由于ntfs-3g是一个过时的驱动，稳定性和性能远不如ntfs3。&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%;&quot;&gt;并且，Linux 5.15 + 版本内核已经集成了ntfs3驱动，也算是步入正堂，可见其已经得到各方面的验证和认可。&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%;&quot;&gt;下面放一个简单的对比：&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://1bk.cn/static/img/20250409131340.png&quot; alt=&quot;20250409131340.png&quot; style=&quot;border: 0px; vertical-align: middle; display: block; margin: 0px auto; height: auto; max-width: 100%;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%;&quot;&gt;&lt;strong&gt;下面说飞牛如何用ntfs3挂载NTFS分区&lt;/strong&gt;&lt;/p&gt;&lt;h4 style=&quot;margin: 0px 0px 30px; padding: 0px 0px 0px 12px; position: relative;&quot;&gt;1. 从下面地址下载ntfs3驱动。（ntfs3驱动提取自linux内核，并为fnOS编译）&lt;/h4&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%;&quot;&gt;下载地址：https://cloud.189.cn/web/share?code=iEfE3uvy2i6r（访问码：3eu8）&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://1bk.cn/static/img/20250409130947.png&quot; alt=&quot;20250409130947.png&quot; style=&quot;border: 0px; vertical-align: middle; display: block; margin: 0px auto; height: auto; max-width: 100%;&quot;/&gt;&lt;/p&gt;&lt;h4 style=&quot;margin: 0px 0px 30px; padding: 0px 0px 0px 12px; position: relative;&quot;&gt;2.解压选择与fnOS内核版本一致的 ntfs3.ko，并上传到fnOS&lt;/h4&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%;&quot;&gt;当前官方下载的fnOS内核版本为 6.6.38， 内测版本fnOS内核版本为 6.12.18， 正确选择即可。&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%;&quot;&gt;上传到的路径为&amp;nbsp;&lt;code&gt;/lib/modules/6.6.38-trim/kernel/fs/ntfs3/&lt;/code&gt;&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%;&quot;&gt;上传完成后，使用&amp;nbsp;&lt;code&gt;sudo depmod -a&lt;/code&gt;&amp;nbsp;刷新Linux模块&lt;/p&gt;&lt;h4 style=&quot;margin: 0px 0px 30px; padding: 0px 0px 0px 12px; position: relative;&quot;&gt;3. 配置分区挂载&lt;/h4&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%;&quot;&gt;编译&amp;nbsp;&lt;code&gt;/etc/fstab&lt;/code&gt;&amp;nbsp;加入挂载指令&lt;/p&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%;&quot;&gt;&lt;code&gt;UUID=39DEDEC4E4512B4B /vol00/Media ntfs3 rw,relatime,iocharset=utf8,force 0 0&lt;/code&gt;&lt;/p&gt;&lt;ul style=&quot;margin-bottom: 30px; padding: 0px 0px 0px 30px;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;上面指令中的UUID，可以通过&amp;nbsp;&lt;code&gt;lsblk -f&lt;/code&gt;&amp;nbsp;查看&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;路径&amp;nbsp;&lt;code&gt;/vol00/Media&lt;/code&gt;&amp;nbsp;中，&lt;code&gt;/vol00&lt;/code&gt;&amp;nbsp;下的目录在fnOS展示为外挂存储，&lt;code&gt;/Media&lt;/code&gt;&amp;nbsp;为自定义目录，&lt;strong&gt;挂载前需要提前创建该目录。&lt;/strong&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h4 style=&quot;margin: 0px 0px 30px; padding: 0px 0px 0px 12px; position: relative;&quot;&gt;4. 重启，完成&lt;/h4&gt;&lt;p style=&quot;margin-top: 0px; margin-bottom: 30px; padding: 0px; max-width: 100%;&quot;&gt;&lt;img src=&quot;https://1bk.cn/static/img/20250409131055.png&quot; alt=&quot;20250409131055.png&quot; style=&quot;border: 0px; vertical-align: middle; display: block; margin: 0px auto; height: auto; max-width: 100%;&quot;/&gt;&lt;/p&gt;&lt;/div&gt;&lt;/article&gt;&lt;div class=&quot;notice&quot; b-mqltgooysm=&quot;&quot; style=&quot;margin: 0px; padding: 10px; color: rgb(51, 51, 51); font-family: &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif, OPPOSans2, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, Tahoma, Arial; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;p b-mqltgooysm=&quot;&quot; style=&quot;margin-top: 0px; margin-bottom: 0px; padding: 0px;&quot;&gt;本站发布的文章受知识共享协议保护，转载、收录请标明出处。&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sun, 28 Sep 2025 16:15:51 +0800</pubDate></item><item><title>使用微软账号的Windows如何用远程桌面连接</title><link>https://855333.xyz/?id=13</link><description>&lt;p&gt;&lt;span style=&quot;color: #373A40; font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: 15px; text-wrap-mode: wrap; background-color: #FFFFFF;&quot;&gt;如果用不了，运行一下runas /u:MicrosoftAccount\bighard@qq.com winver可能就好了&lt;/span&gt;&lt;/p&gt;</description><pubDate>Fri, 19 Sep 2025 10:00:44 +0800</pubDate></item><item><title>openwrt (istoreos)系统软件包如何扩容</title><link>https://855333.xyz/?id=12</link><description>&lt;p data-first-child=&quot;&quot; data-pid=&quot;aWwxp1QZ&quot; style=&quot;margin-top: 0px; margin-bottom: 1.4em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;通过系统查看，发现安装的&lt;a class=&quot;RichContent-EntityWord css-b7erz1&quot; data-za-not-track-link=&quot;true&quot; data-paste-text=&quot;true&quot; href=&quot;https://zhida.zhihu.com/search?content_id=228586269&amp;content_type=Article&amp;match_order=1&amp;q=istoreos&amp;zd_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ6aGlkYV9zZXJ2ZXIiLCJleHAiOjE3NTgyNTM3MDcsInEiOiJpc3RvcmVvcyIsInpoaWRhX3NvdXJjZSI6ImVudGl0eSIsImNvbnRlbnRfaWQiOjIyODU4NjI2OSwiY29udGVudF90eXBlIjoiQXJ0aWNsZSIsIm1hdGNoX29yZGVyIjoxLCJ6ZF90b2tlbiI6bnVsbH0.u96lWciv0CYGagI-s1K-OoReUMbbirj18T38Q05jznQ&amp;zhida_source=entity&quot; target=&quot;_blank&quot; style=&quot;text-decoration-line: none; color: rgb(9, 64, 142); cursor: pointer;&quot;&gt;istoreos&lt;svg width=&quot;10px&quot; height=&quot;10px&quot; viewbox=&quot;0 0 16 16&quot; class=&quot;ZDI ZDI--FourPointedStar16 css-1dvsrp&quot; fill=&quot;currentColor&quot;&gt;&lt;path d=&quot;m5.068 9.267-3.08-.77a.512.512 0 0 1 0-.994l3.08-.77a2.289 2.289 0 0 0 1.665-1.665l.77-3.08a.512.512 0 0 1 .994 0l.77 3.08c.205.82.845 1.46 1.665 1.665l3.08.77a.512.512 0 0 1 0 .994l-3.08.77a2.29 2.29 0 0 0-1.665 1.665l-.77 3.08a.512.512 0 0 1-.994 0l-.77-3.08a2.289 2.289 0 0 0-1.665-1.665Z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;&lt;/a&gt;里的系统软件包那里才2G，太小了呀，虽然插件一般也不大，但是对强迫症来说，实在是难以接受。&lt;br/&gt;&lt;/p&gt;&lt;p&gt;&lt;figure data-size=&quot;normal&quot; style=&quot;margin: 1.4em 0px; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div&gt;&lt;img src=&quot;https://pic2.zhimg.com/v2-8420987c97dde70aff99f9d48c005eed_1440w.jpg&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;1553&quot; data-rawheight=&quot;380&quot; data-original-token=&quot;v2-dcaef7ba7f3a093000dabe1bd8af398f&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;1553&quot; data-original=&quot;https://pic2.zhimg.com/v2-8420987c97dde70aff99f9d48c005eed_r.jpg&quot; style=&quot;display: block; margin: 0px auto; max-width: 100%; height: auto; cursor: zoom-in; width: 654px;&quot;/&gt;&lt;/div&gt;&lt;figcaption style=&quot;color: rgb(145, 150, 161); font-size: 0.9em; line-height: 1.5; margin-top: calc(0.666667em); padding: 0px 1em; text-align: center;&quot;&gt;Snipaste_2023-05-25_10-20-05.png&lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;&lt;p class=&quot;ztext-empty-paragraph&quot; style=&quot;margin-top: -0.8em; margin-bottom: -0.8em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p data-pid=&quot;15Mh3gok&quot; style=&quot;margin-top: 1.4em; margin-bottom: 1.4em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;于是乎，网上一顿搜索，一顿抄作业，终于把系统软件包盘扩容了。&lt;/p&gt;&lt;p data-pid=&quot;s6PXnn1v&quot; style=&quot;margin-top: 1.4em; margin-bottom: 1.4em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;扩容一定要在系统刚装好后就进行操作，要不然本能成功&lt;/span&gt;，不要问我原因，问就是不知道（主要是自己在装了几个插件后试过扩容，怎么操作都不成功，索性重装了一遍系统，将扩容提到第一步，结果&lt;span style=&quot;font-weight: 600;&quot;&gt;成功了&lt;/span&gt;，造化弄人啊）。&lt;/p&gt;&lt;p data-pid=&quot;VV42JKL8&quot; style=&quot;margin-top: 1.4em; margin-bottom: 1.4em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;第一步&lt;/span&gt;，系统安装好后，在主页中，进入“终端”&lt;/p&gt;&lt;p&gt;&lt;figure data-size=&quot;normal&quot; style=&quot;margin: 1.4em 0px; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div&gt;&lt;img src=&quot;https://pic2.zhimg.com/v2-ad34e4d6cc0272889d4819c7e247e85f_1440w.jpg&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;1196&quot; data-rawheight=&quot;899&quot; data-original-token=&quot;v2-8bd876f566294461ff6f313c8691771d&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;1196&quot; data-original=&quot;https://pic2.zhimg.com/v2-ad34e4d6cc0272889d4819c7e247e85f_r.jpg&quot; style=&quot;display: block; margin: 0px auto; max-width: 100%; height: auto; cursor: zoom-in; width: 654px;&quot;/&gt;&lt;/div&gt;&lt;figcaption style=&quot;color: rgb(145, 150, 161); font-size: 0.9em; line-height: 1.5; margin-top: calc(0.666667em); padding: 0px 1em; text-align: center;&quot;&gt;image.png&lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;&lt;p class=&quot;ztext-empty-paragraph&quot; style=&quot;margin-top: -0.8em; margin-bottom: -0.8em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p data-pid=&quot;KOd-sIMu&quot; style=&quot;margin-top: 1.4em; margin-bottom: 1.4em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;第二步&lt;/span&gt;，在“终端”里登录root账号，输入密码&lt;/p&gt;&lt;p&gt;&lt;figure data-size=&quot;normal&quot; style=&quot;margin: 1.4em 0px; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div&gt;&lt;img src=&quot;https://pic1.zhimg.com/v2-f083281890343c3c9eda24d3230637c2_1440w.jpg&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;852&quot; data-rawheight=&quot;473&quot; data-original-token=&quot;v2-7e1033d91e7a0afcdf8bff5c5b8347eb&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;852&quot; data-original=&quot;https://pic1.zhimg.com/v2-f083281890343c3c9eda24d3230637c2_r.jpg&quot; style=&quot;display: block; margin: 0px auto; max-width: 100%; height: auto; cursor: zoom-in; width: 654px;&quot;/&gt;&lt;/div&gt;&lt;figcaption style=&quot;color: rgb(145, 150, 161); font-size: 0.9em; line-height: 1.5; margin-top: calc(0.666667em); padding: 0px 1em; text-align: center;&quot;&gt;image.png&lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;&lt;p class=&quot;ztext-empty-paragraph&quot; style=&quot;margin-top: -0.8em; margin-bottom: -0.8em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p data-pid=&quot;-RoITo5_&quot; style=&quot;margin-top: 1.4em; margin-bottom: 1.4em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;第三步&lt;/span&gt;，执行“&lt;a class=&quot;RichContent-EntityWord css-b7erz1&quot; data-za-not-track-link=&quot;true&quot; data-paste-text=&quot;true&quot; href=&quot;https://zhida.zhihu.com/search?content_id=228586269&amp;content_type=Article&amp;match_order=1&amp;q=parted&amp;zd_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ6aGlkYV9zZXJ2ZXIiLCJleHAiOjE3NTgyNTM3MDcsInEiOiJwYXJ0ZWQiLCJ6aGlkYV9zb3VyY2UiOiJlbnRpdHkiLCJjb250ZW50X2lkIjoyMjg1ODYyNjksImNvbnRlbnRfdHlwZSI6IkFydGljbGUiLCJtYXRjaF9vcmRlciI6MSwiemRfdG9rZW4iOm51bGx9.tkaD4DWWg8ociKCAt2nBKDSehpbSWtwJTkspIO-yWy4&amp;zhida_source=entity&quot; target=&quot;_blank&quot; style=&quot;text-decoration-line: none; color: rgb(9, 64, 142); cursor: pointer;&quot;&gt;parted&lt;svg width=&quot;10px&quot; height=&quot;10px&quot; viewbox=&quot;0 0 16 16&quot; class=&quot;ZDI ZDI--FourPointedStar16 css-1dvsrp&quot; fill=&quot;currentColor&quot;&gt;&lt;path d=&quot;m5.068 9.267-3.08-.77a.512.512 0 0 1 0-.994l3.08-.77a2.289 2.289 0 0 0 1.665-1.665l.77-3.08a.512.512 0 0 1 .994 0l.77 3.08c.205.82.845 1.46 1.665 1.665l3.08.77a.512.512 0 0 1 0 .994l-3.08.77a2.29 2.29 0 0 0-1.665 1.665l-.77 3.08a.512.512 0 0 1-.994 0l-.77-3.08a2.289 2.289 0 0 0-1.665-1.665Z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;&lt;/a&gt;&amp;quot;命令,然后执行“print&amp;quot;命令&lt;/p&gt;&lt;p&gt;&lt;figure data-size=&quot;normal&quot; style=&quot;margin: 1.4em 0px; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div&gt;&lt;img src=&quot;https://pic2.zhimg.com/v2-c1eac302058e743c905160fdc26feafd_1440w.jpg&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;1103&quot; data-rawheight=&quot;370&quot; data-original-token=&quot;v2-bdc32d78d399ab21fa63d76f7da1caf3&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;1103&quot; data-original=&quot;https://pic2.zhimg.com/v2-c1eac302058e743c905160fdc26feafd_r.jpg&quot; style=&quot;display: block; margin: 0px auto; max-width: 100%; height: auto; cursor: zoom-in; width: 654px;&quot;/&gt;&lt;/div&gt;&lt;figcaption style=&quot;color: rgb(145, 150, 161); font-size: 0.9em; line-height: 1.5; margin-top: calc(0.666667em); padding: 0px 1em; text-align: center;&quot;&gt;Snipaste_2023-05-25_10-22-02.png&lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;&lt;p class=&quot;ztext-empty-paragraph&quot; style=&quot;margin-top: -0.8em; margin-bottom: -0.8em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p data-pid=&quot;T8DeJ9ac&quot; style=&quot;margin-top: 1.4em; margin-bottom: 1.4em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;执行完上述命令后，你会到你有三个分区（此处我没有截图，从网上找了一个，大概如下：）&lt;/p&gt;&lt;p&gt;&lt;figure data-size=&quot;normal&quot; style=&quot;margin: 1.4em 0px; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div&gt;&lt;img src=&quot;https://pica.zhimg.com/v2-276c5a838c890f24a2edef587e27d54e_1440w.jpg&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;1220&quot; data-rawheight=&quot;357&quot; data-original-token=&quot;v2-06a3c3f5e0070d6d4d821c3c63f86522&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;1220&quot; data-original=&quot;https://pica.zhimg.com/v2-276c5a838c890f24a2edef587e27d54e_r.jpg&quot; style=&quot;display: block; margin: 0px auto; max-width: 100%; height: auto; cursor: zoom-in; width: 654px;&quot;/&gt;&lt;/div&gt;&lt;figcaption style=&quot;color: rgb(145, 150, 161); font-size: 0.9em; line-height: 1.5; margin-top: calc(0.666667em); padding: 0px 1em; text-align: center;&quot;&gt;1.png&lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;&lt;p class=&quot;ztext-empty-paragraph&quot; style=&quot;margin-top: -0.8em; margin-bottom: -0.8em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p data-pid=&quot;I46n8-E5&quot; style=&quot;margin-top: 1.4em; margin-bottom: 1.4em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;第四步&lt;/span&gt;，上面的3就是软件包所在的分区，也就是需要扩容的分区。执行命令“resizepart”，”Partition number? “处输入“3”，然后是“yes&amp;quot;。”End? [2551MB]? “后面根据自己的实际，输入需要扩容的大小，我输入的是100G&lt;/p&gt;&lt;p&gt;&lt;figure data-size=&quot;normal&quot; style=&quot;margin: 1.4em 0px; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div&gt;&lt;img src=&quot;https://pic2.zhimg.com/v2-7cca6c69b30973d7d4e22d32039f0235_1440w.jpg&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;988&quot; data-rawheight=&quot;228&quot; data-original-token=&quot;v2-2c890f450915dadd5e68bc2b3bc94a39&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;988&quot; data-original=&quot;https://pic2.zhimg.com/v2-7cca6c69b30973d7d4e22d32039f0235_r.jpg&quot; style=&quot;display: block; margin: 0px auto; max-width: 100%; height: auto; cursor: zoom-in; width: 654px;&quot;/&gt;&lt;/div&gt;&lt;figcaption style=&quot;color: rgb(145, 150, 161); font-size: 0.9em; line-height: 1.5; margin-top: calc(0.666667em); padding: 0px 1em; text-align: center;&quot;&gt;Snipaste_2023-05-25_10-30-22.png&lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;&lt;p class=&quot;ztext-empty-paragraph&quot; style=&quot;margin-top: -0.8em; margin-bottom: -0.8em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p data-pid=&quot;jPIrbpaF&quot; style=&quot;margin-top: 1.4em; margin-bottom: 1.4em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;第五步&lt;/span&gt;，输入quit退出&lt;/p&gt;&lt;p data-pid=&quot;Lh6Dq93h&quot; style=&quot;margin-top: 1.4em; margin-bottom: 1.4em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;第六步&lt;/span&gt;，输入&lt;a class=&quot;RichContent-EntityWord css-b7erz1&quot; data-za-not-track-link=&quot;true&quot; data-paste-text=&quot;true&quot; href=&quot;https://zhida.zhihu.com/search?content_id=228586269&amp;content_type=Article&amp;match_order=1&amp;q=resize2fs&amp;zd_token=eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJ6aGlkYV9zZXJ2ZXIiLCJleHAiOjE3NTgyNTM3MDcsInEiOiJyZXNpemUyZnMiLCJ6aGlkYV9zb3VyY2UiOiJlbnRpdHkiLCJjb250ZW50X2lkIjoyMjg1ODYyNjksImNvbnRlbnRfdHlwZSI6IkFydGljbGUiLCJtYXRjaF9vcmRlciI6MSwiemRfdG9rZW4iOm51bGx9.nZ2hvP_VTuIh1bAIQLbRipU-_MPi0n08lXFYr75w3so&amp;zhida_source=entity&quot; target=&quot;_blank&quot; style=&quot;text-decoration-line: none; color: rgb(9, 64, 142); cursor: pointer;&quot;&gt;resize2fs&lt;svg width=&quot;10px&quot; height=&quot;10px&quot; viewbox=&quot;0 0 16 16&quot; class=&quot;ZDI ZDI--FourPointedStar16 css-1dvsrp&quot; fill=&quot;currentColor&quot;&gt;&lt;path d=&quot;m5.068 9.267-3.08-.77a.512.512 0 0 1 0-.994l3.08-.77a2.289 2.289 0 0 0 1.665-1.665l.77-3.08a.512.512 0 0 1 .994 0l.77 3.08c.205.82.845 1.46 1.665 1.665l3.08.77a.512.512 0 0 1 0 .994l-3.08.77a2.29 2.29 0 0 0-1.665 1.665l-.77 3.08a.512.512 0 0 1-.994 0l-.77-3.08a2.289 2.289 0 0 0-1.665-1.665Z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;&lt;/a&gt;&amp;nbsp;-p /dev/sda3，执行resize2fs对文件系统进行扩容&lt;/p&gt;&lt;p&gt;&lt;figure data-size=&quot;normal&quot; style=&quot;margin: 1.4em 0px; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div&gt;&lt;img src=&quot;https://pic3.zhimg.com/v2-ca65042e0e868bde2c98a76226da7cfc_1440w.png&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;931&quot; data-rawheight=&quot;36&quot; data-original-token=&quot;v2-ca65042e0e868bde2c98a76226da7cfc&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;931&quot; data-original=&quot;https://pic3.zhimg.com/v2-ca65042e0e868bde2c98a76226da7cfc_r.jpg&quot; style=&quot;display: block; margin: 0px auto; max-width: 100%; height: auto; cursor: zoom-in; width: 654px;&quot;/&gt;&lt;/div&gt;&lt;figcaption style=&quot;color: rgb(145, 150, 161); font-size: 0.9em; line-height: 1.5; margin-top: calc(0.666667em); padding: 0px 1em; text-align: center;&quot;&gt;Snipaste_2023-05-25_10-32-33.png&lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;&lt;p class=&quot;ztext-empty-paragraph&quot; style=&quot;margin-top: -0.8em; margin-bottom: -0.8em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p data-pid=&quot;g9IQneNo&quot; style=&quot;margin-top: 1.4em; margin-bottom: 1.4em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;font-weight: 600;&quot;&gt;第七步&lt;/span&gt;，核实执行df -h可以看到分区大小已经更新!&lt;/p&gt;&lt;p&gt;&lt;figure data-size=&quot;normal&quot; style=&quot;margin: 1.4em 0px; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div&gt;&lt;img src=&quot;https://pic1.zhimg.com/v2-8048775810c48c9b05dcaf5d3722197e_1440w.jpg&quot; data-size=&quot;normal&quot; data-rawwidth=&quot;1171&quot; data-rawheight=&quot;212&quot; data-original-token=&quot;v2-ca86d6492a3069c1be40e2a153f842ab&quot; class=&quot;origin_image zh-lightbox-thumb&quot; width=&quot;1171&quot; data-original=&quot;https://pic1.zhimg.com/v2-8048775810c48c9b05dcaf5d3722197e_r.jpg&quot; style=&quot;display: block; margin: 0px auto; max-width: 100%; height: auto; cursor: zoom-in; width: 654px;&quot;/&gt;&lt;/div&gt;&lt;figcaption style=&quot;color: rgb(145, 150, 161); font-size: 0.9em; line-height: 1.5; margin-top: calc(0.666667em); padding: 0px 1em; text-align: center;&quot;&gt;Snipaste_2023-05-25_10-33-59.png&lt;/figcaption&gt;&lt;/figure&gt;&lt;/p&gt;&lt;p class=&quot;ztext-empty-paragraph&quot; style=&quot;margin-top: -0.8em; margin-bottom: -0.8em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;p data-pid=&quot;uch2y7f7&quot; style=&quot;margin-top: 1.4em; margin-bottom: 1.4em; color: rgb(25, 27, 31); font-family: -apple-system, BlinkMacSystemFont, &amp;quot;Helvetica Neue&amp;quot;, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Source Han Sans SC&amp;quot;, &amp;quot;Noto Sans CJK SC&amp;quot;, &amp;quot;WenQuanYi Micro Hei&amp;quot;, &amp;quot;MiSans L3&amp;quot;, &amp;quot;Segoe UI&amp;quot;, sans-serif; font-size: medium; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;以上文章参考，&lt;a href=&quot;https://zhuanlan.zhihu.com/p/609781369&quot; class=&quot;internal&quot; target=&quot;_blank&quot; data-za-detail-view-id=&quot;1043&quot; style=&quot;text-decoration-line: none; border-bottom: 1px solid rgb(129, 133, 143); cursor: pointer;&quot;&gt;&lt;span class=&quot;invisible&quot; style=&quot;background-color: transparent; color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-size-adjust: none; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-variant-emoji: normal; font-stretch: normal; font-size: 0px; line-height: 0; font-family: a; text-shadow: none;&quot;&gt;https://&lt;/span&gt;&lt;span class=&quot;visible&quot;&gt;zhuanlan.zhihu.com/p/60&lt;/span&gt;&lt;span class=&quot;invisible&quot; style=&quot;background-color: transparent; color: transparent; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-size-adjust: none; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-variant-emoji: normal; font-stretch: normal; font-size: 0px; line-height: 0; font-family: a; text-shadow: none;&quot;&gt;9781369&lt;/span&gt;&lt;span class=&quot;ellipsis&quot;&gt;&lt;/span&gt;&lt;/a&gt;，&lt;a href=&quot;https://www.zhihu.com/people/myzzz&quot; class=&quot;internal&quot; target=&quot;_blank&quot; data-za-detail-view-id=&quot;1043&quot; style=&quot;text-decoration-line: none; border-bottom: 1px solid rgb(129, 133, 143); cursor: pointer;&quot;&gt;想去哪er就去哪&lt;/a&gt;的 iStoreOS x86根分区扩容&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Wed, 17 Sep 2025 11:55:04 +0800</pubDate></item><item><title>Win11 LTSC 2024 安装后的一些步骤 </title><link>https://855333.xyz/?id=11</link><description>&lt;p&gt;1.关闭自带的防病毒软件[可忽略]
建议使用组策略关闭自带的防病毒软件[大概率已经失效]

以下注册表方式暂未经过验证！！！！【任选其一运行】

reg
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Defender\Features]
&amp;quot;TamperProtection&amp;quot;=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender]
&amp;quot;DisableAntiSpyware&amp;quot;=dword:00000001
&amp;quot;DisableRealtimeMonitoring&amp;quot;=dword:00000001
&amp;quot;DisableAntiVirus&amp;quot;=dword:00000001
&amp;quot;DisableSpecialRunningModes&amp;quot;=dword:00000001
&amp;quot;DisableRoutinelyTakingAction&amp;quot;=dword:00000001
&amp;quot;ServiceKeepAlive&amp;quot;=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection]
&amp;quot;DisableBehaviorMonitoring&amp;quot;=dword:00000001
&amp;quot;DisableOnAccessProtection&amp;quot;=dword:00000001
&amp;quot;DisableScanOnRealtimeEnable&amp;quot;=dword:00000001
&amp;quot;DisableRealtimeMonitoring&amp;quot;=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Signature Updates]
&amp;quot;ForceUpdateFromMU&amp;quot;=dword:00000001

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Spynet]
&amp;quot;DisableBlockAtFirstSeen&amp;quot;=dword:00000001



reg
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Defender\Features]
&amp;quot;TamperProtection&amp;quot;=dword:00000000

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender]
&amp;quot;DisableAntiSpyware&amp;quot;=dword:00000001
&amp;quot;DisableRealtimeMonitoring&amp;quot;=dword:00000001
&amp;quot;DisableAntiVirus&amp;quot;=dword:00000001

; Microsoft Defender Antivirus Mini-Filter Driver
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WdFilter]
&amp;quot;Start&amp;quot;=dword:00000004

 Microsoft Defender Antivirus Network Inspection System Driver
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WdNisDrv]
&amp;quot;Start&amp;quot;=dword:00000004

; Microsoft Defender Antivirus Network Inspection Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WdNisSvc]
&amp;quot;Start&amp;quot;=dword:00000004

; Microsoft Defender Antivirus Service
[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WinDefend]
&amp;quot;Start&amp;quot;=dword:00000004
2.系统激活
首先通过产品密钥变更系统为LOT LTSC【如果之前使用过数字激活，大概率输入以下密钥后会自动激活】

text
CGK42-GYN6Y-VD22B-BX98W-J8JXD
LOT LTSC有10年的维护期，而LTSC 2024仅只有5年的维护期，因此推荐使用LOT LTSC。
之后使用KMS激活进行数字激活即可(一些激活工具在激活的过程中会自动的将LTSC变更为LOT LTSC版本)。
激活参考：https://massgrave.dev/
或者使用 HEU_KMS_Activator

3.安装应用商店[可忽略]
使用管理员运行PowerShell指令即可

powershell
wsreset -i
4.安装驱动[略]
5.安装OneDrive[可忽略]
直接在此链接下载安装即可。https://www.microsoft.com/zh-cn/microsoft-365/onedrive/download

6.禁用BitLocker
Win11 除去LOT的镜像不会自动启动BotLocker外，其余会在安装过程中自动启动BitLocker[前提是符合Win11的安装标准且开启了安全启动，建议在安装之前先禁用安全启动]

也可以在安装过程中直接通过运行注册表，将下面的键值添加后继续安装则不会启动BitLocker


reg
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\BitLocker]
&amp;quot;PreventDeviceEncryption&amp;quot;=dword:00000001&lt;br/&gt;———————————————————————————————————————————————&lt;br/&gt;&lt;br/&gt;作者：奇&lt;br/&gt;原文链接：https://www.cnblogs.com/fanqisoft/p/18444567&lt;br/&gt;&lt;/p&gt;</description><pubDate>Thu, 07 Aug 2025 13:39:25 +0800</pubDate></item><item><title>Microsoft 激活脚本 （MAS）</title><link>https://855333.xyz/?id=10</link><description>&lt;h4 class=&quot;anchor anchorWithStickyNavbar_LWe7&quot; id=&quot;method-1---powershell-windows-8-and-later-️&quot; _msttexthash=&quot;148987657&quot; _msthash=&quot;163&quot; style=&quot;box-sizing: border-box; color: rgb(28, 30, 33); font-family: system-ui, -apple-system, &amp;quot;Segoe UI&amp;quot;, Roboto, Ubuntu, Cantarell, &amp;quot;Noto Sans&amp;quot;, sans-serif, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;, &amp;quot;Segoe UI Symbol&amp;quot;; line-height: 1.25; margin: 25px 0px 20px; font-size: 16px; scroll-margin-top: 68px; text-wrap-mode: wrap;&quot;&gt;方法 1 - PowerShell（Windows 8 及更高版本） ❤️&lt;/h4&gt;&lt;div class=&quot;theme-admonition theme-admonition-info admonition_xJq3 alert alert--info&quot; style=&quot;box-sizing: border-box; color: rgb(25, 60, 71); --ifm-alert-background-color: #eef9fd; --ifm-alert-background-color-highlight: #54c7ec26; --ifm-alert-foreground-color: #193c47; --ifm-alert-border-color: #4cb3d4; --ifm-code-background: #54c7ec26; --ifm-link-color: #193c47; --ifm-link-hover-color: #193c47; --ifm-link-decoration: underline; --ifm-tabs-color: #193c47; --ifm-tabs-color-active: #193c47; --ifm-tabs-color-active-border: #4cb3d4; background-color: rgb(238, 249, 253); border-color: rgb(76, 179, 212); border-style: solid; border-width: 0px 0px 0px 5px; border-image: none 100% / 1 / 0 stretch; border-radius: 6.4px; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px; padding: 16px; margin-bottom: 1em; font-family: system-ui, -apple-system, &amp;quot;Segoe UI&amp;quot;, Roboto, Ubuntu, Cantarell, &amp;quot;Noto Sans&amp;quot;, sans-serif, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;, &amp;quot;Segoe UI Symbol&amp;quot;; font-size: 16px; text-wrap-mode: wrap;&quot;&gt;&lt;div class=&quot;admonitionHeading_Gvgb&quot; style=&quot;box-sizing: border-box; text-transform: uppercase; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-size-adjust: none; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-variant-emoji: normal; font-weight: 700; font-stretch: normal; font-size: 14px; line-height: 1.25; margin-bottom: 0.3rem;&quot;&gt;&lt;span class=&quot;admonitionIcon_Rf37&quot; style=&quot;box-sizing: border-box; display: inline-block; margin-right: 0.4em; vertical-align: middle;&quot;&gt;&lt;svg viewbox=&quot;0 0 14 16&quot;&gt;&lt;path fill-rule=&quot;evenodd&quot; d=&quot;M7 2.3c3.14 0 5.7 2.56 5.7 5.7s-2.56 5.7-5.7 5.7A5.71 5.71 0 0 1 1.3 8c0-3.14 2.56-5.7 5.7-5.7zM7 1C3.14 1 0 4.14 0 8s3.14 7 7 7 7-3.14 7-7-3.14-7-7-7zm1 3H6v5h2V4zm0 6H6v2h2v-2z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: border-box;&quot;&gt;信息&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;admonitionContent_BuS1&quot; style=&quot;box-sizing: border-box;&quot;&gt;&lt;ol style=&quot;box-sizing: border-box; margin-bottom: 16px; padding-left: 32px;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p _msttexthash=&quot;217666592&quot; _msthash=&quot;165&quot; style=&quot;box-sizing: border-box; margin-top: 16px; margin-bottom: 20px;&quot;&gt;&lt;span _istranslated=&quot;1&quot; style=&quot;box-sizing: border-box; font-weight: 700;&quot;&gt;打开 PowerShell&lt;/span&gt;&lt;br _istranslated=&quot;1&quot; style=&quot;box-sizing: border-box;&quot;/&gt;为此，请按 Windows 键 + X，然后选择 PowerShell 或终端。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 16px; margin-bottom: 20px;&quot;&gt;&lt;span _msttexthash=&quot;79349881&quot; _msthash=&quot;166&quot; style=&quot;box-sizing: border-box; font-weight: 700;&quot;&gt;复制并粘贴下面的代码，然后按 Enter。&lt;/span&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;div class=&quot;language-text codeBlockContainer_Ckt0 theme-code-block&quot; style=&quot;box-sizing: border-box; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(246, 248, 250); color: rgb(57, 58, 52); border-radius: 6.4px; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px; margin-bottom: 20px; --prism-color: #393A34; --prism-background-color: #f6f8fa;&quot;&gt;&lt;div class=&quot;codeBlockContent_QJqH&quot; style=&quot;box-sizing: border-box; border-radius: inherit; direction: ltr; position: relative;&quot;&gt;&lt;pre tabindex=&quot;0&quot; class=&quot;prism-code language-text codeBlock_bY9V thin-scrollbar&quot; style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; overflow: auto; background-color: rgb(246, 248, 250); border-radius: 6.4px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-size-adjust: none; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-variant-emoji: normal; font-stretch: normal; font-size: 14.4px; line-height: 1.45; font-family: SFMono-Regular, Menlo, Monaco, Consolas, &amp;quot;Liberation Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, monospace; padding: 0px; --ifm-pre-background: #f6f8fa; scrollbar-width: thin;&quot;&gt;&lt;code class=&quot;codeBlockLines_e6Vv&quot; style=&quot;box-sizing: border-box; vertical-align: middle; background-color: initial; border: none; border-radius: 6.4px; font: inherit; padding: 16px; float: left; min-width: 100%;&quot;&gt;&lt;span class=&quot;token-line&quot; style=&quot;box-sizing: border-box;&quot;&gt;&lt;span class=&quot;token plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;irm https://get.activated.win | iex&lt;/span&gt;&lt;br style=&quot;box-sizing: border-box;&quot;/&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div class=&quot;buttonGroup_M5ko&quot; style=&quot;box-sizing: border-box; column-gap: 0.2rem; display: flex; position: absolute; right: 8px; top: 8px;&quot;&gt;&lt;button type=&quot;button&quot; aria-label=&quot;将代码复制到剪贴板&quot; title=&quot;Copy&quot; class=&quot;clean-btn&quot; _mstaria-label=&quot;416715&quot; _msthash=&quot;272&quot; style=&quot;background: none 0% 0% / auto repeat scroll padding-box border-box rgb(246, 248, 250); border-width: 1px; border-style: solid; border-color: rgb(218, 221, 225); border-image: none 100% / 1 / 0 stretch; color: rgb(57, 58, 52); cursor: pointer; font-family: inherit; padding: 0.4rem; align-items: center; border-radius: 6.4px; display: flex; line-height: 0; opacity: 0; transition: opacity 0.2s ease-in-out;&quot;&gt;&lt;span class=&quot;copyButtonIcons_IEyt&quot; aria-hidden=&quot;true&quot; style=&quot;box-sizing: border-box; height: 1.125rem; position: relative; width: 1.125rem;&quot;&gt;&lt;svg viewbox=&quot;0 0 24 24&quot; class=&quot;copyButtonIcon_TrPX&quot;&gt;&lt;path fill=&quot;currentColor&quot; d=&quot;M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;&lt;svg viewbox=&quot;0 0 24 24&quot; class=&quot;copyButtonSuccessIcon_cVMy&quot;&gt;&lt;path fill=&quot;currentColor&quot; d=&quot;M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;p _msttexthash=&quot;146008447&quot; _msthash=&quot;167&quot; style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px;&quot;&gt;或者，您可以使用以下内容（将来将弃用）：&lt;/p&gt;&lt;div class=&quot;language-text codeBlockContainer_Ckt0 theme-code-block&quot; style=&quot;box-sizing: border-box; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(246, 248, 250); color: rgb(57, 58, 52); border-radius: 6.4px; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px; margin-bottom: 20px; --prism-color: #393A34; --prism-background-color: #f6f8fa;&quot;&gt;&lt;div class=&quot;codeBlockContent_QJqH&quot; style=&quot;box-sizing: border-box; border-radius: inherit; direction: ltr; position: relative;&quot;&gt;&lt;pre tabindex=&quot;0&quot; class=&quot;prism-code language-text codeBlock_bY9V thin-scrollbar&quot; style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 0px; overflow: auto; background-color: rgb(246, 248, 250); border-radius: 6.4px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-size-adjust: none; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-variant-emoji: normal; font-stretch: normal; font-size: 14.4px; line-height: 1.45; font-family: SFMono-Regular, Menlo, Monaco, Consolas, &amp;quot;Liberation Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, monospace; padding: 0px; --ifm-pre-background: #f6f8fa; scrollbar-width: thin;&quot;&gt;&lt;code class=&quot;codeBlockLines_e6Vv&quot; style=&quot;box-sizing: border-box; vertical-align: middle; background-color: initial; border: none; border-radius: 6.4px; font: inherit; padding: 16px; float: left; min-width: 100%;&quot;&gt;&lt;span class=&quot;token-line&quot; style=&quot;box-sizing: border-box;&quot;&gt;&lt;span class=&quot;token plain&quot; style=&quot;box-sizing: border-box;&quot;&gt;irm https://massgrave.dev/get | iex&lt;/span&gt;&lt;br style=&quot;box-sizing: border-box;&quot;/&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;div class=&quot;buttonGroup_M5ko&quot; style=&quot;box-sizing: border-box; column-gap: 0.2rem; display: flex; position: absolute; right: 8px; top: 8px;&quot;&gt;&lt;button type=&quot;button&quot; aria-label=&quot;将代码复制到剪贴板&quot; title=&quot;Copy&quot; class=&quot;clean-btn&quot; _mstaria-label=&quot;416715&quot; _msthash=&quot;271&quot; style=&quot;background: none 0% 0% / auto repeat scroll padding-box border-box rgb(246, 248, 250); border-width: 1px; border-style: solid; border-color: rgb(218, 221, 225); border-image: none 100% / 1 / 0 stretch; color: rgb(57, 58, 52); cursor: pointer; font-family: inherit; padding: 0.4rem; align-items: center; border-radius: 6.4px; display: flex; line-height: 0; opacity: 0; transition: opacity 0.2s ease-in-out;&quot;&gt;&lt;span class=&quot;copyButtonIcons_IEyt&quot; aria-hidden=&quot;true&quot; style=&quot;box-sizing: border-box; height: 1.125rem; position: relative; width: 1.125rem;&quot;&gt;&lt;svg viewbox=&quot;0 0 24 24&quot; class=&quot;copyButtonIcon_TrPX&quot;&gt;&lt;path fill=&quot;currentColor&quot; d=&quot;M19,21H8V7H19M19,5H8A2,2 0 0,0 6,7V21A2,2 0 0,0 8,23H19A2,2 0 0,0 21,21V7A2,2 0 0,0 19,5M16,1H4A2,2 0 0,0 2,3V17H4V3H16V1Z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;&lt;svg viewbox=&quot;0 0 24 24&quot; class=&quot;copyButtonSuccessIcon_cVMy&quot;&gt;&lt;path fill=&quot;currentColor&quot; d=&quot;M21,7L9,19L3.5,13.5L4.91,12.09L9,16.17L19.59,5.59L21,7Z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;&lt;/span&gt;&lt;/button&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;ol start=&quot;3&quot; style=&quot;box-sizing: border-box; padding-left: 32px;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p _msttexthash=&quot;164239569&quot; _msthash=&quot;168&quot; style=&quot;box-sizing: border-box; margin-top: 16px; margin-bottom: 20px;&quot;&gt;您将看到激活选项。选择以绿色突出显示的激活选项。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p _msttexthash=&quot;9098934&quot; _msthash=&quot;169&quot; style=&quot;box-sizing: border-box; margin-top: 16px; margin-bottom: 20px;&quot;&gt;就这样&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;/div&gt;&lt;h4 class=&quot;anchor anchorWithStickyNavbar_LWe7&quot; id=&quot;method-2---traditional-windows-vista-and-later&quot; _msttexthash=&quot;103169820&quot; _msthash=&quot;171&quot; style=&quot;box-sizing: border-box; color: rgb(28, 30, 33); font-family: system-ui, -apple-system, &amp;quot;Segoe UI&amp;quot;, Roboto, Ubuntu, Cantarell, &amp;quot;Noto Sans&amp;quot;, sans-serif, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;, &amp;quot;Segoe UI Symbol&amp;quot;; line-height: 1.25; margin: 25px 0px 20px; font-size: 16px; scroll-margin-top: 68px; text-wrap-mode: wrap;&quot;&gt;方法 2 - 传统（Windows Vista 及更高版本）&lt;/h4&gt;&lt;p&gt;&lt;details class=&quot;details_lb9f isBrowser_bmU9 alert alert--info details_b_Ee&quot; data-collapsed=&quot;false&quot; open=&quot;&quot; style=&quot;box-sizing: border-box; color: rgb(25, 60, 71); --ifm-alert-background-color: #eef9fd; --ifm-alert-background-color-highlight: #54c7ec26; --ifm-alert-foreground-color: #193c47; --ifm-alert-border-color: #4cb3d4; --ifm-code-background: #54c7ec26; --ifm-link-color: #193c47; --ifm-link-hover-color: #193c47; --ifm-link-decoration: underline; --ifm-tabs-color: #193c47; --ifm-tabs-color-active: #193c47; --ifm-tabs-color-active-border: #4cb3d4; background-color: rgb(238, 249, 253); border-color: rgb(76, 179, 212); border-style: solid; border-width: 1px; border-image: none 100% / 1 / 0 stretch; border-radius: 6.4px; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px; padding: 16px; --docusaurus-details-summary-arrow-size: 0.38rem; --docusaurus-details-transition: transform 200ms ease; --docusaurus-details-decoration-color: #4cb3d4; margin: 0px 0px 16px; font-family: system-ui, -apple-system, &amp;quot;Segoe UI&amp;quot;, Roboto, Ubuntu, Cantarell, &amp;quot;Noto Sans&amp;quot;, sans-serif, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;, &amp;quot;Segoe UI Symbol&amp;quot;; font-size: 16px; text-wrap-mode: wrap;&quot;&gt;&lt;summary _msttexthash=&quot;22526751&quot; _msthash=&quot;172&quot; style=&quot;box-sizing: border-box; list-style-position: initial; list-style-type: none; cursor: pointer; padding-left: 1rem; position: relative;&quot;&gt;点击这里查看&lt;/summary&gt;&lt;div style=&quot;box-sizing: border-box; overflow: visible; height: auto; will-change: height; transition: height 313ms ease-in-out;&quot;&gt;&lt;div class=&quot;collapsibleContent_i85q&quot; style=&quot;box-sizing: border-box; border-top: 1px solid rgb(76, 179, 212); margin-top: 1rem; padding-top: 1rem;&quot;&gt;&lt;ol style=&quot;box-sizing: border-box; margin-bottom: 16px; padding-left: 32px;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;&lt;span style=&quot;box-sizing: border-box;&quot;&gt;使用以下链接之一下载文件：&lt;br _mstmutation=&quot;1&quot; _istranslated=&quot;1&quot; style=&quot;box-sizing: border-box;&quot;/&gt;&lt;br _mstmutation=&quot;1&quot; _istranslated=&quot;1&quot; style=&quot;box-sizing: border-box;&quot;/&gt;或&lt;/span&gt;&lt;code style=&quot;box-sizing: border-box; vertical-align: middle; background-color: rgba(84, 199, 236, 0.15); border: 0.1rem solid rgba(0, 0, 0, 0.1); border-radius: 6.4px; font-family: SFMono-Regular, Menlo, Monaco, Consolas, &amp;quot;Liberation Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 1.6px;&quot;&gt;https://github.com/massgravel/Microsoft-Activation-Scripts/archive/refs/heads/master.zip&lt;/code&gt;&lt;br style=&quot;box-sizing: border-box;&quot;/&gt;&lt;code style=&quot;box-sizing: border-box; vertical-align: middle; background-color: rgba(84, 199, 236, 0.15); border: 0.1rem solid rgba(0, 0, 0, 0.1); border-radius: 6.4px; font-family: SFMono-Regular, Menlo, Monaco, Consolas, &amp;quot;Liberation Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 1.6px;&quot;&gt;https://git.activated.win/massgrave/Microsoft-Activation-Scripts/archive/master.zip&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;右键单击下载的 zip 文件并将其解压。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;span style=&quot;box-sizing: border-box;&quot;&gt;在解压的文件夹中，找到名为 的文件夹。&lt;/span&gt;&lt;code style=&quot;box-sizing: border-box; vertical-align: middle; background-color: rgba(84, 199, 236, 0.15); border: 0.1rem solid rgba(0, 0, 0, 0.1); border-radius: 6.4px; font-family: SFMono-Regular, Menlo, Monaco, Consolas, &amp;quot;Liberation Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 1.6px;&quot;&gt;All-In-One-Version&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;span style=&quot;box-sizing: border-box;&quot;&gt;运行名为 的文件。&lt;/span&gt;&lt;code style=&quot;box-sizing: border-box; vertical-align: middle; background-color: rgba(84, 199, 236, 0.15); border: 0.1rem solid rgba(0, 0, 0, 0.1); border-radius: 6.4px; font-family: SFMono-Regular, Menlo, Monaco, Consolas, &amp;quot;Liberation Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 1.6px;&quot;&gt;MAS_AIO.cmd&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;您将看到激活选项。按照屏幕上的说明进行作。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;就这样。&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;/div&gt;&lt;/div&gt;&lt;/details&gt;&lt;/p&gt;&lt;hr style=&quot;box-sizing: border-box; background-color: rgb(190, 195, 201); border: 0px; height: 1px; margin: 24px 0px; color: rgb(28, 30, 33); font-family: system-ui, -apple-system, &amp;quot;Segoe UI&amp;quot;, Roboto, Ubuntu, Cantarell, &amp;quot;Noto Sans&amp;quot;, sans-serif, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;, &amp;quot;Segoe UI Symbol&amp;quot;; font-size: 16px; text-wrap-mode: wrap;&quot;/&gt;&lt;ul style=&quot;box-sizing: border-box; margin-bottom: 20px; padding-left: 32px; color: rgb(28, 30, 33); font-family: system-ui, -apple-system, &amp;quot;Segoe UI&amp;quot;, Roboto, Ubuntu, Cantarell, &amp;quot;Noto Sans&amp;quot;, sans-serif, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;, &amp;quot;Segoe UI Symbol&amp;quot;; font-size: 16px; text-wrap-mode: wrap;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;若要激活其他产品，例如&amp;nbsp;&lt;span _istranslated=&quot;1&quot; style=&quot;box-sizing: border-box; font-weight: 700;&quot;&gt;Office for macOS、Visual Studio、RDS CAL 和 Windows XP，&lt;/span&gt;请查看&lt;a href=&quot;https://massgrave.dev/unsupported_products_activation&quot; _istranslated=&quot;1&quot; style=&quot;box-sizing: border-box; transition: color 0.2s cubic-bezier(0.08, 0.52, 0.52, 1); color: rgb(164, 59, 141); text-decoration-line: none; text-decoration-style: solid; text-decoration-color: rgb(164, 59, 141);&quot;&gt;此处&lt;/a&gt;。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;要在无人值守模式下运行脚本，请检查&lt;a href=&quot;https://massgrave.dev/command_line_switches&quot; _istranslated=&quot;1&quot; style=&quot;box-sizing: border-box; transition: color 0.2s cubic-bezier(0.08, 0.52, 0.52, 1); color: rgb(164, 59, 141); text-decoration-line: none; text-decoration-style: solid; text-decoration-color: rgb(164, 59, 141);&quot;&gt;此处&lt;/a&gt;。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;hr style=&quot;box-sizing: border-box; background-color: rgb(190, 195, 201); border: 0px; height: 1px; margin: 24px 0px; color: rgb(28, 30, 33); font-family: system-ui, -apple-system, &amp;quot;Segoe UI&amp;quot;, Roboto, Ubuntu, Cantarell, &amp;quot;Noto Sans&amp;quot;, sans-serif, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;, &amp;quot;Segoe UI Symbol&amp;quot;; font-size: 16px; text-wrap-mode: wrap;&quot;/&gt;&lt;h3 class=&quot;anchor anchorWithStickyNavbar_LWe7&quot; id=&quot;not-working-&quot; _msttexthash=&quot;8003801&quot; _msthash=&quot;182&quot; style=&quot;box-sizing: border-box; color: rgb(28, 30, 33); font-family: system-ui, -apple-system, &amp;quot;Segoe UI&amp;quot;, Roboto, Ubuntu, Cantarell, &amp;quot;Noto Sans&amp;quot;, sans-serif, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;, &amp;quot;Segoe UI Symbol&amp;quot;; line-height: 1.25; margin: 30px 0px 20px; font-size: 24px; scroll-margin-top: 68px; --ifm-h3-font-size: 1.5rem; text-wrap-mode: wrap;&quot;&gt;不工作 ❓&lt;/h3&gt;&lt;ul style=&quot;box-sizing: border-box; margin-bottom: 20px; padding-left: 32px; color: rgb(28, 30, 33); font-family: system-ui, -apple-system, &amp;quot;Segoe UI&amp;quot;, Roboto, Ubuntu, Cantarell, &amp;quot;Noto Sans&amp;quot;, sans-serif, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;, &amp;quot;Segoe UI Symbol&amp;quot;; font-size: 16px; text-wrap-mode: wrap;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;如果无法使用 PowerShell 方法启动&amp;nbsp;&lt;span _istranslated=&quot;1&quot; style=&quot;box-sizing: border-box; font-weight: 700;&quot;&gt;MAS&lt;/span&gt;，请参阅上面的方法&amp;nbsp;&lt;span _istranslated=&quot;1&quot; style=&quot;box-sizing: border-box; font-weight: 700;&quot;&gt;2&lt;/span&gt;。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;如果 MAS 启动但显示错误，请检查以蓝色突出显示的故障排除步骤并按照这些步骤进行作。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;如果问题仍然存在，请随时在&lt;a href=&quot;https://massgrave.dev/troubleshoot&quot; _istranslated=&quot;1&quot; style=&quot;box-sizing: border-box; transition: color 0.2s cubic-bezier(0.08, 0.52, 0.52, 1); color: rgb(164, 59, 141); text-decoration-line: none; text-decoration-style: solid; text-decoration-color: rgb(164, 59, 141);&quot;&gt;此处&lt;/a&gt;与我们联系。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;hr style=&quot;box-sizing: border-box; background-color: rgb(190, 195, 201); border: 0px; height: 1px; margin: 24px 0px; color: rgb(28, 30, 33); font-family: system-ui, -apple-system, &amp;quot;Segoe UI&amp;quot;, Roboto, Ubuntu, Cantarell, &amp;quot;Noto Sans&amp;quot;, sans-serif, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;, &amp;quot;Segoe UI Symbol&amp;quot;; font-size: 16px; text-wrap-mode: wrap;&quot;/&gt;&lt;div class=&quot;theme-admonition theme-admonition-note admonition_xJq3 alert alert--secondary&quot; style=&quot;box-sizing: border-box; color: rgb(71, 71, 72); --ifm-alert-background-color: #fdfdfe; --ifm-alert-background-color-highlight: #ebedf026; --ifm-alert-foreground-color: #474748; --ifm-alert-border-color: #d4d5d8; --ifm-code-background: #ebedf026; --ifm-link-color: #474748; --ifm-link-hover-color: #474748; --ifm-link-decoration: underline; --ifm-tabs-color: #474748; --ifm-tabs-color-active: #474748; --ifm-tabs-color-active-border: #d4d5d8; background-color: rgb(253, 253, 254); border-color: rgb(212, 213, 216); border-style: solid; border-width: 0px 0px 0px 5px; border-image: none 100% / 1 / 0 stretch; border-radius: 6.4px; box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px; padding: 16px; margin-bottom: 1em; font-family: system-ui, -apple-system, &amp;quot;Segoe UI&amp;quot;, Roboto, Ubuntu, Cantarell, &amp;quot;Noto Sans&amp;quot;, sans-serif, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;, &amp;quot;Segoe UI Symbol&amp;quot;; font-size: 16px; text-wrap-mode: wrap;&quot;&gt;&lt;div class=&quot;admonitionHeading_Gvgb&quot; style=&quot;box-sizing: border-box; text-transform: uppercase; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; font-size-adjust: none; font-kerning: auto; font-optical-sizing: auto; font-feature-settings: normal; font-variation-settings: normal; font-variant-position: normal; font-variant-emoji: normal; font-weight: 700; font-stretch: normal; font-size: 14px; line-height: 1.25; margin-bottom: 0.3rem;&quot;&gt;&lt;span class=&quot;admonitionIcon_Rf37&quot; style=&quot;box-sizing: border-box; display: inline-block; margin-right: 0.4em; vertical-align: middle;&quot;&gt;&lt;svg viewbox=&quot;0 0 14 16&quot;&gt;&lt;path fill-rule=&quot;evenodd&quot; d=&quot;M6.3 5.69a.942.942 0 0 1-.28-.7c0-.28.09-.52.28-.7.19-.18.42-.28.7-.28.28 0 .52.09.7.28.18.19.28.42.28.7 0 .28-.09.52-.28.7a1 1 0 0 1-.7.3c-.28 0-.52-.11-.7-.3zM8 7.99c-.02-.25-.11-.48-.31-.69-.2-.19-.42-.3-.69-.31H6c-.27.02-.48.13-.69.31-.2.2-.3.44-.31.69h1v3c.02.27.11.5.31.69.2.2.42.31.69.31h1c.27 0 .48-.11.69-.31.2-.19.3-.42.31-.69H8V7.98v.01zM7 2.3c-3.14 0-5.7 2.54-5.7 5.68 0 3.14 2.56 5.7 5.7 5.7s5.7-2.55 5.7-5.7c0-3.15-2.56-5.69-5.7-5.69v.01zM7 .98c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.12-7-7 3.14-7 7-7z&quot;&gt;&lt;/path&gt;&lt;/svg&gt;&lt;/span&gt;&lt;span style=&quot;box-sizing: border-box;&quot;&gt;注意&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;admonitionContent_BuS1&quot; style=&quot;box-sizing: border-box;&quot;&gt;&lt;ul style=&quot;box-sizing: border-box; padding-left: 32px;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;PowerShell 中的 IRM 命令从指定的 URL 下载脚本，IEX 命令执行它。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;在执行命令之前，请务必仔细检查 URL，并在手动下载文件时验证源是否可信。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;请小心，因为有些人通过更改 IRM 命令中的 URL 来传播伪装成 MAS 的恶意软件。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;&lt;/div&gt;&lt;hr style=&quot;box-sizing: border-box; background-color: rgb(190, 195, 201); border: 0px; height: 1px; margin: 24px 0px; color: rgb(28, 30, 33); font-family: system-ui, -apple-system, &amp;quot;Segoe UI&amp;quot;, Roboto, Ubuntu, Cantarell, &amp;quot;Noto Sans&amp;quot;, sans-serif, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;, &amp;quot;Segoe UI Symbol&amp;quot;; font-size: 16px; text-wrap-mode: wrap;&quot;/&gt;&lt;h2 class=&quot;anchor anchorWithStickyNavbar_LWe7&quot; id=&quot;mas-latest-release&quot; _msttexthash=&quot;16201458&quot; _msthash=&quot;191&quot; style=&quot;box-sizing: border-box; color: rgb(28, 30, 33); font-family: system-ui, -apple-system, &amp;quot;Segoe UI&amp;quot;, Roboto, Ubuntu, Cantarell, &amp;quot;Noto Sans&amp;quot;, sans-serif, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;, &amp;quot;Segoe UI Symbol&amp;quot;; line-height: 1.25; margin: 40px 0px 20px; font-size: 32px; scroll-margin-top: 68px; --ifm-h2-font-size: 2rem; text-wrap-mode: wrap;&quot;&gt;MAS 最新版本&lt;/h2&gt;&lt;p _msttexthash=&quot;129949937&quot; _msthash=&quot;192&quot; style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(28, 30, 33); font-family: system-ui, -apple-system, &amp;quot;Segoe UI&amp;quot;, Roboto, Ubuntu, Cantarell, &amp;quot;Noto Sans&amp;quot;, sans-serif, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, Helvetica, Arial, sans-serif, &amp;quot;Apple Color Emoji&amp;quot;, &amp;quot;Segoe UI Emoji&amp;quot;, &amp;quot;Segoe UI Symbol&amp;quot;; font-size: 16px; text-wrap-mode: wrap;&quot;&gt;最新版本 - v3.4 （2025 年 6 月 3 日）&lt;br _istranslated=&quot;1&quot; style=&quot;box-sizing: border-box;&quot;/&gt;&lt;a href=&quot;https://github.com/massgravel/Microsoft-Activation-Scripts&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; _istranslated=&quot;1&quot; style=&quot;box-sizing: border-box; transition: color 0.2s cubic-bezier(0.08, 0.52, 0.52, 1); color: rgb(164, 59, 141); text-decoration-line: none; text-decoration-style: solid; text-decoration-color: rgb(164, 59, 141);&quot;&gt;GitHub&lt;/a&gt;&amp;nbsp;/&amp;nbsp;&lt;a href=&quot;https://dev.azure.com/massgrave/_git/Microsoft-Activation-Scripts&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; _istranslated=&quot;1&quot; style=&quot;box-sizing: border-box; transition: color 0.2s cubic-bezier(0.08, 0.52, 0.52, 1); color: rgb(164, 59, 141); text-decoration-line: none; text-decoration-style: solid; text-decoration-color: rgb(164, 59, 141);&quot;&gt;Azure DevOps&lt;/a&gt;&amp;nbsp;/&amp;nbsp;&lt;a href=&quot;https://git.activated.win/massgrave/Microsoft-Activation-Scripts&quot; target=&quot;_blank&quot; rel=&quot;noopener noreferrer&quot; _istranslated=&quot;1&quot; style=&quot;box-sizing: border-box; transition: color 0.2s cubic-bezier(0.08, 0.52, 0.52, 1); color: rgb(164, 59, 141); text-decoration-line: none; text-decoration-style: solid; text-decoration-color: rgb(164, 59, 141);&quot;&gt;自承载 Git&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Thu, 07 Aug 2025 13:37:54 +0800</pubDate></item><item><title>光猫 IPv6（拨号 或 桥接）</title><link>https://855333.xyz/?id=9</link><description>&lt;div id=&quot;cnblogs_post_body&quot; class=&quot;blogpost-body cnblogs-markdown&quot; style=&quot;margin: 0px 0px 20px; padding: 0px; word-break: break-word; color: rgb(216, 216, 216); font-family: Lato, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; font-size: 18px; text-wrap-mode: wrap; background-color: rgb(32, 32, 32);&quot;&gt;&lt;h2 id=&quot;一移动光猫超级账号&quot; style=&quot;margin: 10px 0px; padding: 0px; font-size: 22px; line-height: 1.5; border-bottom: 2px solid rgb(239, 112, 96);&quot;&gt;一、移动光猫超级账号&lt;/h2&gt;&lt;h3 id=&quot;1-开启-telnet&quot; style=&quot;margin: 10px 0px; padding: 0px; font-size: 19px; line-height: 1.5;&quot;&gt;1. 开启 telnet&lt;/h3&gt;&lt;ul style=&quot;margin-left: 30px; padding: 0px; word-break: break-all;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;用光猫背后的普通账号。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;登陆光猫后输入：&lt;/p&gt;&lt;pre class=&quot;highlighter-prismjs language-none prismjs-lines-highlighted&quot; tabindex=&quot;0&quot; highlighted=&quot;true&quot; style=&quot;padding: 1em 16.2px; transition-duration: 0.2s; transition-property: background, font-size, border-color, border-radius, border-width, padding, margin, color; overflow: auto; --spacing-right: 1em; color: rgb(57, 58, 52); font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace; direction: ltr; word-spacing: normal; word-break: normal; font-size: 0.9em; line-height: 1.2em; tab-size: 4; hyphens: none; border: 1px solid rgb(221, 221, 221); background-color: white; --spacing-left: 1em; position: relative;&quot;&gt;复制http://192.168.1.1/getpage.gch?pid=1002&amp;amp;nextpage=tele_sec_tserver_t.gch&lt;/pre&gt;&lt;/li&gt;&lt;li&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;获得超级账号名。勾选开启 telnet ，确定。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h3 id=&quot;2-获取密码&quot; style=&quot;margin: 10px 0px; padding: 0px; font-size: 19px; line-height: 1.5;&quot;&gt;2. 获取密码&lt;/h3&gt;&lt;ul style=&quot;margin-left: 30px; padding: 0px; word-break: break-all;&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;Linux(Unraid 即可) 命令行输入&amp;nbsp;&lt;code style=&quot;margin: 0px 3px; line-height: 1.2; display: inline-block; overflow-x: auto; vertical-align: middle; padding: 0.2em 0.3em !important; font-family: consolas !important; border-radius: 3px !important; background-color: rgb(60, 61, 64) !important; border: none !important;&quot;&gt;telnet 192.168.1.1&lt;/code&gt;&amp;nbsp;（Windows 10 不默认开启）。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;登录：账号为&amp;nbsp;&lt;code style=&quot;margin: 0px 3px; line-height: 1.2; display: inline-block; overflow-x: auto; vertical-align: middle; padding: 0.2em 0.3em !important; font-family: consolas !important; border-radius: 3px !important; background-color: rgb(60, 61, 64) !important; border: none !important;&quot;&gt;CMCCAdmin&lt;/code&gt;&amp;nbsp;，密码为&amp;nbsp;&lt;code style=&quot;margin: 0px 3px; line-height: 1.2; display: inline-block; overflow-x: auto; vertical-align: middle; padding: 0.2em 0.3em !important; font-family: consolas !important; border-radius: 3px !important; background-color: rgb(60, 61, 64) !important; border: none !important;&quot;&gt;aDm8H%MdA&lt;/code&gt;&amp;nbsp;。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;依次输入：&lt;/p&gt;&lt;pre class=&quot;highlighter-prismjs prismjs-lines-highlighted language-shell&quot; tabindex=&quot;0&quot; highlighted=&quot;true&quot; style=&quot;padding: 1em 16.2px; transition-duration: 0.2s; transition-property: background, font-size, border-color, border-radius, border-width, padding, margin, color; overflow: auto; --spacing-right: 1em; color: rgb(57, 58, 52); font-family: Consolas, &amp;quot;Bitstream Vera Sans Mono&amp;quot;, &amp;quot;Courier New&amp;quot;, Courier, monospace; direction: ltr; word-spacing: normal; word-break: normal; font-size: 0.9em; line-height: 1.2em; tab-size: 4; hyphens: none; border: 1px solid rgb(221, 221, 221); background-color: white; --spacing-left: 1em; position: relative;&quot;&gt;复制sidbg&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;decry&amp;nbsp;/userconfig/cfg/db_user_cfg.xmlcat&amp;nbsp;/tmp/debug-decry-cfg&amp;nbsp;|&amp;nbsp;grep&amp;nbsp;Pass&lt;/pre&gt;&lt;/li&gt;&lt;li&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;找到类似&amp;nbsp;&lt;code style=&quot;margin: 0px 3px; line-height: 1.2; display: inline-block; overflow-x: auto; vertical-align: middle; padding: 0.2em 0.3em !important; font-family: consolas !important; border-radius: 3px !important; background-color: rgb(60, 61, 64) !important; border: none !important;&quot;&gt;&amp;lt;DM name=&amp;quot;Pass&amp;quot; val=&amp;quot;*********&amp;quot;/&amp;gt;&lt;/code&gt;&amp;nbsp;的项目，其中一项&amp;nbsp;&lt;code style=&quot;margin: 0px 3px; line-height: 1.2; display: inline-block; overflow-x: auto; vertical-align: middle; padding: 0.2em 0.3em !important; font-family: consolas !important; border-radius: 3px !important; background-color: rgb(60, 61, 64) !important; border: none !important;&quot;&gt;val&lt;/code&gt;&amp;nbsp;的值为超级账号密码。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h2 id=&quot;二路由器中继-ipv6&quot; style=&quot;margin: 10px 0px; padding: 0px; font-size: 22px; line-height: 1.5; border-bottom: 2px solid rgb(239, 112, 96);&quot;&gt;二、路由器中继 IPv6&lt;/h2&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;推荐使用&amp;nbsp;&lt;code style=&quot;margin: 0px 3px; line-height: 1.2; display: inline-block; overflow-x: auto; vertical-align: middle; padding: 0.2em 0.3em !important; font-family: consolas !important; border-radius: 3px !important; background-color: rgb(60, 61, 64) !important; border: none !important;&quot;&gt;方式二 光猫桥接&lt;/code&gt;&amp;nbsp;获取 IPv6 。光猫拨号获取的 IPv6 ，在终端超出物理一定距离后，更换了公网路由，就可能无法通过公网访问。&lt;/p&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;为此特意测试了&amp;nbsp;&lt;code style=&quot;margin: 0px 3px; line-height: 1.2; display: inline-block; overflow-x: auto; vertical-align: middle; padding: 0.2em 0.3em !important; font-family: consolas !important; border-radius: 3px !important; background-color: rgb(60, 61, 64) !important; border: none !important;&quot;&gt;方式二 光猫桥接&lt;/code&gt;&amp;nbsp;获取的 IPv6 ，在隔了“高铁间距的两座城市”这一概念上的距离后，依旧可以访问。&lt;/p&gt;&lt;h3 id=&quot;1-方式一-光猫-ipv4v6-拨号&quot; style=&quot;margin: 10px 0px; padding: 0px; font-size: 19px; line-height: 1.5;&quot;&gt;1. 方式一 光猫 IPv4/v6 拨号&lt;/h3&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;一般来说近两年的光猫都默认 PPPoE 以 IPv4/v6 模式拨号了，可以进超级账号看看。&lt;/p&gt;&lt;h4 id=&quot;11-光猫-pppoe-拨号&quot; style=&quot;margin: 10px 0px; padding: 0px;&quot;&gt;1.1 光猫 PPPoE 拨号&lt;/h4&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;光猫 PPPoE 拨号时，应选用如下配置：&lt;/p&gt;&lt;div class=&quot;table-wrapper&quot; style=&quot;margin: 0px; padding: 0px; overflow-x: auto;&quot;&gt;&lt;table width=&quot;960&quot; style=&quot;width: 882px;&quot;&gt;&lt;thead style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot; class=&quot;firstRow&quot;&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;项目&lt;/th&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;值&lt;/th&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;说明&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;IP协议版本&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;IPv4/v6&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;模式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;PPP&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DHCP服务使能&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;True&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;启用NAT&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;True&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;业务模式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;INTERNET&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;VLAN 模式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;改写(tag)&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;牢记默认&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;VLAN ID&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;101&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;牢记默认（取决于 “VLAN 模式”）&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;802.1p&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;0&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;使能DSCP&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;False&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DSCP&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;Null&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;MTU&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;1492&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;用户名&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;宽带账号名&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;密码&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;宽带账号密码&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;启用PassThrough功能&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;True&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;认证类型&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;自动&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;启用PPP扩展功能&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;False&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;全局地址获取方式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DHCPv6&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;网关获取方式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;SLAAC&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DNS获取方式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DHCPv6&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DNS获取方式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DHCPv6&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;blockquote style=&quot;margin: 15px 0px; padding: 1px 15px; background-image: none; border-top: none; border-right: none; border-bottom: none; border-left: 4px solid rgb(45, 140, 240); border-image: initial; color: inherit; border-radius: 4px; background-color: rgb(37, 37, 37);&quot;&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;注：True 为勾选， False 为不勾选。&lt;/p&gt;&lt;/blockquote&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;光猫超级账户查看&lt;code style=&quot;margin: 0px 3px; line-height: 1.2; display: inline-block; overflow-x: auto; vertical-align: middle; padding: 0.2em 0.3em !important; font-family: consolas !important; border-radius: 3px !important; background-color: rgb(60, 61, 64) !important; border: none !important;&quot;&gt;网络侧信息 -&amp;gt; IPv6连接信息&lt;/code&gt;&amp;nbsp;。显示如下表类似信息，则光猫已获取IPv6。&lt;/p&gt;&lt;div class=&quot;table-wrapper&quot; style=&quot;margin: 0px; padding: 0px; overflow-x: auto;&quot;&gt;&lt;table width=&quot;960&quot; style=&quot;width: 882px;&quot;&gt;&lt;thead style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot; class=&quot;firstRow&quot;&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;项目&lt;/th&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;值&lt;/th&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;说明&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;GUA获取方式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DHCPv6&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DNS获取方式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DHCPv6&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DNS1&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;2409:8062:2000:1::1&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;前缀获取方式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DHCPv6&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;获取前缀&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;2409:8a62:912:****::/60&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;代理前缀地址&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;网关获取方式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;SLAAC&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;网关&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;连接状态&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;连接&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;h4 id=&quot;12-设备获取&quot; style=&quot;margin: 10px 0px; padding: 0px;&quot;&gt;1.2 设备获取&lt;/h4&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;设备获取有两种方式，&lt;span style=&quot;margin: 0px 3px; padding: 0px;&quot;&gt;一是&lt;/span&gt;交换机直连光猫，字面意思。&lt;span style=&quot;margin: 0px 3px; padding: 0px;&quot;&gt;二是&lt;/span&gt;路由器中继IPv6。&lt;/p&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;但是手上目前没有支持 IPv6 中继的路由器，光猫直连地址也够用，等入手了再说。&lt;/p&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;&lt;code style=&quot;margin: 0px 3px; line-height: 1.2; display: inline-block; overflow-x: auto; vertical-align: middle; padding: 0.2em 0.3em !important; font-family: consolas !important; border-radius: 3px !important; background-color: rgb(60, 61, 64) !important; border: none !important;&quot;&gt;TODO&lt;/code&gt;&lt;/p&gt;&lt;h4 id=&quot;13-光猫关闭防火墙&quot; style=&quot;margin: 10px 0px; padding: 0px;&quot;&gt;1.3 光猫关闭防火墙&lt;/h4&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;超级账户&amp;nbsp;&lt;code style=&quot;margin: 0px 3px; line-height: 1.2; display: inline-block; overflow-x: auto; vertical-align: middle; padding: 0.2em 0.3em !important; font-family: consolas !important; border-radius: 3px !important; background-color: rgb(60, 61, 64) !important; border: none !important;&quot;&gt;安全 -&amp;gt; 防火墙&lt;/code&gt;&amp;nbsp;设置。&lt;/p&gt;&lt;div class=&quot;table-wrapper&quot; style=&quot;margin: 0px; padding: 0px; overflow-x: auto;&quot;&gt;&lt;table width=&quot;960&quot; style=&quot;width: 882px;&quot;&gt;&lt;thead style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot; class=&quot;firstRow&quot;&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;项目&lt;/th&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;值&lt;/th&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;说明&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;防火墙保护&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;False&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;防DOS保护&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;False&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;防端口扫描保护&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;False&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;IPv6Session防火墙开关&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;False&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;超级账户&amp;nbsp;&lt;code style=&quot;margin: 0px 3px; line-height: 1.2; display: inline-block; overflow-x: auto; vertical-align: middle; padding: 0.2em 0.3em !important; font-family: consolas !important; border-radius: 3px !important; background-color: rgb(60, 61, 64) !important; border: none !important;&quot;&gt;安全 -&amp;gt; 安全级&lt;/code&gt;&amp;nbsp;设置。&lt;/p&gt;&lt;div class=&quot;table-wrapper&quot; style=&quot;margin: 0px; padding: 0px; overflow-x: auto;&quot;&gt;&lt;table width=&quot;960&quot; style=&quot;width: 882px;&quot;&gt;&lt;thead style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot; class=&quot;firstRow&quot;&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;项目&lt;/th&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;值&lt;/th&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;说明&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;防火墙等级(IPv4)&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;低&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;h3 id=&quot;2-方式二-光猫桥接&quot; style=&quot;margin: 10px 0px; padding: 0px; font-size: 19px; line-height: 1.5;&quot;&gt;2. 方式二 光猫桥接&lt;/h3&gt;&lt;h4 id=&quot;21-光猫桥接&quot; style=&quot;margin: 10px 0px; padding: 0px;&quot;&gt;2.1 光猫桥接&lt;/h4&gt;&lt;div class=&quot;table-wrapper&quot; style=&quot;margin: 0px; padding: 0px; overflow-x: auto;&quot;&gt;&lt;table width=&quot;960&quot; style=&quot;width: 882px;&quot;&gt;&lt;thead style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot; class=&quot;firstRow&quot;&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;项目&lt;/th&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;值&lt;/th&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;说明&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;IP协议版本&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;IPv4/v6&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;模式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;桥模式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DHCP服务使能&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;True&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;业务模式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;INTERNET&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;VLAN 模式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;改写(tag)&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;牢记默认&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;VLAN ID&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;101&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;牢记默认（取决于 “VLAN 模式”）&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;802.1p&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;0&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;使能DSCP&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;False&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DSCP&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;Null&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;blockquote style=&quot;margin: 15px 0px; padding: 1px 15px; background-image: none; border-top: none; border-right: none; border-bottom: none; border-left: 4px solid rgb(45, 140, 240); border-image: initial; color: inherit; border-radius: 4px; background-color: rgb(37, 37, 37);&quot;&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;注意：保存 PPPoE 拨号的宽带账号密码，至少保存宽带账号，可以通过“中国移动”微信小程序或APP通过手机号更改密码，&lt;code style=&quot;margin: 0px 3px; line-height: 1.2; display: inline-block; overflow-x: auto; vertical-align: middle; padding: 0.2em 0.3em !important; font-family: consolas !important; border-radius: 3px !important; background-color: rgb(60, 61, 64) !important; border: none !important;&quot;&gt;服务 -&amp;gt; 宽带密码重置&lt;/code&gt;。若宽带账号没有保存，还得带身份证去营业厅查询。&lt;/p&gt;&lt;/blockquote&gt;&lt;h4 id=&quot;22-关闭光猫-qos&quot; style=&quot;margin: 10px 0px; padding: 0px;&quot;&gt;2.2 关闭光猫 QoS&lt;/h4&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;超级账户&amp;nbsp;&lt;code style=&quot;margin: 0px 3px; line-height: 1.2; display: inline-block; overflow-x: auto; vertical-align: middle; padding: 0.2em 0.3em !important; font-family: consolas !important; border-radius: 3px !important; background-color: rgb(60, 61, 64) !important; border: none !important;&quot;&gt;网络 -&amp;gt; QoS&lt;/code&gt;&amp;nbsp;。&lt;/p&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;若不关闭，部分路由器拨号不成功。&lt;/p&gt;&lt;div class=&quot;table-wrapper&quot; style=&quot;margin: 0px; padding: 0px; overflow-x: auto;&quot;&gt;&lt;table width=&quot;960&quot; style=&quot;width: 882px;&quot;&gt;&lt;thead style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot; class=&quot;firstRow&quot;&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;项目&lt;/th&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;值&lt;/th&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;说明&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;QoS启用开关&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;False&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;h4 id=&quot;23-路由器拨号&quot; style=&quot;margin: 10px 0px; padding: 0px;&quot;&gt;2.3 路由器拨号&lt;/h4&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;通过 IPv4 + IPv6 宽带账号密码拨号即可。&lt;/p&gt;&lt;h4 id=&quot;24-路由器中继&quot; style=&quot;margin: 10px 0px; padding: 0px;&quot;&gt;2.4 路由器中继&lt;/h4&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;我试用的是华为 AX3 Pro 。&lt;/p&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;&lt;code style=&quot;margin: 0px 3px; line-height: 1.2; display: inline-block; overflow-x: auto; vertical-align: middle; padding: 0.2em 0.3em !important; font-family: consolas !important; border-radius: 3px !important; background-color: rgb(60, 61, 64) !important; border: none !important;&quot;&gt;网络设置&lt;/code&gt;&amp;nbsp;设置&amp;nbsp;&lt;code style=&quot;margin: 0px 3px; line-height: 1.2; display: inline-block; overflow-x: auto; vertical-align: middle; padding: 0.2em 0.3em !important; font-family: consolas !important; border-radius: 3px !important; background-color: rgb(60, 61, 64) !important; border: none !important;&quot;&gt;IPv6&lt;/code&gt;&amp;nbsp;开启即可。PC 显示：&lt;/p&gt;&lt;div class=&quot;table-wrapper&quot; style=&quot;margin: 0px; padding: 0px; overflow-x: auto;&quot;&gt;&lt;table width=&quot;960&quot; style=&quot;width: 882px;&quot;&gt;&lt;thead style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot; class=&quot;firstRow&quot;&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;项目&lt;/th&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;值&lt;/th&gt;&lt;th style=&quot;margin: 0px; padding: 6px 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px; text-wrap-mode: nowrap; font-weight: 400;&quot;&gt;说明&lt;/th&gt;&lt;/tr&gt;&lt;/thead&gt;&lt;tbody style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;IPv6&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;True&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;因特网&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;地址类型&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;自动配置&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DNS 获取方式&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;自动配置&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;局域网&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;路由广播配置&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;自动配置&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr style=&quot;margin: 0px; padding: 0px;&quot;&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;DHCP 服务器&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;自动配置&lt;/td&gt;&lt;td style=&quot;margin: 0px; padding: 6px 15px; border-width: 0.888889px; border-color: rgb(47, 47, 47); border-image: none 100% / 1 / 0 stretch; border-collapse: collapse; min-width: 100px;&quot;&gt;&lt;br/&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;&lt;/div&gt;&lt;h4 id=&quot;25-路由器关闭防火墙&quot; style=&quot;margin: 10px 0px; padding: 0px;&quot;&gt;2.5 路由器关闭防火墙&lt;/h4&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;若不关闭防火墙，虽然可以获取 IPv6 ，但无法通过公网访问，请求被拦截。&lt;/p&gt;&lt;/div&gt;&lt;div class=&quot;esa-post-signature&quot; style=&quot;margin: 15px 0px 0px; padding: 12px 24px 12px 20px; font-size: 15px; background: none 0% 0% / auto repeat scroll padding-box border-box rgb(37, 37, 37); position: relative; border-radius: 4px; border-left: 4px solid rgb(45, 140, 240); color: rgb(216, 216, 216); font-family: Lato, &amp;quot;PingFang SC&amp;quot;, &amp;quot;Microsoft YaHei&amp;quot;, sans-serif; text-wrap-mode: wrap;&quot;&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;作者：Yogile&lt;/p&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;出处：&lt;a href=&quot;https://www.cnblogs.com/Yogile/p/16031515.html&quot; style=&quot;margin: 0px; padding: 0px; color: rgb(45, 140, 240); text-decoration-line: none;&quot;&gt;https://www.cnblogs.com/Yogile/p/16031515.html&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;margin: 13px auto; padding: 0px;&quot;&gt;版权：本作品采用「&lt;a href=&quot;https://creativecommons.org/licenses/by-nc-sa/4.0/&quot; target=&quot;_blank&quot; style=&quot;margin: 0px; padding: 0px; color: rgb(45, 140, 240); text-decoration-line: none;&quot;&gt;署名-非商业性使用-相同方式共享 4.0 国际&lt;/a&gt;」许可协议进行许可。&lt;/p&gt;&lt;/div&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Wed, 06 Aug 2025 21:55:52 +0800</pubDate></item><item><title>[技术]中兴G7615V2等光猫开启并固化 Telnet 教程（附常用命令）及工具下载</title><link>https://855333.xyz/?id=8</link><description>&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;为了更好地解锁权限，控制自家光猫，很多人会选择给光猫开启 Telnet，小白也不例外！上节提到家里升级宽带，更换了新光猫——中兴 G7615V2，自然不免要重新折腾一番。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;开启 Telnet 的前提，是知晓光猫的超级管理员账号和密码。即便不开启 Telnet，如果需要改桥接，启用 IPV6，也得使用超级密码登录光猫管理页面进行设置。之前小白所用的旧光猫，超级账号和密码是固定的（telecomadmin/cuadmin），从网上就可以查到。但现在的新光猫超密一般都是动态的，会不定期变化，好在跟装维小哥（联通称为“智家工程师”）要到了超密。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;其实也可以复位重置光猫，通过将光猫初始化，就能恢复默认的超级管理员密码。不过，不建议新手这样做，因为还需要其他一些设置，重置后容易导致光猫无法使用。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;移动/联通/电信常见默认管理员账户（仅供参考，建议跟装维人员要超密）&lt;/p&gt;&lt;ul style=&quot;box-sizing: border-box; margin-bottom: 10px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 700;&quot;&gt;移动&lt;/span&gt;管理员用户名：&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;CMCCAdmin&lt;/code&gt;密码：&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;aDm8H%MdA&lt;/code&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px;&quot;&gt;&lt;br/&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 700;&quot;&gt;联通&lt;/span&gt;管理员用户名：&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;CUAdmin&lt;/code&gt;密码：&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;CUAdmin&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 700;&quot;&gt;电信&lt;/span&gt;管理员用户名：&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;telecomadmin&lt;/code&gt;密码：&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;nE7jA%5m&lt;/code&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;获取到超密后，开启 Telnet 就比较简单了，我们可以直接使用具有可视化图形界面的中兴 Telnet 开启工具。在此给大家推荐两款，这两款工具似乎都是基于（Septrum101）zteOnu 的开源内核，软件界面分别如下：&lt;/p&gt;&lt;h1 style=&quot;box-sizing: border-box; font-size: 36px; margin: 20px 0px 10px; font-family: arial, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(47, 47, 47); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 700;&quot;&gt;第一款：&lt;/span&gt;&lt;/h1&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a class=&quot;wp-editor-md-post-content-link&quot; href=&quot;http://hackliu.com/wp-content/uploads/2025/02/wp_editor_md_5478345662936cc14dee1b50f48736a9.jpg&quot; target=&quot;_blank&quot; style=&quot;box-sizing: border-box; background-color: transparent; color: rgb(91, 192, 235); text-decoration-line: none; transition: 0.5s;&quot;&gt;&lt;img decoding=&quot;async&quot; src=&quot;http://hackliu.com/wp-content/uploads/2025/02/wp_editor_md_5478345662936cc14dee1b50f48736a9.jpg&quot; alt=&quot;&quot; style=&quot;box-sizing: border-box; border: 0px; vertical-align: middle; max-width: 100%;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;下载地址：&lt;a class=&quot;wp-editor-md-post-content-link&quot; href=&quot;http://hackliu.com/wp-content/uploads/2025/02/%E4%B8%AD%E5%85%B4Telnet%E5%BC%80%E5%90%AF%E5%B7%A5%E5%85%B7%EF%BC%88%E7%AC%AC%E4%B8%80%E6%AC%BE%EF%BC%89.zip&quot; target=&quot;_blank&quot; style=&quot;box-sizing: border-box; background-color: transparent; color: rgb(91, 192, 235); text-decoration-line: none; transition: 0.5s;&quot;&gt;中兴Telnet开启工具（第一款）&lt;/a&gt;&lt;/p&gt;&lt;h1 style=&quot;box-sizing: border-box; font-size: 36px; margin: 20px 0px 10px; font-family: arial, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(47, 47, 47); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 700;&quot;&gt;第二款：&lt;/span&gt;&lt;/h1&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a class=&quot;wp-editor-md-post-content-link&quot; href=&quot;http://hackliu.com/wp-content/uploads/2025/02/wp_editor_md_2795d2f5121ab7ef0816e3922cc79efb.jpg&quot; target=&quot;_blank&quot; style=&quot;box-sizing: border-box; background-color: transparent; color: rgb(91, 192, 235); text-decoration-line: none; transition: 0.5s;&quot;&gt;&lt;img decoding=&quot;async&quot; src=&quot;http://hackliu.com/wp-content/uploads/2025/02/wp_editor_md_2795d2f5121ab7ef0816e3922cc79efb.jpg&quot; alt=&quot;&quot; style=&quot;box-sizing: border-box; border: 0px; vertical-align: middle; max-width: 100%;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;注意：第二款软件必须完整解压，把整个文件夹放到桌面使用 运行软件的时候请管理员运行，如果报毒请把杀毒软件关闭&lt;br style=&quot;box-sizing: border-box;&quot;/&gt;如果是新版固件，请先修改网卡（网卡MAC改为 00:07:29:55:35:57）后选新版固件开启即可。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;下载地址：&lt;a class=&quot;wp-editor-md-post-content-link&quot; href=&quot;http://hackliu.com/wp-content/uploads/2025/02/%E4%B8%AD%E5%85%B4Telnet%E5%BC%80%E5%90%AF%E5%B7%A5%E5%85%B7%EF%BC%88%E7%AC%AC%E4%BA%8C%E6%AC%BE%EF%BC%89.zip&quot; target=&quot;_blank&quot; style=&quot;box-sizing: border-box; background-color: transparent; color: rgb(91, 192, 235); text-decoration-line: none; transition: 0.5s;&quot;&gt;中兴Telnet开启工具（第二款）&lt;/a&gt;&lt;/p&gt;&lt;h1 style=&quot;box-sizing: border-box; font-size: 36px; margin: 20px 0px 10px; font-family: arial, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(47, 47, 47); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 700;&quot;&gt;第三款：&lt;/span&gt;&lt;/h1&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;开源：zteOnu&lt;br style=&quot;box-sizing: border-box;&quot;/&gt;https://github.com/Septrum101/zteOnu&lt;/p&gt;&lt;h2 style=&quot;box-sizing: border-box; font-family: arial, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(47, 47, 47); margin-top: 20px; margin-bottom: 10px; font-size: 30px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;# 中兴光猫开启 Telnet(第一款工具)&lt;/h2&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img decoding=&quot;async&quot; src=&quot;http://hackliu.com/wp-content/uploads/2025/02/%E7%AC%AC%E4%B8%80%E6%AD%A5.png&quot; alt=&quot;&quot; style=&quot;box-sizing: border-box; border: 0px; vertical-align: middle; max-width: 100%;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img decoding=&quot;async&quot; src=&quot;http://hackliu.com/wp-content/uploads/2025/02/%E7%AC%AC%E4%BA%8C%E6%AD%A5.png&quot; alt=&quot;&quot; style=&quot;box-sizing: border-box; border: 0px; vertical-align: middle; max-width: 100%;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img decoding=&quot;async&quot; src=&quot;http://hackliu.com/wp-content/uploads/2025/02/%E7%AC%AC%E4%B8%89%E6%AD%A5.png&quot; alt=&quot;&quot; style=&quot;box-sizing: border-box; border: 0px; vertical-align: middle; max-width: 100%;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;img decoding=&quot;async&quot; src=&quot;http://hackliu.com/wp-content/uploads/2025/02/%E7%89%B9%E5%88%AB%E8%AF%B4%E6%98%8E%EF%BC%9A%E5%BC%80%E5%90%AF%E5%89%8D%E8%AF%B7%E5%81%9A%E7%B3%BB%E7%BB%9F%E5%85%BC%E5%AE%B9%E6%80%A7%E6%B5%8B%E8%AF%95.png&quot; alt=&quot;&quot; style=&quot;box-sizing: border-box; border: 0px; vertical-align: middle; max-width: 100%;&quot;/&gt;&lt;/p&gt;&lt;h2 style=&quot;box-sizing: border-box; font-family: arial, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(47, 47, 47); margin-top: 20px; margin-bottom: 10px; font-size: 30px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;# 中兴光猫开启 Telnet(第二款工具)&lt;/h2&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;两款工具使用大同小异，小白用的第二款，下面以联通给的中兴 G7615V2 光猫为例，给大家介绍（中兴系列的其他光猫，无论是移动、电信还是联通，理论上也同样适用）：&lt;/p&gt;&lt;ol style=&quot;box-sizing: border-box; margin-bottom: 10px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;开启 Telnet 前，需要指定本机网卡 MAC 地址为：&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;00:07:29:55:35:57&lt;/code&gt;&amp;nbsp;，实际输入时需要去掉冒号即：&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;000729553557&lt;/code&gt;。&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;设置网卡 MAC 地址，同样是在网卡（控制面板\网络和 Internet\网络连接）上&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;右键&lt;/code&gt;&amp;nbsp;–&amp;nbsp;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;属性&lt;/code&gt;&amp;nbsp;–&amp;nbsp;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;配置&lt;/code&gt;&amp;nbsp;–&amp;nbsp;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;高级&lt;/code&gt;之中，在&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;网络地址&lt;/code&gt;处填入上述值即可。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a class=&quot;wp-editor-md-post-content-link&quot; href=&quot;http://hackliu.com/wp-content/uploads/2025/02/wp_editor_md_5d8174925065c2c2be44efbf533bcb21.jpg&quot; target=&quot;_blank&quot; style=&quot;box-sizing: border-box; background-color: transparent; color: rgb(91, 192, 235); text-decoration-line: none; transition: 0.5s;&quot;&gt;&lt;img decoding=&quot;async&quot; src=&quot;http://hackliu.com/wp-content/uploads/2025/02/wp_editor_md_5d8174925065c2c2be44efbf533bcb21.jpg&quot; alt=&quot;&quot; style=&quot;box-sizing: border-box; border: 0px; vertical-align: middle; max-width: 100%;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;ol start=&quot;2&quot; style=&quot;box-sizing: border-box; margin-bottom: 10px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;之后，输入实际的超级账号和超级密码，一键开启即可，选择固化后 Telnet 的账号密码分别为&amp;nbsp;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;root&lt;/code&gt;&amp;nbsp;和&amp;nbsp;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;Zte521&lt;/code&gt;。&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;在这里一定要注意，超管账号和密码都要正确才行。小白刚开始就由于超管账号错误， 一直没有开启成功。因为起初一直以为联通的超级账号是&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;CUAdmin&lt;/code&gt;，也曾怀疑过超密发生了动态变化，结果没想到竟然是小写的&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;cuadmin&lt;/code&gt;。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;其实使用超密登录光猫（http://192.168.1.1/cu.html）后，在“设备管理” – “用户管理” – “管理维护账号”中就能看到！&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a class=&quot;wp-editor-md-post-content-link&quot; href=&quot;http://hackliu.com/wp-content/uploads/2025/02/wp_editor_md_e6ce9058ea8bc034837dac90d32bcaaf.jpg&quot; target=&quot;_blank&quot; style=&quot;box-sizing: border-box; background-color: transparent; color: rgb(91, 192, 235); text-decoration-line: none; transition: 0.5s;&quot;&gt;&lt;img decoding=&quot;async&quot; src=&quot;http://hackliu.com/wp-content/uploads/2025/02/wp_editor_md_e6ce9058ea8bc034837dac90d32bcaaf.jpg&quot; alt=&quot;&quot; style=&quot;box-sizing: border-box; border: 0px; vertical-align: middle; max-width: 100%;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;h1 style=&quot;box-sizing: border-box; font-size: 36px; margin: 20px 0px 10px; font-family: arial, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(47, 47, 47); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;固化Telnet&lt;/h1&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a class=&quot;wp-editor-md-post-content-link&quot; href=&quot;http://hackliu.com/wp-content/uploads/2025/02/wp_editor_md_d5af15233eaad49fee1a5b01060044ff.jpg&quot; target=&quot;_blank&quot; style=&quot;box-sizing: border-box; background-color: transparent; color: rgb(91, 192, 235); text-decoration-line: none; transition: 0.5s;&quot;&gt;&lt;img decoding=&quot;async&quot; src=&quot;http://hackliu.com/wp-content/uploads/2025/02/wp_editor_md_d5af15233eaad49fee1a5b01060044ff.jpg&quot; alt=&quot;&quot; style=&quot;box-sizing: border-box; border: 0px; vertical-align: middle; max-width: 100%;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;a class=&quot;wp-editor-md-post-content-link&quot; href=&quot;http://hackliu.com/wp-content/uploads/2025/02/wp_editor_md_993ab910d735ff364d5bdf8c87eb524c.jpg&quot; target=&quot;_blank&quot; style=&quot;box-sizing: border-box; background-color: transparent; color: rgb(91, 192, 235); text-decoration-line: none; transition: 0.5s;&quot;&gt;&lt;img decoding=&quot;async&quot; src=&quot;http://hackliu.com/wp-content/uploads/2025/02/wp_editor_md_993ab910d735ff364d5bdf8c87eb524c.jpg&quot; alt=&quot;&quot; style=&quot;box-sizing: border-box; border: 0px; vertical-align: middle; max-width: 100%;&quot;/&gt;&lt;/a&gt;&lt;/p&gt;&lt;h1 style=&quot;box-sizing: border-box; font-size: 36px; margin: 20px 0px 10px; font-family: arial, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(47, 47, 47); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;常用 Telnet 命令&lt;/h1&gt;&lt;h2 style=&quot;box-sizing: border-box; font-family: arial, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(47, 47, 47); margin-top: 20px; margin-bottom: 10px; font-size: 30px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;那么，光猫开启 Telnet 后有什么用呢？我们可以通过下方一些常用的 Telnet 命令窥测一二。&lt;/h2&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;修改超级账号：&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;sendcmd 1 DB set DevAuthInfo 0 User XXXXXX&lt;/code&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;修改超级密码：&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;sendcmd 1 DB set DevAuthInfo 0 Pass XXXXXX&lt;/code&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;保存修改：&amp;nbsp;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;sendcmd 1 DB save&lt;/code&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;注：上述“XXXXXX”应改为实际需要值。&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;普通用户提权为 admin，提权后 user 登录会直接进入超级用户页面&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;sendcmd 1 DB set DevAuthInfo 1 Level 1&lt;/code&gt;&lt;br style=&quot;box-sizing: border-box;&quot;/&gt;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;sendcmd 1 DB save&lt;/code&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;普通用户降权恢复&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;sendcmd 1 DB set DevAuthInfo 1 Level 2&lt;/code&gt;&lt;br style=&quot;box-sizing: border-box;&quot;/&gt;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;sendcmd 1 DB save&lt;/code&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;修改用户限制（修改最大用户数，最大数目不超过 255）：&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;sendcmd 1 DB p CltLmt&lt;/code&gt;&lt;br style=&quot;box-sizing: border-box;&quot;/&gt;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;sendcmd 1 DB set CltLmt 8 Max 255``sendcmd 1 DB set CltLmt 8 Enable 0&lt;/code&gt;&lt;br style=&quot;box-sizing: border-box;&quot;/&gt;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;sendcmd 1 DB save&lt;/code&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;修改连接数限制&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;sendcmd 1 DB p FWBase&lt;/code&gt;&amp;nbsp;//查看连接数设置信息&lt;br style=&quot;box-sizing: border-box;&quot;/&gt;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;sendcmd 1 DB set FWBase 0 FwConnMaxEnable 0&lt;/code&gt;&amp;nbsp;//禁用连接数限制&lt;br style=&quot;box-sizing: border-box;&quot;/&gt;&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;sendcmd 1 DB set FWBase 0 FwConntrackMax 65535&lt;/code&gt;&amp;nbsp;//设置最大连接数到 65535&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;sendcmd 1 DB set FWBase 0 ConntrackMax 65535&lt;/code&gt;&amp;nbsp;//设置单用户最大连接数到 65535&lt;code style=&quot;box-sizing: border-box; font-family: Menlo, Monaco, Consolas, &amp;quot;Courier New&amp;quot;, monospace; font-size: 14.4px; padding: 2px 4px; color: rgb(199, 37, 78); background-color: rgb(249, 242, 244); border-radius: 4px;&quot;&gt;sendcmd 1 DB save&lt;/code&gt;&amp;nbsp;//保存设置&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;………………………………&lt;/p&gt;&lt;h1 style=&quot;box-sizing: border-box; font-size: 36px; margin: 20px 0px 10px; font-family: arial, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(47, 47, 47); text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;其他Telnet命令&lt;/h1&gt;&lt;h2 style=&quot;box-sizing: border-box; font-family: arial, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(47, 47, 47); margin-top: 20px; margin-bottom: 10px; font-size: 30px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;登录成功后先修改地区&lt;/h2&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;查看所有地区编号cat&amp;nbsp;/etc/init.d/regioncode

//&amp;nbsp;查看当前地区cat&amp;nbsp;/userconfig/flag_type

//&amp;nbsp;修改地区&amp;nbsp;注：执行完这条命令后就会重启&amp;nbsp;telent需要重新开启(固化)upgradetest&amp;nbsp;sdefconf&amp;nbsp;地区号
//&amp;nbsp;举个例子&amp;nbsp;广东&amp;nbsp;210upgradetest&amp;nbsp;sdefconf&amp;nbsp;210&lt;/pre&gt;&lt;div class=&quot;toolbar&quot; style=&quot;box-sizing: border-box; position: absolute; top: 0.3em; right: 0.2em; transition: opacity 0.3s ease-in-out; opacity: 0;&quot;&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; color: #BBBBBB; font-size: 0.8em; padding: 0px 0.5em; background: rgba(224, 224, 224, 0.2); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px; border-radius: 0.5em;&quot;&gt;Bash&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;h2 style=&quot;box-sizing: border-box; font-family: arial, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(47, 47, 47); margin-top: 20px; margin-bottom: 10px; font-size: 30px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;中兴光猫通用命令&lt;/h2&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;查看光猫cpu使用率cat&amp;nbsp;/proc/cpuusage

//&amp;nbsp;查看设备温度cat&amp;nbsp;/proc/tempsensor

//&amp;nbsp;查看固件版本
upgradetest&amp;nbsp;getver

//&amp;nbsp;查看硬件信息cat&amp;nbsp;/proc/capability/boardinfo

//&amp;nbsp;查看日期时间date//&amp;nbsp;设置时间&amp;nbsp;默认UTC时区&amp;nbsp;国内时间需要-8小时date&amp;nbsp;-s&amp;nbsp;&amp;quot;xxxx-xx-xx&amp;nbsp;xx:xx:xx&amp;quot;//&amp;nbsp;举个例子(如果你删除了TR069&amp;nbsp;则需要在每次重启后手动设置一下)date&amp;nbsp;-s&amp;nbsp;&amp;quot;2024-11-13&amp;nbsp;01:39:00&amp;quot;//&amp;nbsp;查看设备总览
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;p&amp;nbsp;DevInfo

//&amp;nbsp;查看系统参数
setmac&amp;nbsp;show2&lt;/pre&gt;&lt;div class=&quot;toolbar&quot; style=&quot;box-sizing: border-box; position: absolute; top: 0.3em; right: 0.2em; transition: opacity 0.3s ease-in-out; opacity: 0;&quot;&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; color: #BBBBBB; font-size: 0.8em; padding: 0px 0.5em; background: rgba(224, 224, 224, 0.2); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px; border-radius: 0.5em;&quot;&gt;Bash&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;h2 style=&quot;box-sizing: border-box; font-family: arial, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(47, 47, 47); margin-top: 20px; margin-bottom: 10px; font-size: 30px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;保存修改过的设置&lt;/h2&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;保存设置
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;save
//&amp;nbsp;保存设置并重启
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;save&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;reboot&lt;/pre&gt;&lt;div class=&quot;toolbar&quot; style=&quot;box-sizing: border-box; position: absolute; top: 0.3em; right: 0.2em; transition: opacity 0.3s ease-in-out; opacity: 0;&quot;&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; color: #BBBBBB; font-size: 0.8em; padding: 0px 0.5em; background: rgba(224, 224, 224, 0.2); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px; border-radius: 0.5em;&quot;&gt;Bash&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;h2 style=&quot;box-sizing: border-box; font-family: arial, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(47, 47, 47); margin-top: 20px; margin-bottom: 10px; font-size: 30px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;必选&lt;/h2&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;需要从老光猫中获取的信息
setmac&amp;nbsp;1&amp;nbsp;2180&amp;nbsp;老光猫的宽带识别码(逻辑id)setmac&amp;nbsp;1&amp;nbsp;2176&amp;nbsp;老光猫的sn前四位(等于厂商代码)setmac&amp;nbsp;1&amp;nbsp;2177&amp;nbsp;老光猫的sn后八位
setmac&amp;nbsp;1&amp;nbsp;2182&amp;nbsp;老光猫的MAC去掉冒号(纯大写字母或数字)//&amp;nbsp;举个例子
//&amp;nbsp;setmac&amp;nbsp;1&amp;nbsp;2182&amp;nbsp;ABC123DEF456
setmac&amp;nbsp;1&amp;nbsp;768&amp;nbsp;老光猫的设备标识号-前面的所有(6位)setmac&amp;nbsp;1&amp;nbsp;512&amp;nbsp;老光猫的设备标识号-后面的所有(电信为17位、移动为12位、联通为32位(由于此款为电信光猫&amp;nbsp;限制最长31位&amp;nbsp;删除1位即可))//&amp;nbsp;举个例子
//&amp;nbsp;设备标识：ABCD07-01FFFFFFFF011FFF23ZTESADQW1EAS12
//&amp;nbsp;setmac&amp;nbsp;1&amp;nbsp;768&amp;nbsp;ABCD07
//&amp;nbsp;setmac&amp;nbsp;1&amp;nbsp;512&amp;nbsp;01FFFFFFFF011FFF23ZTESADQW1EAS1

setmac&amp;nbsp;1&amp;nbsp;32769&amp;nbsp;老光猫的MAC地址(有冒号)(纯小写字母或数字)(下面的一样)//举个例子
//&amp;nbsp;setmac&amp;nbsp;1&amp;nbsp;2182&amp;nbsp;ab:c1:23:de:f4:56
setmac&amp;nbsp;1&amp;nbsp;256&amp;nbsp;老光猫的MAC地址(同上)setmac&amp;nbsp;1&amp;nbsp;257&amp;nbsp;老光猫的MAC地址(同上)setmac&amp;nbsp;1&amp;nbsp;258&amp;nbsp;老光猫的MAC地址(同上)setmac&amp;nbsp;1&amp;nbsp;259&amp;nbsp;老光猫的MAC地址(同上)setmac&amp;nbsp;1&amp;nbsp;260&amp;nbsp;老光猫的MAC地址(同上)setmac&amp;nbsp;1&amp;nbsp;261&amp;nbsp;老光猫的MAC地址(同上)setmac&amp;nbsp;1&amp;nbsp;262&amp;nbsp;老光猫的MAC地址(同上)setmac&amp;nbsp;1&amp;nbsp;263&amp;nbsp;老光猫的MAC地址(同上)&lt;/pre&gt;&lt;div class=&quot;toolbar&quot; style=&quot;box-sizing: border-box; position: absolute; top: 0.3em; right: 0.2em; transition: opacity 0.3s ease-in-out; opacity: 0;&quot;&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; color: #BBBBBB; font-size: 0.8em; padding: 0px 0.5em; background: rgba(224, 224, 224, 0.2); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px; border-radius: 0.5em;&quot;&gt;Bash&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;h2 style=&quot;box-sizing: border-box; font-family: arial, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(47, 47, 47); margin-top: 20px; margin-bottom: 10px; font-size: 30px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;可选&lt;/h2&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;劫持ITMS注册(显示为已注册)(建议提前输入，这样在光猫注册时不会卡进度)sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;PDTCTUSERINFO&amp;nbsp;0&amp;nbsp;Status&amp;nbsp;0sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;PDTCTUSERINFO&amp;nbsp;0&amp;nbsp;Result&amp;nbsp;1&lt;/pre&gt;&lt;div class=&quot;toolbar&quot; style=&quot;box-sizing: border-box; position: absolute; top: 0.3em; right: 0.2em; transition: opacity 0.3s ease-in-out; opacity: 0;&quot;&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; color: #BBBBBB; font-size: 0.8em; padding: 0px 0.5em; background: rgba(224, 224, 224, 0.2); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px; border-radius: 0.5em;&quot;&gt;Bash&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;注册跳转修复
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;PDTCTUSERINFO&amp;nbsp;0&amp;nbsp;Status&amp;nbsp;0sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;PDTCTUSERINFO&amp;nbsp;0&amp;nbsp;Result&amp;nbsp;1sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;PDTCTUSERINFO&amp;nbsp;0&amp;nbsp;tForcePushFlg&amp;nbsp;0&lt;/pre&gt;&lt;div class=&quot;toolbar&quot; style=&quot;box-sizing: border-box; position: absolute; top: 0.3em; right: 0.2em; transition: opacity 0.3s ease-in-out; opacity: 0;&quot;&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; color: #BBBBBB; font-size: 0.8em; padding: 0px 0.5em; background: rgba(224, 224, 224, 0.2); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px; border-radius: 0.5em;&quot;&gt;Bash&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;修改用户限制
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;p&amp;nbsp;CltLmt
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;CltLmt&amp;nbsp;8&amp;nbsp;Max&amp;nbsp;244&amp;nbsp;(修改最大用户数为244，可以改成其他数目，最大数目不超过255)sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;CltLmt&amp;nbsp;8&amp;nbsp;Enable&amp;nbsp;0&lt;/pre&gt;&lt;div class=&quot;toolbar&quot; style=&quot;box-sizing: border-box; position: absolute; top: 0.3em; right: 0.2em; transition: opacity 0.3s ease-in-out; opacity: 0;&quot;&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; color: #BBBBBB; font-size: 0.8em; padding: 0px 0.5em; background: rgba(224, 224, 224, 0.2); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px; border-radius: 0.5em;&quot;&gt;Bash&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;查看一下当前的电信远程控制
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;p&amp;nbsp;MgtServer

//&amp;nbsp;把电信的TR069修改掉
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;MgtServer&amp;nbsp;0&amp;nbsp;URL&amp;nbsp;http://127.0.0.1
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;MgtServer&amp;nbsp;0&amp;nbsp;Tr069Enable&amp;nbsp;0sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;MgtServer&amp;nbsp;0&amp;nbsp;PeriodicInformEnable&amp;nbsp;0&lt;/pre&gt;&lt;div class=&quot;toolbar&quot; style=&quot;box-sizing: border-box; position: absolute; top: 0.3em; right: 0.2em; transition: opacity 0.3s ease-in-out; opacity: 0;&quot;&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; color: #BBBBBB; font-size: 0.8em; padding: 0px 0.5em; background: rgba(224, 224, 224, 0.2); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px; border-radius: 0.5em;&quot;&gt;Bash&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;查看TR069的数字
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;p&amp;nbsp;WANC(查看TR069的数字)//&amp;nbsp;删除TR069
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;delr&amp;nbsp;WANC&amp;nbsp;0&lt;/pre&gt;&lt;div class=&quot;toolbar&quot; style=&quot;box-sizing: border-box; position: absolute; top: 0.3em; right: 0.2em; transition: opacity 0.3s ease-in-out; opacity: 0;&quot;&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; color: #BBBBBB; font-size: 0.8em; padding: 0px 0.5em; background: rgba(224, 224, 224, 0.2); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px; border-radius: 0.5em;&quot;&gt;Bash&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;修改连接数限制
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;p&amp;nbsp;FWBase&amp;nbsp;//查看连接数设置信息
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;FWBase&amp;nbsp;0&amp;nbsp;FwConnMaxEnable&amp;nbsp;0&amp;nbsp;&amp;nbsp;//禁用连接数限制
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;FWBase&amp;nbsp;0&amp;nbsp;FwConntrackMax&amp;nbsp;65535&amp;nbsp;&amp;nbsp;//设置最大连接数到65535(默认4000)sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;FWBase&amp;nbsp;0&amp;nbsp;ConntrackMax&amp;nbsp;65535&lt;/pre&gt;&lt;div class=&quot;toolbar&quot; style=&quot;box-sizing: border-box; position: absolute; top: 0.3em; right: 0.2em; transition: opacity 0.3s ease-in-out; opacity: 0;&quot;&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; color: #BBBBBB; font-size: 0.8em; padding: 0px 0.5em; background: rgba(224, 224, 224, 0.2); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px; border-radius: 0.5em;&quot;&gt;Bash&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;修改telecomadmin密码
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;DevAuthInfo&amp;nbsp;0&amp;nbsp;Pass&amp;nbsp;需求修改的密码&lt;/pre&gt;&lt;div class=&quot;toolbar&quot; style=&quot;box-sizing: border-box; position: absolute; top: 0.3em; right: 0.2em; transition: opacity 0.3s ease-in-out; opacity: 0;&quot;&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; color: #BBBBBB; font-size: 0.8em; padding: 0px 0.5em; background: rgba(224, 224, 224, 0.2); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px; border-radius: 0.5em;&quot;&gt;Bash&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;修改useradmin密码
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;DevAuthInfo&amp;nbsp;1&amp;nbsp;Pass&amp;nbsp;需求修改的密码&lt;/pre&gt;&lt;div class=&quot;toolbar&quot; style=&quot;box-sizing: border-box; position: absolute; top: 0.3em; right: 0.2em; transition: opacity 0.3s ease-in-out; opacity: 0;&quot;&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; color: #BBBBBB; font-size: 0.8em; padding: 0px 0.5em; background: rgba(224, 224, 224, 0.2); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px; border-radius: 0.5em;&quot;&gt;Bash&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;解除&amp;nbsp;LAN&amp;nbsp;端口绑定灰色
sendcmd&amp;nbsp;1&amp;nbsp;DB&amp;nbsp;set&amp;nbsp;LAND&amp;nbsp;0&amp;nbsp;LanBindEnable&amp;nbsp;0&lt;/pre&gt;&lt;div class=&quot;toolbar&quot; style=&quot;box-sizing: border-box; position: absolute; top: 0.3em; right: 0.2em; transition: opacity 0.3s ease-in-out; opacity: 0;&quot;&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; color: #BBBBBB; font-size: 0.8em; padding: 0px 0.5em; background: rgba(224, 224, 224, 0.2); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px; border-radius: 0.5em;&quot;&gt;Bash&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;恢复双模切换灰色不可选
setmac&amp;nbsp;3&amp;nbsp;40962&lt;/pre&gt;&lt;div class=&quot;toolbar&quot; style=&quot;box-sizing: border-box; position: absolute; top: 0.3em; right: 0.2em; transition: opacity 0.3s ease-in-out; opacity: 0;&quot;&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; color: #BBBBBB; font-size: 0.8em; padding: 0px 0.5em; background: rgba(224, 224, 224, 0.2); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px; border-radius: 0.5em;&quot;&gt;Bash&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 20px; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 700;&quot;&gt;注：以上命令执行后，请再次执行一次sendcmd 1 DB save保存设置，否则在设备重启后会丢失。&lt;/span&gt;&lt;/p&gt;&lt;h2 style=&quot;box-sizing: border-box; font-family: arial, sans-serif; font-weight: 500; line-height: 1.1; color: rgb(47, 47, 47); margin-top: 20px; margin-bottom: 10px; font-size: 30px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;进阶(可选)&lt;/h2&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;关闭光猫的插件
saf&amp;nbsp;console
//&amp;nbsp;输入密码uptcd&amp;nbsp;/etc/init.dvi&amp;nbsp;appmgr
//&amp;nbsp;按i进入编辑模式
//&amp;nbsp;在start_service函数中添加四个&amp;nbsp;#&amp;nbsp;号注释掉代码//&amp;nbsp;按ecs退出编辑模式&amp;nbsp;输入:wq!保存文件并且退出&lt;/pre&gt;&lt;div class=&quot;toolbar&quot; style=&quot;box-sizing: border-box; position: absolute; top: 0.3em; right: 0.2em; transition: opacity 0.3s ease-in-out; opacity: 0;&quot;&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; color: #BBBBBB; font-size: 0.8em; padding: 0px 0.5em; background: rgba(224, 224, 224, 0.2); box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 0px 0px; border-radius: 0.5em;&quot;&gt;Bash&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;toolbar-item&quot; style=&quot;box-sizing: border-box; display: inline-block;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class=&quot;code-toolbar&quot; style=&quot;box-sizing: border-box; position: relative; color: rgb(47, 47, 47); font-family: arial, sans-serif; font-size: 16px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;pre class=&quot; line-numbers language-shell&quot; style=&quot;box-sizing: border-box; overflow: auto; font-family: Consolas, Monaco, &amp;quot;Andale Mono&amp;quot;, &amp;quot;Ubuntu Mono&amp;quot;, monospace; font-size: 1em; padding: 1em 1em 1em 3.8em; line-height: 1.5; color: black; word-break: normal; overflow-wrap: normal; background-color: rgb(245, 242, 240); border: 1px solid rgb(204, 204, 204); border-radius: 4px; text-shadow: white 0px 1px; word-spacing: normal; tab-size: 4; hyphens: none; position: relative; counter-reset: linenumber 0;&quot;&gt;//&amp;nbsp;相关插件解释
extcc&amp;nbsp;也是网页交互的
inter&amp;nbsp;应该是互联插件&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;apps交互用的&amp;nbsp;&amp;nbsp;
gamespeed&amp;nbsp;&amp;nbsp;应该是游戏速度优化的&amp;nbsp;内置游戏加速器，但目前已经不再售卖
u01&amp;nbsp;是数据库
opmaintain&amp;nbsp;是天翼网关插件
xrobot&amp;nbsp;家庭网关网络探针插件&amp;nbsp;天翼&amp;nbsp;app
b01odm&amp;nbsp;应该是测试插件接口的正常情况吧&amp;nbsp;天翼&amp;nbsp;app&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Wed, 06 Aug 2025 16:49:45 +0800</pubDate></item><item><title>辽宁移动中兴F653GV9光猫，获取超密，注册，改桥接，路由拨号—-第三期</title><link>https://855333.xyz/?id=7</link><description>&lt;section data-support=&quot;96编辑器&quot; data-style-id=&quot;32255&quot; style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased; font-family: Play, &amp;quot;MArima Madurai&amp;quot;, &amp;quot;Microsoft JhengHei&amp;quot;, Georgia, Times, serif, &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Open Sans&amp;quot;, sans-serif; font-size: 15.36px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;以后如果有新电视盒子软件会在Q群和我的博客网站更新，所有公众号发过的固件也都可以在我的博客网站里找到。博客网站地址dmm.ink。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;如果小伙伴不会刷机，不会救砖可在公众号对话栏与我联系加本人微信，代刷机，救砖，量大优惠。另有各种电视盒子出售。感谢！感谢！感谢！&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;a href=&quot;http://mp.weixin.qq.com/s?__biz=MzA3MzE4MjY4Mw==&amp;mid=2247487071&amp;idx=1&amp;sn=7271c51614dd8a089f3a5197be67f7cc&amp;chksm=9f13b2eba8643bfd4c52d67ec66949ffe39d722903ea981ff0ebf2cc7df4821bf3868fb3f346&amp;mpshare=1&amp;scene=23&amp;srcid=0605INrsbMZMc5quCeZ2vAif&amp;sharer_shareinfo=26ecb9ec67163db61da8b109f92249a3&amp;sharer_shareinfo_first=26ecb9ec67163db61da8b109f92249a3#rd&quot; rel=&quot;noopener&quot; target=&quot;_blank&quot; class=&quot;download_btn btn-tooltip&quot; data-bs-toggle=&quot;tooltip&quot; data-bs-placement=&quot;top&quot; title=&quot;&quot; data-container=&quot;body&quot; data-animation=&quot;true&quot; data-bs-original-title=&quot;该资源来源于网络如有侵权,请联系删除.&quot; style=&quot;box-sizing: border-box; color: rgb(255, 255, 255); text-decoration-line: none; -webkit-font-smoothing: antialiased; letter-spacing: 0px; cursor: url(&amp;quot;../images/cur/select.cur&amp;quot;), auto; display: inline-block; font-size: 14px; background-image: linear-gradient(120deg, rgb(81, 236, 139) 0%, rgb(32, 171, 239) 100%); padding: 2px 10px; margin: 10px 3px; border-radius: 3px;&quot;&gt;视频教程&lt;/a&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;img fetchpriority=&quot;high&quot; decoding=&quot;async&quot; class=&quot;alignnone size-large wp-image-2898&quot; src=&quot;https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_163926-1024x768.jpg&quot; alt=&quot;&quot; srcset=&quot;https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_163926-1024x768.jpg 1024w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_163926-300x225.jpg 300w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_163926-768x576.jpg 768w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_163926-1536x1152.jpg 1536w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_163926-2048x1536.jpg 2048w&quot; sizes=&quot;(max-width: 1024px) 100vw, 1024px&quot; style=&quot;box-sizing: border-box; vertical-align: middle; -webkit-font-smoothing: antialiased; cursor: url(&amp;quot;../images/cur/button.cur&amp;quot;), auto; max-width: 100%; margin-bottom: 10px; border-radius: 5px; box-shadow: rgba(20, 20, 20, 0.12) 0px 0.25rem 0.375rem -0.0625rem, rgba(20, 20, 20, 0.07) 0px 0.125rem 0.25rem -0.0625rem;&quot;/&gt;&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;还是要先强调一下，对光猫操作之前一定要先把你自己宽带的LOID，VLAN ID和宽带的账号和密码保存好，再对光猫进行操作。&lt;br style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;/&gt;&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;还是要先强调一下，对光猫操作之前一定要先把你自己宽带的LOID，VLAN ID和宽带的账号和密码保存好，再对光猫进行操作。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;还是要先强调一下，对光猫操作之前一定要先把你自己宽带的LOID，VLAN ID和宽带的账号和密码保存好，再对光猫进行操作。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/section&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 1rem; -webkit-font-smoothing: antialiased; line-height: 1.7; font-size: 0.96rem; cursor: url(&amp;quot;../images/cur/text.cur&amp;quot;), auto; word-break: break-all;&quot;&gt;&lt;img decoding=&quot;async&quot; class=&quot;alignnone size-large wp-image-2895&quot; src=&quot;https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162707-1024x768.jpg&quot; alt=&quot;&quot; srcset=&quot;https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162707-1024x768.jpg 1024w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162707-300x225.jpg 300w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162707-768x576.jpg 768w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162707-1536x1152.jpg 1536w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162707-2048x1536.jpg 2048w&quot; sizes=&quot;(max-width: 1024px) 100vw, 1024px&quot; style=&quot;box-sizing: border-box; vertical-align: middle; -webkit-font-smoothing: antialiased; cursor: url(&amp;quot;../images/cur/button.cur&amp;quot;), auto; max-width: 100%; margin-bottom: 10px; border-radius: 5px; box-shadow: rgba(20, 20, 20, 0.12) 0px 0.25rem 0.375rem -0.0625rem, rgba(20, 20, 20, 0.07) 0px 0.125rem 0.25rem -0.0625rem;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 1rem; -webkit-font-smoothing: antialiased; line-height: 1.7; font-size: 0.96rem; cursor: url(&amp;quot;../images/cur/text.cur&amp;quot;), auto; word-break: break-all;&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;本来是不应该有这篇文章的，因为前两期我用群里的小伙伴给发来的中兴F653GV9型号（黑龙江移动版）的光猫，按照网上的教程实现了开启临时telnet，修改超管密码和固化开启了telnet，还实现了中兴光猫修改SN，MAC，修改地区，异地注册，改桥接和路由拨号。把我自己家宽带的中兴F653GV9型号（辽宁移动版）的光猫成功换了下来，本想着我自己的中兴F653GV9型号（辽宁移动版）光猫闲置下来了，用同样的办法修改超管密码和固化开启telnet以后留着备用，结果我家这个中兴F653GV9型号（辽宁移动版）光猫，按照网上所有的办法都是没办法开启临时telnet，这就尴尬了，同样型号所有信息都完全一样的光猫，只是地区不同，生产日期差了几天而已，一个就可以开启临时telnet，而另外一个就无法开启，什么查看元素啊，找网址啊，都试验了一遍还是无法开启，这就说明教程不能都概括，也是需要以实际情况而定。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/section&gt;&lt;p style=&quot;box-sizing: border-box; margin-top: 0px; margin-bottom: 1rem; -webkit-font-smoothing: antialiased; line-height: 1.7; font-size: 0.96rem; cursor: url(&amp;quot;../images/cur/text.cur&amp;quot;), auto; word-break: break-all;&quot;&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; class=&quot;alignnone size-large wp-image-2896&quot; src=&quot;https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162805-1024x768.jpg&quot; alt=&quot;&quot; srcset=&quot;https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162805-1024x768.jpg 1024w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162805-300x225.jpg 300w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162805-768x576.jpg 768w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162805-1536x1152.jpg 1536w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162805-2048x1536.jpg 2048w&quot; sizes=&quot;auto, (max-width: 1024px) 100vw, 1024px&quot; style=&quot;box-sizing: border-box; vertical-align: middle; -webkit-font-smoothing: antialiased; cursor: url(&amp;quot;../images/cur/button.cur&amp;quot;), auto; max-width: 100%; margin-bottom: 10px; border-radius: 5px; box-shadow: rgba(20, 20, 20, 0.12) 0px 0.25rem 0.375rem -0.0625rem, rgba(20, 20, 20, 0.07) 0px 0.125rem 0.25rem -0.0625rem; contain-intrinsic-size: 3000px 1500px;&quot;/&gt;&lt;/p&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;所以还要说明一下：光猫的品牌型号和电视盒子一样众多，另外版本也众多，同品牌同型号的光猫，系统版本也不一定就一样，所以我只能保证我测试过的，还需要同时期的应该可行，没亲自测试过的不敢说！&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; class=&quot;alignnone size-large wp-image-2897&quot; src=&quot;https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162826-1024x768.jpg&quot; alt=&quot;&quot; srcset=&quot;https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162826-1024x768.jpg 1024w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162826-300x225.jpg 300w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162826-768x576.jpg 768w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162826-1536x1152.jpg 1536w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162826-2048x1536.jpg 2048w&quot; sizes=&quot;auto, (max-width: 1024px) 100vw, 1024px&quot; style=&quot;box-sizing: border-box; vertical-align: middle; -webkit-font-smoothing: antialiased; cursor: url(&amp;quot;../images/cur/button.cur&amp;quot;), auto; max-width: 100%; margin-bottom: 10px; border-radius: 5px; box-shadow: rgba(20, 20, 20, 0.12) 0px 0.25rem 0.375rem -0.0625rem, rgba(20, 20, 20, 0.07) 0px 0.125rem 0.25rem -0.0625rem; contain-intrinsic-size: 3000px 1500px;&quot;/&gt;&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;虽然我自己的这个辽宁移动版的中兴F653GV9光猫，没能开启临时telnet，但是我发现，插复位小孔恢复出厂设置以后，我这个光猫的超密变成公开的那个超级管理员账号和密码了，就是这个管理员用户名：CMCCAdmin，口令：aDm8H%MdA&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;既然有了超级管理员账号和密码，那我干嘛不用自己的光猫改桥接呢！于是决定再把已经在我家宽带注册设置好桥接的黑龙江版能开启临时telnet的中兴F653GV9光猫换下来以备后用。&lt;br style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;/&gt;&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;和我想象的不一样，是我想得简单了！恢复出厂设置后用公开的那个超管账号和密码虽然可以登录，但是设备注册输入LOID以后，数据很快就下发百分之百成功了，可超管密码变了，这不等于白扯了吗！还是不能改桥接啊！&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; class=&quot;alignnone size-large wp-image-2930&quot; src=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ%E5%9B%BE%E7%89%8720240524014018-1024x613.png&quot; alt=&quot;&quot; srcset=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240524014018-1024x613.png 1024w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240524014018-300x179.png 300w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240524014018-768x459.png 768w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240524014018.png 1516w&quot; sizes=&quot;auto, (max-width: 1024px) 100vw, 1024px&quot; style=&quot;box-sizing: border-box; vertical-align: middle; -webkit-font-smoothing: antialiased; cursor: url(&amp;quot;../images/cur/button.cur&amp;quot;), auto; max-width: 100%; margin-bottom: 10px; border-radius: 5px; box-shadow: rgba(20, 20, 20, 0.12) 0px 0.25rem 0.375rem -0.0625rem, rgba(20, 20, 20, 0.07) 0px 0.125rem 0.25rem -0.0625rem; contain-intrinsic-size: 3000px 1500px;&quot;/&gt;&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;于是重新恢复出厂设置，获得超管账号密码，心想那我能不能不注册，先设置桥接把原有的TR069等连接删除，只保留新设置的桥接模式，再直接设置路由器能不能行呢？于是按照想法照做，把原来所有的连接都删除，重新设置桥接，然后直接设置路由器，然而是没有办法上网的，网络是不通的。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;但此时登录光猫后台IP地址，网页显示400，用超管账号密码登录光猫会提示“其他用户正在配置，请稍后尝试”。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;看来还是需要注册的，此时点击设备注册，会卡百分之30，卡在百分之30的时候，电脑右下角的网络图标显示网络已经通了，刷新页面用公开的超管账号密码依然可以登录，查看光猫后台，数据和业务已经下发成功了，网络也通了。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; class=&quot;alignnone size-large wp-image-2929&quot; src=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ%E5%9B%BE%E7%89%8720240522215033-1-1024x609.png&quot; alt=&quot;&quot; srcset=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215033-1-1024x609.png 1024w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215033-1-300x178.png 300w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215033-1-768x457.png 768w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215033-1.png 1514w&quot; sizes=&quot;auto, (max-width: 1024px) 100vw, 1024px&quot; style=&quot;box-sizing: border-box; vertical-align: middle; -webkit-font-smoothing: antialiased; cursor: url(&amp;quot;../images/cur/button.cur&amp;quot;), auto; max-width: 100%; margin-bottom: 10px; border-radius: 5px; box-shadow: rgba(20, 20, 20, 0.12) 0px 0.25rem 0.375rem -0.0625rem, rgba(20, 20, 20, 0.07) 0px 0.125rem 0.25rem -0.0625rem; contain-intrinsic-size: 3000px 1500px;&quot;/&gt;&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; class=&quot;alignnone size-large wp-image-2931&quot; src=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ%E5%9B%BE%E7%89%8720240524023230-1024x644.png&quot; alt=&quot;&quot; srcset=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240524023230-1024x644.png 1024w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240524023230-300x189.png 300w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240524023230-768x483.png 768w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240524023230.png 1513w&quot; sizes=&quot;auto, (max-width: 1024px) 100vw, 1024px&quot; style=&quot;box-sizing: border-box; vertical-align: middle; -webkit-font-smoothing: antialiased; cursor: url(&amp;quot;../images/cur/button.cur&amp;quot;), auto; max-width: 100%; margin-bottom: 10px; border-radius: 5px; box-shadow: rgba(20, 20, 20, 0.12) 0px 0.25rem 0.375rem -0.0625rem, rgba(20, 20, 20, 0.07) 0px 0.125rem 0.25rem -0.0625rem; contain-intrinsic-size: 3000px 1500px;&quot;/&gt;&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;span style=&quot;box-sizing: border-box; font-weight: 600; -webkit-font-smoothing: antialiased;&quot;&gt;我也不知道这算不算是成功，反正现在可以正常上网，一切都是正常的，公开的超级管理员账号和密码，依然可以登录。这应该算是破解成功了吧！！！&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased;&quot;&gt;&lt;a href=&quot;http://mp.weixin.qq.com/s?__biz=MzA3MzE4MjY4Mw==&amp;mid=2247487071&amp;idx=1&amp;sn=7271c51614dd8a089f3a5197be67f7cc&amp;chksm=9f13b2eba8643bfd4c52d67ec66949ffe39d722903ea981ff0ebf2cc7df4821bf3868fb3f346&amp;mpshare=1&amp;scene=23&amp;srcid=0605INrsbMZMc5quCeZ2vAif&amp;sharer_shareinfo=26ecb9ec67163db61da8b109f92249a3&amp;sharer_shareinfo_first=26ecb9ec67163db61da8b109f92249a3#rd&quot; rel=&quot;noopener&quot; target=&quot;_blank&quot; class=&quot;download_btn btn-tooltip&quot; data-bs-toggle=&quot;tooltip&quot; data-bs-placement=&quot;top&quot; title=&quot;&quot; data-container=&quot;body&quot; data-animation=&quot;true&quot; data-bs-original-title=&quot;该资源来源于网络如有侵权,请联系删除.&quot; style=&quot;box-sizing: border-box; color: rgb(255, 255, 255); text-decoration-line: none; -webkit-font-smoothing: antialiased; letter-spacing: 0px; cursor: url(&amp;quot;../images/cur/select.cur&amp;quot;), auto; display: inline-block; font-size: 14px; background-image: linear-gradient(120deg, rgb(81, 236, 139) 0%, rgb(32, 171, 239) 100%); padding: 2px 10px; margin: 10px 3px; border-radius: 3px;&quot;&gt;视频教程&lt;/a&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;p&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased; font-family: Play, &amp;quot;MArima Madurai&amp;quot;, &amp;quot;Microsoft JhengHei&amp;quot;, Georgia, Times, serif, &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Open Sans&amp;quot;, sans-serif; font-size: 15.36px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased; font-family: Play, &amp;quot;MArima Madurai&amp;quot;, &amp;quot;Microsoft JhengHei&amp;quot;, Georgia, Times, serif, &amp;quot;Microsoft Yahei&amp;quot;, &amp;quot;Open Sans&amp;quot;, sans-serif; font-size: 15.36px; text-wrap-mode: wrap; background-color: rgb(255, 255, 255);&quot;&gt;&lt;div class=&quot;alert alert-danger&quot; role=&quot;alert&quot; style=&quot;box-sizing: border-box; -webkit-font-smoothing: antialiased; position: relative; padding: 1rem; margin-bottom: 1rem; border: 1px solid rgb(249, 180, 180); border-radius: 0.5rem; color: rgb(255, 255, 255); background-color: rgb(251, 205, 205); background-image: linear-gradient(310deg, rgb(234, 6, 6), rgb(255, 61, 89));&quot;&gt;免责声明 1、建议在专业人员指导下刷机，刷机有风险也有乐趣，一切源于刷机导致后果自负，本网概不负责。2、固件仅供测试和技术交流使用，请下载后24小时内删除。3、本站所提供固件软件来源于互联网或网友提供，如果该程序涉及或侵害到您的版权请立即写信通知我们删除。&lt;/div&gt;&lt;/section&gt;&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Wed, 06 Aug 2025 16:44:04 +0800</pubDate></item><item><title>中兴光猫修改SN，MAC，修改地区，异地注册，改桥接，路由拨号—-第二期</title><link>https://855333.xyz/?id=6</link><description>&lt;section data-support=&quot;96编辑器&quot; data-style-id=&quot;32255&quot; style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased;font-family: Play, &amp;#39;MArima Madurai&amp;#39;, &amp;#39;Microsoft JhengHei&amp;#39;, Georgia, Times, serif, &amp;#39;Microsoft Yahei&amp;#39;, &amp;#39;Open Sans&amp;#39;, sans-serif;font-size: 15.36px;text-wrap-mode: wrap;background-color: rgb(255, 255, 255)&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;以后如果有新电视盒子软件会在Q群和我的博客网站更新，所有公众号发过的固件也都可以在我的博客网站里找到。博客网站地址dmm.ink。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;如果小伙伴不会刷机，不会救砖可在公众号对话栏与我联系加本人微信，代刷机，救砖，量大优惠。另有各种电视盒子出售。感谢！感谢！感谢！&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;a href=&quot;http://mp.weixin.qq.com/s?__biz=MzA3MzE4MjY4Mw==&amp;mid=2247487061&amp;idx=1&amp;sn=b3f6f1dcc5f8b4452ef1e9234b2b688e&amp;chksm=9f13b2e1a8643bf7a9938995091c133fedd4e87872003ea89bf8f0af2aaca5ad2d071b469bdf&amp;mpshare=1&amp;scene=23&amp;srcid=0605hhPjKlBdNhrwSjDPJs4O&amp;sharer_shareinfo=b1ef5f8c314417b32eae95aebbaa4066&amp;sharer_shareinfo_first=b1ef5f8c314417b32eae95aebbaa4066#rd&quot; rel=&quot;noopener&quot; target=&quot;_blank&quot; class=&quot;download_btn btn-tooltip&quot; data-bs-toggle=&quot;tooltip&quot; data-bs-placement=&quot;top&quot; title=&quot;&quot; data-container=&quot;body&quot; data-animation=&quot;true&quot; data-bs-original-title=&quot;该资源来源于网络如有侵权,请联系删除.&quot; style=&quot;box-sizing: border-box;color: rgb(255, 255, 255);-webkit-font-smoothing: antialiased;letter-spacing: 0px;cursor: url(&amp;#39;../images/cur/select.cur&amp;#39;), auto;display: inline-block;font-size: 14px;background-image: linear-gradient(120deg, rgb(81, 236, 139) 0%, rgb(32, 171, 239) 100%);padding: 2px 10px;margin: 10px 3px;border-radius: 3px&quot;&gt;视频教程&lt;/a&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;p&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased;font-family: Play, &amp;#39;MArima Madurai&amp;#39;, &amp;#39;Microsoft JhengHei&amp;#39;, Georgia, Times, serif, &amp;#39;Microsoft Yahei&amp;#39;, &amp;#39;Open Sans&amp;#39;, sans-serif;font-size: 15.36px;text-wrap-mode: wrap;background-color: rgb(255, 255, 255)&quot;&gt;&lt;img fetchpriority=&quot;high&quot; decoding=&quot;async&quot; class=&quot;alignnone size-large wp-image-2914&quot; src=&quot;https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_163926-1-1024x768.jpg&quot; alt=&quot;&quot; srcset=&quot;https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_163926-1-1024x768.jpg 1024w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_163926-1-300x225.jpg 300w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_163926-1-768x576.jpg 768w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_163926-1-1536x1152.jpg 1536w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_163926-1-2048x1536.jpg 2048w&quot; sizes=&quot;(max-width: 1024px) 100vw, 1024px&quot; style=&quot;box-sizing: border-box;vertical-align: middle;-webkit-font-smoothing: antialiased;cursor: url(&amp;#39;../images/cur/button.cur&amp;#39;), auto;max-width: 100%;margin-bottom: 10px;border-radius: 5px;box-shadow: rgba(20, 20, 20, 0.12) 0px 0.25rem 0.375rem -0.0625rem, rgba(20, 20, 20, 0.07) 0px 0.125rem 0.25rem -0.0625rem&quot;/&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased;font-family: Play, &amp;#39;MArima Madurai&amp;#39;, &amp;#39;Microsoft JhengHei&amp;#39;, Georgia, Times, serif, &amp;#39;Microsoft Yahei&amp;#39;, &amp;#39;Open Sans&amp;#39;, sans-serif;font-size: 15.36px;text-wrap-mode: wrap;background-color: rgb(255, 255, 255)&quot;&gt;&lt;/section&gt;&lt;section data-support=&quot;96编辑器&quot; data-style-id=&quot;32255&quot; style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased;font-family: Play, &amp;#39;MArima Madurai&amp;#39;, &amp;#39;Microsoft JhengHei&amp;#39;, Georgia, Times, serif, &amp;#39;Microsoft Yahei&amp;#39;, &amp;#39;Open Sans&amp;#39;, sans-serif;font-size: 15.36px;text-wrap-mode: wrap;background-color: rgb(255, 255, 255)&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;第二部分：修改SN-修改地区，光猫异地注册，设置桥接模式，路由器拨号。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;因为有的省份换光猫是要验证SN的，而有省份不验证SN。还有的省份光猫登录以后有可视化界面注册设备的时候可以选择注册地区，有的就不可以选择，如果我们要换光猫，遇到需要验证SN，注册地区不可以选择的情况下，这时候我们就需要在telnet下用命令来更改SN，和注册地区。&lt;/span&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;p style=&quot;box-sizing: border-box;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;line-height: 1.7;font-size: 0.96rem;cursor: url(&amp;#39;../images/cur/text.cur&amp;#39;), auto&quot;&gt;&lt;img decoding=&quot;async&quot; class=&quot;alignnone size-large wp-image-2913&quot; src=&quot;https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162805-1-1024x768.jpg&quot; alt=&quot;&quot; srcset=&quot;https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162805-1-1024x768.jpg 1024w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162805-1-300x225.jpg 300w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162805-1-768x576.jpg 768w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162805-1-1536x1152.jpg 1536w, https://dmm.ink/wp-content/uploads/2024/06/IMG_20240510_162805-1-2048x1536.jpg 2048w&quot; sizes=&quot;(max-width: 1024px) 100vw, 1024px&quot; style=&quot;box-sizing: border-box;vertical-align: middle;-webkit-font-smoothing: antialiased;cursor: url(&amp;#39;../images/cur/button.cur&amp;#39;), auto;max-width: 100%;margin-bottom: 10px;border-radius: 5px;box-shadow: rgba(20, 20, 20, 0.12) 0px 0.25rem 0.375rem -0.0625rem, rgba(20, 20, 20, 0.07) 0px 0.125rem 0.25rem -0.0625rem&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;line-height: 1.7;font-size: 0.96rem;cursor: url(&amp;#39;../images/cur/text.cur&amp;#39;), auto&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;pre class=&quot;code-snippet__js code-snippet code-snippet_nowrap&quot; data-lang=&quot;swift&quot; style=&quot;box-sizing: border-box;font-family: none;font-size: 0.875em;direction: ltr;unicode-bidi: bidi-override;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;text-wrap-mode: wrap;overflow-wrap: break-word;width: 772px;overflow: auto !important&quot;&gt;/etc/init.d/regioncode&lt;/pre&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;上一行是区域代码查询命令，记住你要更改省份的数字代码，省份是以拼音的标记的，比如辽宁地区，429：Liaoning。所有辽宁地区的代码就是429&lt;br style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;/&gt;&lt;/span&gt;&lt;/section&gt;&lt;pre class=&quot;code-snippet__js code-snippet code-snippet_nowrap&quot; data-lang=&quot;nginx&quot; style=&quot;box-sizing: border-box;font-family: none;font-size: 0.875em;direction: ltr;unicode-bidi: bidi-override;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;text-wrap-mode: wrap;overflow-wrap: break-word;width: 772px;overflow: auto !important&quot;&gt;upgradetest&amp;nbsp;sdefconf&amp;nbsp;429&lt;/pre&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;上一行是修改地区的命令，429是辽宁地区的代码，你想改其他地区请自行修改数字代码。&lt;br style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;/&gt;&lt;/span&gt;&lt;/section&gt;&lt;pre class=&quot;code-snippet__js code-snippet code-snippet_nowrap&quot; data-lang=&quot;nginx&quot; style=&quot;box-sizing: border-box;font-family: none;font-size: 0.875em;direction: ltr;unicode-bidi: bidi-override;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;text-wrap-mode: wrap;overflow-wrap: break-word;width: 772px;overflow: auto !important&quot;&gt;setmac&amp;nbsp;show&lt;/pre&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;上一行命令是查看设备所有的ID的代码，比如MAC，SN等等信息。都是可以修改的。比如：我要换的盒子，后台就没有显示盒子背面的SN，就是清除的状态，我就拿MAC为例它的展现形式是：&lt;br style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;/&gt;MAC1[ID：256] is set to xx xx xx xx xx xx&lt;br style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;/&gt;256就是这个MAC的代码，xx xx xx xx xx xx这个xx就是MAC的具体数字，可自行更改。&lt;br style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;/&gt;&lt;/span&gt;&lt;/section&gt;&lt;pre class=&quot;code-snippet__js code-snippet code-snippet_nowrap&quot; data-lang=&quot;nginx&quot; style=&quot;box-sizing: border-box;font-family: none;font-size: 0.875em;direction: ltr;unicode-bidi: bidi-override;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;text-wrap-mode: wrap;overflow-wrap: break-word;width: 772px;overflow: auto !important&quot;&gt;setmac&amp;nbsp;1&amp;nbsp;256&amp;nbsp;000000000000&lt;/pre&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;上一行命令就是把光猫的MAC改成了000000000000&lt;br style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;/&gt;&lt;/span&gt;&lt;/section&gt;&lt;pre class=&quot;code-snippet__js code-snippet code-snippet_nowrap&quot; data-lang=&quot;nginx&quot; style=&quot;box-sizing: border-box;font-family: none;font-size: 0.875em;direction: ltr;unicode-bidi: bidi-override;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;text-wrap-mode: wrap;overflow-wrap: break-word;width: 772px;overflow: auto !important&quot;&gt;setmac&amp;nbsp;3&amp;nbsp;代码&lt;/pre&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;上面一行是清除某个参数的命令，比如要清除MAC把上行命令里的代码换成256。MAC就被清除了，清除过后的展现形式是is not set&lt;br style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;/&gt;比如SN的代码是1314，就把上行里的代码换成1314，执行过后就是清除的状态，展现形式是is not set&lt;br style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;/&gt;修改好之后记得用保存配置命令保存一下。&lt;br style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;/&gt;&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;多说一句，如果你想换光猫，就先改地区SN等等，因为修改地区后光猫会自动重启，重启之后，固化开启的telnet就失效了，还有你自己设置的超级管理员账号和密码就变了，就还点走一遍流程开启telnet和设置超级管理员账号密码。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;1，设备注册。浏览器地址192.168.1.1，直接点击设备注册，输入你保存好了原光猫的LOID，点击确定，然后等待设备注册（如下图）&lt;/span&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;p style=&quot;box-sizing: border-box;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;line-height: 1.7;font-size: 0.96rem;cursor: url(&amp;#39;../images/cur/text.cur&amp;#39;), auto&quot;&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; class=&quot;alignnone size-large wp-image-2915&quot; src=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ%E5%9B%BE%E7%89%8720240522215008-1024x608.png&quot; alt=&quot;&quot; srcset=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215008-1024x608.png 1024w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215008-300x178.png 300w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215008-768x456.png 768w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215008.png 1513w&quot; sizes=&quot;auto, (max-width: 1024px) 100vw, 1024px&quot; style=&quot;box-sizing: border-box;vertical-align: middle;-webkit-font-smoothing: antialiased;cursor: url(&amp;#39;../images/cur/button.cur&amp;#39;), auto;max-width: 100%;margin-bottom: 10px;border-radius: 5px;box-shadow: rgba(20, 20, 20, 0.12) 0px 0.25rem 0.375rem -0.0625rem, rgba(20, 20, 20, 0.07) 0px 0.125rem 0.25rem -0.0625rem;contain-intrinsic-size: 3000px 1500px&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;line-height: 1.7;font-size: 0.96rem;cursor: url(&amp;#39;../images/cur/text.cur&amp;#39;), auto&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;2，如果注册卡百分之40，请用telnet命令劫持ITMS的注册，命令如下&lt;/span&gt;&lt;/section&gt;&lt;p style=&quot;box-sizing: border-box;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;line-height: 1.7;font-size: 0.96rem;cursor: url(&amp;#39;../images/cur/text.cur&amp;#39;), auto&quot;&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; class=&quot;alignnone size-large wp-image-2916&quot; src=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ%E5%9B%BE%E7%89%8720240522215033-1024x609.png&quot; alt=&quot;&quot; srcset=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215033-1024x609.png 1024w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215033-300x178.png 300w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215033-768x457.png 768w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215033.png 1514w&quot; sizes=&quot;auto, (max-width: 1024px) 100vw, 1024px&quot; style=&quot;box-sizing: border-box;vertical-align: middle;-webkit-font-smoothing: antialiased;cursor: url(&amp;#39;../images/cur/button.cur&amp;#39;), auto;max-width: 100%;margin-bottom: 10px;border-radius: 5px;box-shadow: rgba(20, 20, 20, 0.12) 0px 0.25rem 0.375rem -0.0625rem, rgba(20, 20, 20, 0.07) 0px 0.125rem 0.25rem -0.0625rem;contain-intrinsic-size: 3000px 1500px&quot;/&gt;&lt;/p&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;/p&gt;&lt;pre class=&quot;code-snippet__js code-snippet code-snippet_nowrap&quot; data-lang=&quot;sql&quot; style=&quot;box-sizing: border-box;font-family: none;font-size: 0.875em;direction: ltr;unicode-bidi: bidi-override;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;text-wrap-mode: wrap;overflow-wrap: break-word;width: 772px;background-color: rgb(255, 255, 255);overflow: auto !important&quot;&gt;&lt;br/&gt;&lt;/pre&gt;&lt;p&gt;&lt;section data-support=&quot;96编辑器&quot; data-style-id=&quot;32255&quot; style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased;font-family: Play, &amp;#39;MArima Madurai&amp;#39;, &amp;#39;Microsoft JhengHei&amp;#39;, Georgia, Times, serif, &amp;#39;Microsoft Yahei&amp;#39;, &amp;#39;Open Sans&amp;#39;, sans-serif;font-size: 15.36px;text-wrap-mode: wrap;background-color: rgb(255, 255, 255)&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;code style=&quot;box-sizing: border-box;font-family: Play, &amp;#39;Microsoft Yahei&amp;#39;, &amp;#39;Open Sans&amp;#39;, sans-serif;font-size: 0.85em;direction: ltr;unicode-bidi: bidi-override;color: rgb(199, 37, 78);overflow-wrap: break-word;-webkit-font-smoothing: antialiased;padding: 0.25rem 0.5rem;background-color: rgb(249, 242, 244);border-radius: 2px&quot;&gt;&lt;span style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;sendcmd 1 DB&amp;nbsp;&lt;span style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;set&lt;/span&gt;&amp;nbsp;PDTCTUSERINFO&amp;nbsp;&lt;span style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;0&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;Status&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;0&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;code style=&quot;box-sizing: border-box;font-family: Play, &amp;#39;Microsoft Yahei&amp;#39;, &amp;#39;Open Sans&amp;#39;, sans-serif;font-size: 0.85em;direction: ltr;unicode-bidi: bidi-override;color: rgb(199, 37, 78);overflow-wrap: break-word;-webkit-font-smoothing: antialiased;padding: 0.25rem 0.5rem;background-color: rgb(249, 242, 244);border-radius: 2px&quot;&gt;&lt;span style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;sendcmd&amp;nbsp;&lt;span style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;1&lt;/span&gt;&amp;nbsp;DB&amp;nbsp;&lt;span style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;set&lt;/span&gt;&amp;nbsp;PDTCTUSERINFO&amp;nbsp;&lt;span style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;0&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;Result&lt;/span&gt;&amp;nbsp;&lt;span style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;1&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;code style=&quot;box-sizing: border-box;font-family: Play, &amp;#39;Microsoft Yahei&amp;#39;, &amp;#39;Open Sans&amp;#39;, sans-serif;font-size: 0.85em;direction: ltr;unicode-bidi: bidi-override;color: rgb(199, 37, 78);overflow-wrap: break-word;-webkit-font-smoothing: antialiased;padding: 0.25rem 0.5rem;background-color: rgb(249, 242, 244);border-radius: 2px&quot;&gt;&lt;span style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;sendcmd&amp;nbsp;&lt;span style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;1&amp;nbsp;&lt;/span&gt;DB&amp;nbsp;&lt;span style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;save&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;code style=&quot;box-sizing: border-box;font-family: Play, &amp;#39;Microsoft Yahei&amp;#39;, &amp;#39;Open Sans&amp;#39;, sans-serif;font-size: 0.85em;direction: ltr;unicode-bidi: bidi-override;color: rgb(199, 37, 78);overflow-wrap: break-word;-webkit-font-smoothing: antialiased;padding: 0.25rem 0.5rem;background-color: rgb(249, 242, 244);border-radius: 2px&quot;&gt;&lt;span style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;reboot&lt;/span&gt;&lt;/code&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;reboot命令重启设备&lt;/span&gt;&amp;nbsp;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;3,用超级管理员账号和密码登录光猫，然后点击网络—-宽带设置—-Internet连接&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;（特别说明因为我的这个宽带不带固话和IPTV，所以没有用U盘备份XML的配置文件，带固话或者IPTV的不在本教程范畴）&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;如果想选择桥接，路由器拨号的话，可以先在连接名称里选择现有的连接，然后都删除，重新建立新连接。&lt;/span&gt;&lt;/section&gt;&lt;p style=&quot;box-sizing: border-box;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;line-height: 1.7;font-size: 0.96rem;cursor: url(&amp;#39;../images/cur/text.cur&amp;#39;), auto&quot;&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; class=&quot;alignnone size-large wp-image-2917&quot; src=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ%E5%9B%BE%E7%89%8720240522215039-1024x728.png&quot; alt=&quot;&quot; srcset=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215039-1024x728.png 1024w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215039-300x213.png 300w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215039-768x546.png 768w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215039.png 1175w&quot; sizes=&quot;auto, (max-width: 1024px) 100vw, 1024px&quot; style=&quot;box-sizing: border-box;vertical-align: middle;-webkit-font-smoothing: antialiased;cursor: url(&amp;#39;../images/cur/button.cur&amp;#39;), auto;max-width: 100%;margin-bottom: 10px;border-radius: 5px;box-shadow: rgba(20, 20, 20, 0.12) 0px 0.25rem 0.375rem -0.0625rem, rgba(20, 20, 20, 0.07) 0px 0.125rem 0.25rem -0.0625rem;contain-intrinsic-size: 3000px 1500px&quot;/&gt;&lt;/p&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;IP协议选择IPV4/IPV6—-连接模式选择桥接Bridge—-端口绑定LAN口建议都选上—-业务模式选择Internet—-VLAN模式选择改写—-VLAN ID填写你保存的数字—-然后保存修改&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;4，路由器拨号，这里我用刷过老毛子固件的斐讯K2做演示：&lt;br style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;/&gt;&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;登录路由器管理页面，然后点击高级设置里的外部网络—-外网连接类型选择PPPoE拨号，硬件加速也可以选择上，下面的用户名和密码，就是你自己宽带的账号和密码，其他设置一般不用修改，然后点击最下面的应用本页面设置。&lt;/span&gt;&lt;/section&gt;&lt;section style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;&gt;&lt;span style=&quot;box-sizing: border-box;font-weight: 600;-webkit-font-smoothing: antialiased&quot;&gt;5，外网设置完毕，也可以把IPV6设置应用上，此项可以把IPV6硬件加速设置上，其他设置一般也不用修改，最后点击最下面的应用本页面设置。&lt;br style=&quot;box-sizing: border-box;-webkit-font-smoothing: antialiased&quot;/&gt;&lt;/span&gt;&lt;/section&gt;&lt;p style=&quot;box-sizing: border-box;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;line-height: 1.7;font-size: 0.96rem;cursor: url(&amp;#39;../images/cur/text.cur&amp;#39;), auto&quot;&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; class=&quot;alignnone size-large wp-image-2918&quot; src=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ%E5%9B%BE%E7%89%8720240522215044-1024x613.png&quot; alt=&quot;&quot; srcset=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215044-1024x613.png 1024w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215044-300x180.png 300w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215044-768x460.png 768w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215044.png 1520w&quot; sizes=&quot;auto, (max-width: 1024px) 100vw, 1024px&quot; style=&quot;box-sizing: border-box;vertical-align: middle;-webkit-font-smoothing: antialiased;cursor: url(&amp;#39;../images/cur/button.cur&amp;#39;), auto;max-width: 100%;margin-bottom: 10px;border-radius: 5px;box-shadow: rgba(20, 20, 20, 0.12) 0px 0.25rem 0.375rem -0.0625rem, rgba(20, 20, 20, 0.07) 0px 0.125rem 0.25rem -0.0625rem;contain-intrinsic-size: 3000px 1500px&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;line-height: 1.7;font-size: 0.96rem;cursor: url(&amp;#39;../images/cur/text.cur&amp;#39;), auto&quot;&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; class=&quot;alignnone size-large wp-image-2919&quot; src=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ%E5%9B%BE%E7%89%8720240522215054-1024x612.png&quot; alt=&quot;&quot; srcset=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215054-1024x612.png 1024w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215054-300x179.png 300w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215054-768x459.png 768w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215054.png 1514w&quot; sizes=&quot;auto, (max-width: 1024px) 100vw, 1024px&quot; style=&quot;box-sizing: border-box;vertical-align: middle;-webkit-font-smoothing: antialiased;cursor: url(&amp;#39;../images/cur/button.cur&amp;#39;), auto;max-width: 100%;margin-bottom: 10px;border-radius: 5px;box-shadow: rgba(20, 20, 20, 0.12) 0px 0.25rem 0.375rem -0.0625rem, rgba(20, 20, 20, 0.07) 0px 0.125rem 0.25rem -0.0625rem;contain-intrinsic-size: 3000px 1500px&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;line-height: 1.7;font-size: 0.96rem;cursor: url(&amp;#39;../images/cur/text.cur&amp;#39;), auto&quot;&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; class=&quot;alignnone size-large wp-image-2920&quot; src=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ%E5%9B%BE%E7%89%8720240522215058-1024x610.png&quot; alt=&quot;&quot; srcset=&quot;https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215058-1024x610.png 1024w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215058-300x179.png 300w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215058-768x457.png 768w, https://dmm.ink/wp-content/uploads/2024/06/QQ图片20240522215058.png 1515w&quot; sizes=&quot;auto, (max-width: 1024px) 100vw, 1024px&quot; style=&quot;box-sizing: border-box;vertical-align: middle;-webkit-font-smoothing: antialiased;cursor: url(&amp;#39;../images/cur/button.cur&amp;#39;), auto;max-width: 100%;margin-bottom: 10px;border-radius: 5px;box-shadow: rgba(20, 20, 20, 0.12) 0px 0.25rem 0.375rem -0.0625rem, rgba(20, 20, 20, 0.07) 0px 0.125rem 0.25rem -0.0625rem;contain-intrinsic-size: 3000px 1500px&quot;/&gt;&lt;/p&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;/section&gt;&lt;/p&gt;&lt;p style=&quot;box-sizing: border-box;margin-top: 0px;margin-bottom: 1rem;-webkit-font-smoothing: antialiased;line-height: 1.7;font-size: 15.36px;cursor: url(&amp;#39;../images/cur/text.cur&amp;#39;), auto;font-family: Play, &amp;#39;MArima Madurai&amp;#39;, &amp;#39;Microsoft JhengHei&amp;#39;, Georgia, Times, serif, &amp;#39;Microsoft Yahei&amp;#39;, &amp;#39;Open Sans&amp;#39;, sans-serif;text-wrap-mode: wrap;background-color: rgb(255, 255, 255)&quot;&gt;&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;a href=&quot;http://mp.weixin.qq.com/s?__biz=MzA3MzE4MjY4Mw==&amp;mid=2247487061&amp;idx=1&amp;sn=b3f6f1dcc5f8b4452ef1e9234b2b688e&amp;chksm=9f13b2e1a8643bf7a9938995091c133fedd4e87872003ea89bf8f0af2aaca5ad2d071b469bdf&amp;mpshare=1&amp;scene=23&amp;srcid=0605hhPjKlBdNhrwSjDPJs4O&amp;sharer_shareinfo=b1ef5f8c314417b32eae95aebbaa4066&amp;sharer_shareinfo_first=b1ef5f8c314417b32eae95aebbaa4066#rd&quot; rel=&quot;noopener&quot; target=&quot;_blank&quot; class=&quot;download_btn btn-tooltip&quot; data-bs-toggle=&quot;tooltip&quot; data-bs-placement=&quot;top&quot; title=&quot;&quot; data-container=&quot;body&quot; data-animation=&quot;true&quot; data-bs-original-title=&quot;该资源来源于网络如有侵权,请联系删除.&quot; style=&quot;box-sizing: border-box;color: rgb(255, 255, 255);-webkit-font-smoothing: antialiased;cursor: url(&amp;#39;../images/cur/select.cur&amp;#39;), auto;display: inline-block;background-image: linear-gradient(120deg, rgb(81, 236, 139) 0%, rgb(32, 171, 239) 100%);padding: 2px 10px;margin: 10px 3px;border-radius: 3px;font-family: Play, &amp;#39;MArima Madurai&amp;#39;, &amp;#39;Microsoft JhengHei&amp;#39;, Georgia, Times, serif, &amp;#39;Microsoft Yahei&amp;#39;, &amp;#39;Open Sans&amp;#39;, sans-serif;text-wrap-mode: wrap;background-color: rgb(255, 255, 255)&quot;&gt;视频教程&lt;/a&gt;免责声明 1、建议在专业人员指导下刷机，刷机有风险也有乐趣，一切源于刷机导致后果自负，本网概不负责。2、固件仅供测试和技术交流使用，请下载后24小时内删除。3、本站所提供固件软件来源于互联网或网友提供，如果该程序涉及或侵害到您的版权请立即写信通知我们删除。&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Wed, 06 Aug 2025 16:43:15 +0800</pubDate></item></channel></rss>