<?xml version="1.0" encoding="utf-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><title>BaiYun Blog</title><link>https://blog.baiyun.work/</link><description>白云的博客小站</description><item><title>X-WRT 修复：WAN口有IPv6但LAN设备无法访问IPv6网络</title><link>https://blog.baiyun.work/?id=21</link><description>&lt;p&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;h2 style=&quot;text-wrap-mode: wrap;&quot;&gt;前言&lt;/h2&gt;&lt;p&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;最近笔者在咸鱼上购入了5G通讯壳，正好手上有带USB的路由器，于是将其固件替换为 X-WRT，把通讯壳用数据线连接到路由器的USB口以供给网络。IPv4 可正常上网，但 IPv6 存在问题：虽然路由器界面显示 usbwan6 已获取到 IPv6 地址，局域网设备却无法访问 IPv6 网络。排查后发现问题出在路由器配置上。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;text-decoration: none;&quot;&gt;本文记录解决过程，供遇到同样情况的朋友参考。&lt;/span&gt;&lt;/p&gt;&lt;h2&gt;问题排查与定位&lt;/h2&gt;&lt;p&gt;首先，遇到 IPv6 无法访问，建议先别慌，跟着笔者一步步排查：&lt;/p&gt;&lt;ol class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;确认 WAN 口 IPv6 状态&lt;/strong&gt;：进入 &lt;code&gt;网络 → 接口&lt;/code&gt;，确保 &lt;code&gt;usbwan6&lt;/code&gt; 或 &lt;code&gt;usbwan&lt;/code&gt; 显示“已连接”，并且有公网 IPv6 地址（如 &lt;code&gt;2408:xxxx::/64&lt;/code&gt;）。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;检查 LAN 设备 IPv6 地址&lt;/strong&gt;：在电脑或手机上运行 &lt;code&gt;ipconfig /all&lt;/code&gt;（Windows）或 &lt;code&gt;ifconfig&lt;/code&gt;（Linux/Mac），看是否分配到 IPv6 地址和默认网关。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;strong&gt;测试路由器自身 IPv6 联通性&lt;/strong&gt;：SSH 登录路由器，执行：&lt;br/&gt;&lt;/p&gt;&lt;pre&gt;ip&amp;nbsp;-6&amp;nbsp;route&amp;nbsp;show
ping6&amp;nbsp;-c&amp;nbsp;3&amp;nbsp;240c::6666&lt;/pre&gt;&lt;p&gt;如果能 ping 通外部 IPv6，说明出口没问题，问题多半在转发或内网配置。&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;h2&gt;解决方案详解&lt;/h2&gt;&lt;p&gt;本次遇到的核心问题其实有四个：&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;缺少 &lt;strong&gt;无条件默认路由&lt;/strong&gt;（::/0），只有源特定路由，导致部分内网地址无法出网。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;IPv6 NAT 未启用，内网 ULA 地址无法直接访问公网。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;防火墙转发策略过于严格，阻断了 IPv6 流量。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;LAN 端 RA/DHCPv6 配置不完整，终端无法正确获取 IPv6 信息。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;下面分步骤给出修复方法（均为 X-WRT 23.x 测试通过，其他版本大同小异）：&lt;/p&gt;&lt;h3&gt;1. 添加无条件默认路由&lt;/h3&gt;&lt;ol class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;进入 &lt;code&gt;网络 → 路由 → 静态IPv6路由&lt;/code&gt;，点击“添加”。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;接口选 &lt;code&gt;usb0&lt;/code&gt;（或 &lt;code&gt;usbwan6&lt;/code&gt;），目标填 &lt;code&gt;::/0&lt;/code&gt;，网关填 &lt;code&gt;fe80::xxxx:xxxx:xxxx:xxxx&lt;/code&gt;（你的 WAN 链路本地地址，&lt;code&gt;ip -6 route show&lt;/code&gt; 可查）。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;保存并应用，回到 &lt;code&gt;网络 → 路由 → IPv6路由&lt;/code&gt;，应能看到 &lt;code&gt;::/0 via fe80::... dev usb0&lt;/code&gt;。&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;img src=&quot;https://blog.baiyun.work/zb_users/upload/2025/10/202510132137499306745.jpg&quot; alt=&quot;202510132137499306745.jpg&quot; title=&quot;202510132137499306745.jpg&quot; width=&quot;818&quot; height=&quot;429&quot; style=&quot;width: 818px; height: 429px;&quot;/&gt;&lt;/p&gt;&lt;h3&gt;2. 配置防火墙转发与 NAT&lt;/h3&gt;&lt;p&gt;推荐直接在 X-WRT 界面操作：&lt;/p&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;进入 &lt;code&gt;网络 → 防火墙&lt;/code&gt;，将“常规设置 → 转发”改为“接受”。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;编辑 WAN 区域，高级设置里勾选“IPv6伪装”。&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p&gt;如果你喜欢命令行，也可以用：&lt;/p&gt;&lt;pre&gt;ip6tables&amp;nbsp;-P&amp;nbsp;FORWARD&amp;nbsp;ACCEPT
ip6tables&amp;nbsp;-A&amp;nbsp;FORWARD&amp;nbsp;-i&amp;nbsp;br-lan&amp;nbsp;-o&amp;nbsp;usb0&amp;nbsp;-j&amp;nbsp;ACCEPT
ip6tables&amp;nbsp;-A&amp;nbsp;FORWARD&amp;nbsp;-i&amp;nbsp;usb0&amp;nbsp;-o&amp;nbsp;br-lan&amp;nbsp;-m&amp;nbsp;state&amp;nbsp;--state&amp;nbsp;RELATED,ESTABLISHED&amp;nbsp;-j&amp;nbsp;ACCEPT
ip6tables&amp;nbsp;-t&amp;nbsp;nat&amp;nbsp;-A&amp;nbsp;POSTROUTING&amp;nbsp;-o&amp;nbsp;usb0&amp;nbsp;-j&amp;nbsp;MASQUERADE&lt;/pre&gt;&lt;p&gt;（注意：部分 OpenWrt 版本需手动启用 ip6tables -t nat 支持，具体见&lt;a href=&quot;https://blog.csdn.net/zhonghaolin/article/details/146462725&quot; target=&quot;_blank&quot;&gt;这篇CSDN教程&lt;/a&gt;）&lt;/p&gt;&lt;h3&gt;3. 完善 LAN 端 IPv6 配置&lt;/h3&gt;&lt;ol class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;进入 &lt;code&gt;网络 → 接口 → LAN → DHCP服务器 → IPv6设置&lt;/code&gt;。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;RA 服务、DHCPv6 服务都选“服务器模式”，通告的 IPv6 DNS 可填 &lt;code&gt;240c::6666&lt;/code&gt; 或其他公共 DNS。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;启用本地 IPv6 DNS 服务器，NDP 代理建议禁用。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;RA 设置里“默认路由器”选“在可用的前缀上”，“启用SLAAC”为“是”，“RA标记”选“受管配置+其他配置”。&lt;/p&gt;&lt;/li&gt;&lt;/ol&gt;&lt;h3&gt;4. 保存并重启服务&lt;/h3&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&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;/ul&gt;&lt;h2&gt;验证与测试&lt;/h2&gt;&lt;p&gt;配置完成后，建议按如下方法分层验证：&lt;/p&gt;&lt;h4&gt;路由器层面&lt;/h4&gt;&lt;pre&gt;#&amp;nbsp;检查IPv6路由表
ip&amp;nbsp;-6&amp;nbsp;route&amp;nbsp;show
#&amp;nbsp;验证IPv6转发状态
cat&amp;nbsp;/proc/sys/net/ipv6/conf/all/forwarding&amp;nbsp;&amp;nbsp;#&amp;nbsp;应为1
#&amp;nbsp;检查NAT规则
ip6tables&amp;nbsp;-t&amp;nbsp;nat&amp;nbsp;-L&amp;nbsp;POSTROUTING&amp;nbsp;-n&amp;nbsp;-v&amp;nbsp;&amp;nbsp;#&amp;nbsp;应有MASQUERADE规则
#&amp;nbsp;测试路由器连接
ping6&amp;nbsp;-c&amp;nbsp;3&amp;nbsp;240c::6666&lt;/pre&gt;&lt;h4&gt;客户端层面&lt;/h4&gt;&lt;pre&gt;#&amp;nbsp;Windows
ipconfig&amp;nbsp;/release6&amp;nbsp;&amp;amp;&amp;amp;&amp;nbsp;ipconfig&amp;nbsp;/renew6
ipconfig&amp;nbsp;/all&amp;nbsp;|&amp;nbsp;findstr&amp;nbsp;&amp;quot;IPv6&amp;quot;
ping&amp;nbsp;-6&amp;nbsp;240c::6666&lt;/pre&gt;&lt;p&gt;只要路由器和客户端都能 ping 通外部 IPv6，基本就大功告成啦&lt;/p&gt;&lt;h2&gt;常见问题与经验总结&lt;/h2&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;如果还是不通，优先检查路由优先级（源特定路由 metric 512 优先于无条件路由 metric 1024）。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;确认 NAT MASQUERADE 规则已生效，&lt;code&gt;ip6tables -t nat -L&lt;/code&gt; 能看到。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;内核转发要打开，&lt;code&gt;/proc/sys/net/ipv6/conf/all/forwarding=1&lt;/code&gt;。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;客户端一定要获取到正确的 IPv6 地址和默认网关。&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;/ul&gt;&lt;h2&gt;参考资料与延伸阅读&lt;/h2&gt;&lt;ul class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://blog.csdn.net/tangxuehao1/article/details/125115401&quot; target=&quot;_blank&quot;&gt;X-wrt路由器配置校园网ipv6穿透-CSDN博客&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://www.right.com.cn/forum/thread-8399565-1-1.html&quot; target=&quot;_blank&quot;&gt;X-WRT IPv6虚拟桥接配置指南-恩山无线论坛&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://blog.csdn.net/zhonghaolin/article/details/146462725&quot; target=&quot;_blank&quot;&gt;openwrt-IPV6配置NAT6配置派发本地链路地址来上网-CSDN博客&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;&lt;a href=&quot;https://devpress.csdn.net/v1/article/detail/129067001&quot; target=&quot;_blank&quot;&gt;OpenWrt之IPv6设置详解-GitCode&lt;/a&gt;&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;h2&gt;结语&lt;/h2&gt;&lt;p&gt;IPv6 折腾起来确实有点绕，但只要理清路由、NAT、防火墙和客户端配置这几步，基本都能搞定。希望这篇记录能帮到遇到类似问题的朋友！&lt;/p&gt;</description><pubDate>Sat, 27 Dec 2025 12:33:58 +0800</pubDate></item><item><title>Python开发中使用webdav3.client库删除文件的正确方法</title><link>https://blog.baiyun.work/?id=20</link><description>&lt;p&gt;这几天在学习Python，在对于小组内的非规范开发，使用git工具同步往往是一个比较繁琐的事情，而小组开发可能不需要版本控制。因此诞生了使用基于webdav的云端同步项目文件的一种替代做法，而我的网盘实时链接速度不佳，挂载webdav来开发项目遇到了IDE卡顿的情况。因而我希望使用实时同步文件而非挂载云端文件的方式，以寻求更好的效果。我选择了python作为开发语言，使用了webdav3.client 库，然而，在需要删除webdav上的文件的时候，我搜索bing的时候bing第一篇文章是百度智能云的&lt;a href=&quot;https://cloud.baidu.com/article/3319363&quot; target=&quot;_self&quot;&gt;如何使用Python连接WebDAV服务器&lt;/a&gt;，里面介绍了&lt;/p&gt;&lt;blockquote&gt;&lt;pre style=&quot;margin-top: 0px; margin-bottom: 0px; padding: var(--base-size-16); border-radius: 6px; background-color: rgb(246, 248, 250); box-sizing: border-box; font-family: var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace); font-size: 13.6px; overflow-wrap: normal; overflow: auto; line-height: 1.45; color: rgb(31, 35, 40); word-break: normal; min-height: 52px;&quot;&gt;#&amp;nbsp;要删除的文件在WebDAV服务器上的路径
remote_file_path&amp;nbsp;=&amp;nbsp;&amp;#39;/path/on/server/file.txt&amp;#39;
#&amp;nbsp;删除文件
client.delete(remote_file_path)&lt;/pre&gt;&lt;/blockquote&gt;&lt;p&gt;然而运行却错误了，经过一番寻找，发现真正的删除api是clean，而非delete，因此写了这篇文章，希望能加入bing的搜索结果，给后面寻找使用webdav3.client库删除文件方法的网友们提供正确的解决方案&lt;/p&gt;&lt;p&gt;附Github上原作者的&lt;a href=&quot;https://github.com/CloudPolis/webdav-client-python&quot; target=&quot;_self&quot;&gt;Readme页面&lt;/a&gt;给出的正确的删除资源（包括文件和目录）的示例：&lt;br/&gt;&lt;/p&gt;&lt;blockquote&gt;&lt;pre style=&quot;box-sizing: border-box; font-family: var(--fontStack-monospace, ui-monospace, SFMono-Regular, SF Mono, Menlo, Consolas, Liberation Mono, monospace); font-size: 13.6px; margin-top: 0px; margin-bottom: 0px; overflow-wrap: normal; padding: var(--base-size-16); overflow: auto; line-height: 1.45; color: rgb(31, 35, 40); background-color: rgb(246, 248, 250); border-radius: 6px; word-break: normal; min-height: 52px;&quot;&gt;#&amp;nbsp;Delete&amp;nbsp;resource
client.clean(&amp;quot;dir1/dir2&amp;quot;)&lt;/pre&gt;&lt;/blockquote&gt;&lt;p&gt;虽然是一件小事，但希望能帮到有需要的网友&lt;/p&gt;</description><pubDate>Wed, 13 Nov 2024 19:25:54 +0800</pubDate></item><item><title>原创Rcon简单客户端</title><link>https://blog.baiyun.work/?id=19</link><description>&lt;p style=&quot;text-align: left;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;你是否也是幻兽帕鲁Windows服务端的受害服主？（狗头）&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; word-break: break-word; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7); text-align: left;&quot;&gt;在Windows下的幻兽帕鲁服务器运行后只有一个黑框，它既不能显示数据，也不能执行指令。就想要通过指令关服它也是无法做到的，只能强制关闭程序，这样可能会导致数据丢失或损坏。&lt;/p&gt;&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; word-break: break-word; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7); text-align: left;&quot;&gt;好在这个它还是提供了Rcon连接的接口服务的，使得我们能够通过Rcon执行指令。但目前中文互联网上好用的Rcon工具却不是很多，笔者没有能够在短时间找到适合自己的Rcon客户端。因而这款简单的Rcon客户端就这样诞生了。&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;h2 style=&quot;padding: 0px; margin: 12px 0px 0px; user-select: text; word-break: break-word; font-size: var(--cib-type-title3-font-size); line-height: var(--cib-type-title3-line-height); font-weight: var(--cib-type-title3-font-weight); font-variation-settings: var(--cib-type-title3-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7); text-align: left;&quot;&gt;&lt;span style=&quot;font-family: 微软雅黑, &amp;quot;Microsoft YaHei&amp;quot;;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;什么是Rcon客户端&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/h2&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;Rcon客户端是一种能够远程管理游戏服务器的工具，它可以通过基于TCP的Rcon协议向服务器发送命令，并获得反馈。像MC服务器，也是有支持Rcon服务的选项的。&lt;/span&gt;&lt;br style=&quot;text-align: left;&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 24px;&quot;&gt;YUNRcon客户端&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 24px;&quot;&gt;&lt;img src=&quot;https://blog.baiyun.work/zb_users/upload/2024/01/202401300556396895281.png&quot; alt=&quot;QQ截图20240130055428.png&quot; title=&quot;QQ截图20240130055428.png&quot;/&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 24px;&quot;&gt;&lt;img src=&quot;https://blog.baiyun.work/zb_users/upload/2024/01/202401300555566155933.png&quot; alt=&quot;QQ截图20240130055329.png&quot; title=&quot;QQ截图20240130055329.png&quot; width=&quot;761&quot; height=&quot;201&quot; style=&quot;width: 761px; height: 201px;&quot;/&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-size: 24px;&quot;&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7); text-align: left;&quot;&gt;这款Rcon客户端的名字叫做YunRcon，它是一款在Windows环境下的简单Rcon客户端，它采用Windows控制台程序作为交互窗口，你可以直接运行它，然后根据提示填写目标Rcon服务器的地址、端口、密码和超时时间，也可以通过带参数运行来实现快捷连接的目的。非常简单，你只需要在执行这个程序的时候，以空格为分割，以此带上目标Rcon服务器的地址、端口、密码和超时时间(单位为毫秒)这四个参数（超时时间可以缺省），例如：&lt;/p&gt;&lt;pre&gt;YunRcon.exe&amp;nbsp;127.0.0.1&amp;nbsp;25575&amp;nbsp;Password&amp;nbsp;1000&lt;/pre&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;&lt;img src=&quot;https://blog.baiyun.work/zb_users/upload/2024/01/202401300556202349660.png&quot; alt=&quot;QQ截图20240130055518.png&quot; title=&quot;QQ截图20240130055518.png&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;&lt;img src=&quot;https://blog.baiyun.work/zb_users/upload/2024/01/202401300600248049845.png&quot; alt=&quot;BEA4FF813C868F93480AEF49F8945171.png&quot; title=&quot;BEA4FF813C868F93480AEF49F8945171.png&quot; width=&quot;779&quot; height=&quot;406&quot; style=&quot;width: 779px; height: 406px;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;因为它是控制台程序，所以你甚至可以很好的让它接入&lt;strong&gt;MCSManager&lt;/strong&gt;系统（这就是笔者想要达到的效果），配合MCSM系统的计划任务等功能，你可以更方便的实现定时关服、定时备份存档等操作。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;&lt;br style=&quot;text-align: left;&quot;/&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;哈勃查毒链接：&lt;a href=&quot;https://habo.qq.com/file/showdetail?pk=ADQGbl1pB24IPFs6U2oHZg&quot; _src=&quot;https://habo.qq.com/file/showdetail?pk=ADQGbl1pB24IPFs6U2oHZg&quot;&gt;https://habo.qq.com/file/showdetail?pk=ADQGbl1pB24IPFs6U2oHZg&lt;/a&gt; &lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;下载：&lt;/p&gt;&lt;p style=&quot;text-align:center&quot;&gt;&lt;img style=&quot;vertical-align: middle; margin-right: 2px;&quot; src=&quot;https://blog.baiyun.work/zb_users/plugin/Neditor/dialogs/attachment/fileTypeImages/icon_rar.gif&quot;/&gt;&lt;a href=&quot;https://blog.baiyun.work/zb_users/upload/2024/01/202401300557593427712.zip&quot; title=&quot;YunRconClient.zip&quot; style=&quot;text-align: left; font-size: 12px; color: rgb(0, 102, 204);&quot;&gt;YunRconClient.zip&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br style=&quot;text-align: left;&quot;/&gt;&lt;/p&gt;</description><pubDate>Tue, 30 Jan 2024 05:30:31 +0800</pubDate></item><item><title>分享两款内存优化软件</title><link>https://blog.baiyun.work/?id=18</link><description>&lt;p style=&quot;text-align: left;&quot;&gt;
    &lt;strong&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;你的电脑内存够用吗？&lt;/span&gt;&lt;/strong&gt;
&lt;/p&gt;
&lt;p style=&quot;text-align: left;&quot;&gt;
    &lt;span style=&quot;font-size: 16px;&quot;&gt;近日，幻兽帕鲁这个游戏火爆全网，不少玩家都会选择联机游玩。除了开房间和进入官方服务器以外，也会有玩家会选择自己来搭建服务器，获得更好的定制化体验。&lt;/span&gt;
&lt;/p&gt;
&lt;p style=&quot;text-align: left;&quot;&gt;
    &lt;span style=&quot;font-size: 16px;&quot;&gt;但是，就目前的幻兽帕鲁服务端的状况而言，不少服主都吐槽幻兽帕鲁服务端占用的内存很多，加载的区块没有对应的回收机制进行内存释放，导致服务器内存频频告急，甚至部分服务器因为内存崩溃而导致服务器存档丢失，十分的恼火。&lt;/span&gt;
&lt;/p&gt;
&lt;p style=&quot;text-align: left;&quot;&gt;
    &lt;span style=&quot;font-size: 16px;&quot;&gt;于是，本贴将会为你介绍两个windows下的内存优化软件，无论你是自己使用的windows主机，还是你的windows服务器，都可以考虑下载并使用他们以尝试获得更好的性能！&lt;/span&gt;
&lt;/p&gt;
&lt;p style=&quot;text-align: left;&quot;&gt;
    &lt;span style=&quot;font-size: 24px;&quot;&gt;&lt;strong&gt;#&lt;span style=&quot;background-color: rgba(255, 255, 255, 0.7); color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; font-weight: var(--cib-type-title3-font-weight);&quot;&gt;Mem Reduct&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style=&quot;text-align:center&quot;&gt;
    &lt;span style=&quot;font-size: 24px;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;background-color: rgba(255, 255, 255, 0.7); color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; font-weight: var(--cib-type-title3-font-weight);&quot;&gt;&lt;strong style=&quot;text-wrap: wrap;&quot;&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;&lt;img src=&quot;https://blog.baiyun.work/zb_users/upload/2024/01/202401300511597771011.png&quot; alt=&quot;202401300511597771011.png&quot; title=&quot;202401300511597771011.png&quot;/&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; word-break: break-word; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7); text-align: left;&quot;&gt;
    Mem Reduct是一款轻量级的内存优化软件，没有广告而且支持中文。
&lt;/p&gt;
&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; word-break: break-word; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7); text-align: left;&quot;&gt;
    你可以设置让它每间隔10分钟清理一次内存，也可以设置当系统内存使用率达到一定的阈值时触发自动清理，非常好用。
&lt;/p&gt;
&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; word-break: break-word; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7); text-align: left;&quot;&gt;
    当然，你也可以手动点击清理按钮，或者设置一个快捷键，按下快捷键，随时进行内存优化。
&lt;/p&gt;
&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; word-break: break-word; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7); text-align: left;&quot;&gt;
    &lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;Mem Reduct是一款开源的软件，项目链接为：&lt;a href=&quot;https://github.com/henrypp/memreduct/&quot; target=&quot;_self&quot;&gt;https://github.com/henrypp/memreduct/&lt;/a&gt;&lt;/span&gt;
&lt;/p&gt;
&lt;p style=&quot;text-align: left;&quot;&gt;
    &lt;span style=&quot;font-size: 16px;&quot;&gt;&lt;/span&gt;你可以在项目的Release里下载最新的构建：&lt;a href=&quot;https://github.com/henrypp/memreduct/releases&quot; _src=&quot;https://github.com/henrypp/memreduct/releases&quot;&gt;https://github.com/henrypp/memreduct/releases&lt;/a&gt; 
&lt;/p&gt;
&lt;p style=&quot;text-align: left;&quot;&gt;
    &lt;strong style=&quot;font-size: 24px; text-wrap: wrap;&quot;&gt;#&lt;span style=&quot;background-color: rgba(255, 255, 255, 0.7); color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; font-weight: var(--cib-type-title3-font-weight);&quot;&gt;白云内存优化&lt;/span&gt;&lt;/strong&gt;
&lt;/p&gt;
&lt;p&gt;
    &lt;strong style=&quot;font-size: 24px; text-wrap: wrap;&quot;&gt;&lt;span style=&quot;background-color: rgba(255, 255, 255, 0.7); color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; font-weight: var(--cib-type-title3-font-weight);&quot;&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;
&lt;/p&gt;
&lt;p style=&quot;text-align:center&quot;&gt;
    &lt;img src=&quot;https://blog.baiyun.work/zb_users/upload/2024/01/202401300522535500122.png&quot; alt=&quot;202401300522535500122.png&quot; title=&quot;202401300522535500122.png&quot;/&gt;
&lt;/p&gt;
&lt;p style=&quot;margin-top: 12px; margin-bottom: 0px; line-height: var(--cib-type-body2-line-height); text-wrap: wrap; padding: 0px; user-select: text; word-break: break-word; font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; background-color: rgba(255, 255, 255, 0.7); text-align: left;&quot;&gt;
    白云内存优化是我制作的一款简单内存清理软件，可以执行定时清理任务，简单的UI，轻量级的软件，不妨尝试一下它的效果。
&lt;/p&gt;
&lt;p style=&quot;margin-top: 12px; margin-bottom: 0px; line-height: var(--cib-type-body2-line-height); text-wrap: wrap; padding: 0px; user-select: text; word-break: break-word; font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; background-color: rgba(255, 255, 255, 0.7); text-align: left;&quot;&gt;
    哈勃查毒：&lt;a href=&quot;https://habo.qq.com/file/showdetail?pk=ADQGbl1pB24IO1s6U2oHbQ&quot; target=&quot;_self&quot;&gt;https://habo.qq.com/file/showdetail?pk=ADQGbl1pB24IO1s6U2oHbQ&lt;/a&gt;
&lt;/p&gt;
&lt;p&gt;
    &lt;strong style=&quot;font-size: 24px; text-wrap: wrap;&quot;&gt;&lt;span style=&quot;background-color: rgba(255, 255, 255, 0.7); color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; font-weight: var(--cib-type-title3-font-weight);&quot;&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/strong&gt;
&lt;/p&gt;
&lt;p style=&quot;text-align: center;&quot;&gt;
    &lt;img style=&quot;vertical-align: middle; margin-right: 2px;&quot; src=&quot;https://blog.baiyun.work/zb_users/plugin/Neditor/dialogs/attachment/fileTypeImages/icon_rar.gif&quot;/&gt;&lt;a href=&quot;https://blog.baiyun.work/zb_users/upload/2024/01/202401300526457120160.zip&quot; title=&quot;白云内存优化.zip&quot; style=&quot;text-align: left; font-size: 12px; color: rgb(0, 102, 204);&quot;&gt;白云内存优化.zip&lt;/a&gt;
&lt;/p&gt;</description><pubDate>Tue, 30 Jan 2024 04:28:00 +0800</pubDate></item><item><title>CloudFlare与其威胁分数介绍</title><link>https://blog.baiyun.work/?id=17</link><description>&lt;p&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 24px;&quot;&gt;&lt;strong&gt;CloudFlare&lt;/strong&gt;是什么？&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;a href=&quot;https://www.cloudflare-cn.com/&quot; target=&quot;_self&quot;&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;&lt;span style=&quot;text-wrap: wrap;&quot;&gt;Cloudflare&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;span style=&quot;font-size: 16px;&quot;&gt;&lt;span style=&quot;text-wrap: wrap;&quot;&gt;是一家提供网站安全管理、性能优化等相关技术的跨国科技企业，Cloudflare可以帮助受保护站点抵御包括分布式拒绝服务攻击 (DDoS, Distributed Denial of Service)在内的大多数网络攻击，确保该网站长期在线，阻止网络攻击、垃圾邮件等，同时提升网站的性能、访问速度以改善访客体验。&lt;/span&gt;&lt;/span&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 24px;&quot;&gt;&lt;br/&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;因为Cloudflare为普通站长提供了很多免费的服务，例如免费的DDOS防护、免费的SSL证书以及免费的CDN加速。这使得网站的安全性能够很方便得到提升，网站的加载速度也可能会有一定的提升，对于源站的流量也能起到一定的节流作用。这些免费好用的功能使得很多公益或者爱好者站长会偏向于使用CloudFlare的免费服务，为CloudFlare吸引了很多用户。同时，付费升级计划还能让站长方便的使用更多网站甚至游戏相关的功能，诸多优点使得CloudFlare成为全球知名的CDN网络服务提供商。因此，你的上网冲浪免不了接触CloudFlare。&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;strong style=&quot;text-wrap: wrap;&quot;&gt;&lt;span style=&quot;font-size: 24px;&quot;&gt;什么是CloudFlare威胁分数，为什么我需要了解它？&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;&lt;strong style=&quot;text-wrap: wrap;&quot;&gt;&lt;span style=&quot;font-size: 24px;&quot;&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;前面我们分析得出，我们的上网冲浪是无法避免会和CloudFlare的服务打交道的。&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;而CloudFlare威胁分数，则会影响你的上网体验。为什么呢？这与CloudFlare的网络防护功能有关。&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;Cloudflare威胁分数是Cloudflare内部算法计算出来的一个数字，表示访问者的IP地址的信誉程度。威胁分数越高，表示该IP地址越有可能是恶意的或者参与过网络攻击。&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;如果你的IP对应的&lt;span style=&quot;text-wrap: wrap;&quot;&gt;Cloudflare威胁分数很高，你可能会面临频发的人机验证，甚至被拒绝服务。&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;&lt;strong style=&quot;text-wrap: wrap;&quot;&gt;&lt;span style=&quot;font-size: 24px;&quot;&gt;我如何知道我的IP地址的威胁分数是多少？&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;我们可以打开&lt;a href=&quot;https://cf.qn.md/&quot; target=&quot;_self&quot;&gt;https://cf.qn.md/&lt;/a&gt;这个网站来查看自己IP地址的威胁分数&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;&lt;strong style=&quot;text-wrap: wrap;&quot;&gt;&lt;span style=&quot;font-size: 24px;&quot;&gt;为什么我的IP地址对应的威胁分数很高？&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;&lt;strong style=&quot;text-wrap: wrap;&quot;&gt;&lt;span style=&quot;font-size: 24px;&quot;&gt;&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;可能你会很疑惑，我的IP地址对应的威胁分数为什么会很高呢？我威胁到了什么网站吗？&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;有可能是你电脑中了病毒，从而在你不知道的情况下威胁到了CloudFlare网络，但这个情况很极端，很少出现。&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;大部分的原因还是归咎于国内运营商分配给你的IP地址是随机的。为什么这么说？&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;首先运营商给你分配随机的IP，所以你拨号上网分配的IP可能是别人刚用过的。&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;如果恰好你刚分配到的IP被人以前恶意利用来攻击过CloudFlare的网络，那么这个IP的威胁分数便升高了。&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;而且运营商会强制每隔一段时间让你下线然后重新拨号，所以你可能都不知道你什么时候被重新分配了IP。&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;&lt;strong style=&quot;text-wrap: wrap;&quot;&gt;&lt;span style=&quot;font-size: 24px;&quot;&gt;我的IP地址威胁分数很高怎么办？&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-wrap: wrap;&quot;&gt;&lt;span style=&quot;background-color: rgba(255, 255, 255, 0.7); color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif;&quot;&gt;如果我们发现自己的IP地址的威胁分数很高，导致无法正常访问某些网站，我们可以尝试以下方法来降低它：&lt;/span&gt;&lt;/p&gt;&lt;ul style=&quot;margin-top: 12px; display: flex; flex-direction: column; gap: 10px; padding-inline-start: 24px; color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;重新拨号上网。由于国内拨号分配到的IP地址是随机的，运营商可能会强制你每隔一段时间重新拨号，可能就会让你分配到一个威胁分数比较高的IP。这时候你可以自己手动重新拨号，尝试获得一个威胁分数比较低的IP。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;使用代理服务。如果你无法改变自己的IP地址，或者你所在地区的IP地址都有较高的威胁分数，你可以考虑使用VPN或代理服务来改变你访问网站时使用的IP地址。但是要注意选择信誉良好和安全可靠的VPN或代理服务，否则可能会导致更高的威胁分数或者其他安全风险。&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;联系Cloudflare支持团队。如果你认为你的IP地址被错误地标记为高威胁分数，或者你有合理的理由需要访问某个使用了Cloudflare保护和加速的网站，你可以联系Cloudflare支持团队，并提供你的IP地址和遇到问题的网站，请求他们调整你的IP地址的威胁分数或者为你提供例外规则。&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;</description><pubDate>Sat, 15 Jul 2023 09:38:26 +0800</pubDate></item><item><title>Padavan如何手动安装Zerotier</title><link>https://blog.baiyun.work/?id=16</link><description>&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; word-break: break-word; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;Zerotier是一个开源的虚拟局域网软件，可以让不同地点的设备通过互联网连接到同一个网络中。对于路由器而言，安装了Zerotier的路由器有以下特别之处：&lt;/p&gt;&lt;ul style=&quot;margin-top: 12px; display: flex; flex-direction: column; gap: 10px; padding-inline-start: 24px; color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot; class=&quot; list-paddingleft-2&quot;&gt;&lt;li&gt;&lt;p&gt;可以远程管理路由器，无需公网IP或端口映射&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;可以访问路由器下的其他设备，如打印机、NAS等&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;可以在不同地点的设备之间传输文件，如手机和电脑&lt;/p&gt;&lt;/li&gt;&lt;li&gt;&lt;p&gt;可以在不同地点的设备之间玩局域网游戏，如魔兽争霸、CS等&lt;/p&gt;&lt;/li&gt;&lt;/ul&gt;&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; word-break: break-word; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;本文将介绍如何在Padavan固件的路由器上手动安装并配置Zerotier&lt;/p&gt;&lt;h2 style=&quot;padding: 0px; margin: 12px 0px 0px; user-select: text; word-break: break-word; font-size: var(--cib-type-title3-font-size); line-height: var(--cib-type-title3-line-height); font-weight: var(--cib-type-title3-font-weight); font-variation-settings: var(--cib-type-title3-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;&lt;strong&gt;安装Zerotier：&lt;/strong&gt;&lt;/span&gt;&lt;/h2&gt;&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; word-break: break-word; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;首先，我们需要使用opkg命令来安装Zerotier。&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;OPKG&lt;/span&gt;是一个轻量级的软件包管理器，可以让我们在路由器上安装各种应用程序。&lt;/p&gt;&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; word-break: break-word; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;在安装Zerotier之前，我们需要确保路由器已经安装了&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;OPKG软件包&lt;/span&gt;。&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;OPKG软件包&lt;/span&gt;是一个为嵌入式设备提供软件包的项目，可以让我们在路由器上使用更多的功能。&lt;/p&gt;&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; word-break: break-word; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;如果您还没有安装OPKG软件包，请参考&lt;a href=&quot;https://blog.baiyun.work/?id=15&quot; target=&quot;_blank&quot;&gt;这篇教程&lt;/a&gt;来完成安装。&lt;/p&gt;&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; word-break: break-word; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;如果您已经安装了&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;OPKG软件包&lt;/span&gt;，请&lt;span style=&quot;font-family: 微软雅黑, &amp;quot;Microsoft YaHei&amp;quot;;&quot;&gt;使用SSH客户端（如Putty）登录路由器，并执行以下命令：&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#更新软件包列表&lt;/p&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;opkg&amp;nbsp;update&lt;/pre&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#安装最新版的Zerotier&lt;/p&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;opkg&amp;nbsp;install&amp;nbsp;zerotier&lt;/pre&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;#更新Zerotier到最新版&lt;/p&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;opkg&amp;nbsp;upgrade&amp;nbsp;zerotier&lt;/pre&gt;&lt;p data-pid=&quot;uhx4njT8&quot; style=&quot;line-height: 21px; outline: none; font-family: &amp;quot;Microsoft YaHei&amp;quot;; font-size: 14px; font-variant-numeric: normal; font-variant-east-asian: normal; font-variant-alternates: normal; white-space: normal; margin-top: 1.4em; margin-bottom: 1.4em;&quot;&gt;&lt;span style=&quot;color:#121212;font-family:-apple-system, BlinkMacSystemFont, Helvetica Neue, PingFang SC, Microsoft YaHei, Source Han Sans SC, Noto Sans CJK SC, WenQuanYi Micro Hei, sans-serif;font-size:16px;line-height: 1.5; outline: none;&quot;&gt;&lt;span style=&quot;line-height: 24px;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;有时候，最新版的Zerotier可能不能在您的padavan系统上使用，您可以尝试更老的安装1.4.6的zerotier：&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;opkg&amp;nbsp;install&amp;nbsp;http://bin.entware.net/mipselsf-k3.4/archive/zerotier_1.4.6-5_mipsel-3.4.ipk&lt;/pre&gt;&lt;h2 style=&quot;text-wrap: wrap; padding: 0px; margin: 12px 0px 0px; user-select: text; word-break: break-word; font-size: var(--cib-type-title3-font-size); line-height: var(--cib-type-title3-line-height); font-weight: var(--cib-type-title3-font-weight); font-variation-settings: var(--cib-type-title3-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;&lt;strong&gt;启动并加入Zerotier网络：&lt;/strong&gt;&lt;/span&gt;&lt;/h2&gt;&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; word-break: break-word; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;安装好Zerotier后，我们需要启动它，并加入我们想要连接的Zerotier网络。&lt;/p&gt;&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; word-break: break-word; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;如果您还没有创建Zerotier网络，请参考&lt;a href=&quot;https://docs.zerotier.com/getting-started/getting-started/#create-your-first-zerotier-network&quot; target=&quot;_blank&quot;&gt;Zerotier官方文档&lt;/a&gt;来完成操作。&lt;/p&gt;&lt;p style=&quot;padding: 0px; margin-top: 12px; margin-bottom: 0px; user-select: text; word-break: break-word; line-height: var(--cib-type-body2-line-height); font-variation-settings: var(--cib-type-body2-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;如果您已经有一个Zerotier网络，请执行以下步骤来启动并加入：&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color:#111111;font-family:-apple-system, Roboto, SegoeUI, Segoe UI, Helvetica Neue, Helvetica, Microsoft YaHei, Meiryo UI, Meiryo, Arial Unicode MS, sans-serif&quot;&gt;&lt;span style=&quot;background-color: rgba(255, 255, 255, 0.7);&quot;&gt;首先运行zerotier服务，执行：&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;zerotier-one&amp;nbsp;-d&lt;/pre&gt;&lt;p&gt;然后使用以下指令加入&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;Zerotier网络&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;，需要替换&amp;lt;network ID&amp;gt;为自己创建或加入的网络ID&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;zerotier-cli&amp;nbsp;join&amp;nbsp;&amp;lt;network&amp;nbsp;ID&amp;gt;&lt;/pre&gt;&lt;p&gt;最后，请在Zerotier的网络控制台中同意你的路由器加入网络，并给它设置IP&lt;br/&gt;&lt;/p&gt;&lt;h2 style=&quot;text-wrap: wrap; padding: 0px; margin: 12px 0px 0px; user-select: text; word-break: break-word; font-size: var(--cib-type-title3-font-size); line-height: var(--cib-type-title3-line-height); font-weight: var(--cib-type-title3-font-weight); font-variation-settings: var(--cib-type-title3-font-variation-settings); color: rgb(17, 17, 17); font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;&lt;span style=&quot;font-size: 20px;&quot;&gt;&lt;strong&gt;设置防火墙规则：&lt;/strong&gt;&lt;/span&gt;&lt;/h2&gt;&lt;p&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;为了让Zerotier创建的虚拟网卡的流量能够正常进入路由器，我们需要调整防火墙规则，允许该网卡的流量通过。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;请执行以下步骤来调整防火墙规则：&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;1.使用SSH等工具，执行ifconfig指令，查看所有网卡信息&lt;/p&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;ifconfig&lt;/pre&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;2.在输出结果中找到Zerotier创建的虚拟网卡，记录下它的名称。例如，我的虚拟网卡名为&amp;quot;ztppi3ktqr&amp;quot;。&lt;/p&gt;&lt;p&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;3.找到Padavan的“高级设置”的“自定义设置”页，点击“脚本”栏，在“在防火墙规则启动后执行:”里加入下列命令（请把下面我的虚拟网卡名&lt;span style=&quot;text-wrap: wrap;&quot;&gt;替换&lt;/span&gt;为上一步你自己路由器生成的虚拟网卡名）&lt;br/&gt;&lt;/p&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;iptables&amp;nbsp;-A&amp;nbsp;INPUT&amp;nbsp;&amp;nbsp;-i&amp;nbsp;ztppi3ktqr&amp;nbsp;-j&amp;nbsp;ACCEPT&lt;/pre&gt;&lt;p&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;至此，我们已经完成了在Padavan固件的路由器上手动安装并配置Zerotier的过程。&lt;/span&gt;&lt;/p&gt;</description><pubDate>Sat, 15 Jul 2023 08:52:05 +0800</pubDate></item><item><title>Padavan固件如何手动安装OPKG</title><link>https://blog.baiyun.work/?id=15</link><description>&lt;p&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;Padavan是一款适用于部分路由器的第三方固件，它提供了丰富的功能和优化，比如科学上网、多拨、USB共享等。Padavan固件默认没有安装软件包管理器OPKG，而OPKG是一个类似于Linux系统中apt或yum的工具，可以方便地安装和管理各种软件包，比如Python、Node.js、Transmission等。有了OPKG，我们就可以让Padavan固件变得更加强大和灵活，实现更多的功能和需求。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;那么，为什么Padavan固件没有集成OPKG呢？其实，Padavan早期的固件是集成了OPKG于OPT中的，但是后来由于某些原因，取消了这个功能，需要用户手动开启 。可能是因为OPKG占用了一定的空间和资源，而Padavan固件本身就比较精简，为了节省空间和提高性能，就去掉了这个功能。不过，这并不影响我们在Padavan固件上使用OPKG，只需要通过SSH登录到路由器，然后执行以下命令：&lt;/span&gt;&lt;/p&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;wget&amp;nbsp;-O&amp;nbsp;-&amp;nbsp;http://bin.entware.net/mipselsf-k3.4/installer/generic.sh&amp;nbsp;|&amp;nbsp;/bin/sh&lt;/pre&gt;&lt;p&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;这个命令会从Entware源下载并运行一个安装脚本，自动完成OPKG的安装和配置。安装完成后，你就可以使用&lt;/span&gt;&lt;code style=&quot;white-space: pre-wrap; font-size: var(--cib-type-body1-font-size); line-height: var(--cib-type-body1-line-height); font-variation-settings: var(--cib-type-body1-font-variation-settings); margin: 0px 2px; padding: 1px 4px; box-sizing: border-box; border: 1px solid var(--cib-color-stroke-neutral-primary); border-radius: var(--cib-border-radius-medium); background-image: ; background-position-x: ; background-position-y: ; background-size: ; background-repeat-x: ; background-repeat-y: ; background-attachment: ; background-origin: ; background-clip: ; color: rgb(17, 17, 17);&quot;&gt;opkg&lt;/code&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;命令来安装和管理软件包了。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;如果在执行这个命令时提示&lt;/span&gt;&lt;code style=&quot;white-space: pre-wrap; font-size: var(--cib-type-body1-font-size); line-height: var(--cib-type-body1-line-height); font-variation-settings: var(--cib-type-body1-font-variation-settings); margin: 0px 2px; padding: 1px 4px; box-sizing: border-box; border: 1px solid var(--cib-color-stroke-neutral-primary); border-radius: var(--cib-border-radius-medium); background-image: ; background-position-x: ; background-position-y: ; background-size: ; background-repeat-x: ; background-repeat-y: ; background-attachment: ; background-origin: ; background-clip: ; color: rgb(17, 17, 17);&quot;&gt;wget: bad address &amp;#39;bin.entware.net&amp;#39;&lt;/code&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;，则说明你的路由器无法访问Entware源，可能需要设置HTTP代理。你可以使用以下命令来设置HTTP代理（假设你的代理服务器地址是192.168.123.111，端口是7890）：&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;pre class=&quot;brush:bash;toolbar:false&quot;&gt;export&amp;nbsp;http_proxy=&amp;quot;http://192.168.123.111:7890&amp;quot;&lt;/pre&gt;&lt;p&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;然后再重新执行上面的安装命令即可。&lt;/span&gt;&lt;span style=&quot;color: #111111; font-family: -apple-system, Roboto, SegoeUI, &amp;quot;Segoe UI&amp;quot;, &amp;quot;Helvetica Neue&amp;quot;, Helvetica, &amp;quot;Microsoft YaHei&amp;quot;, &amp;quot;Meiryo UI&amp;quot;, Meiryo, &amp;quot;Arial Unicode MS&amp;quot;, sans-serif; text-wrap: wrap; background-color: rgba(255, 255, 255, 0.7);&quot;&gt;&lt;/span&gt;&lt;br/&gt;&lt;/p&gt;</description><pubDate>Sat, 15 Jul 2023 08:43:49 +0800</pubDate></item><item><title>原创实用工具-windows系统端口工具</title><link>https://blog.baiyun.work/?id=14</link><description>&lt;p style=&quot;text-align: center;&quot;&gt;可能有些时候&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;我们会想要查看一下系统到底开放了哪些端口&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;甚至想看看占用了某一个端口的是那个进程&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;https://blog.baiyun.work/zb_users/plugin/Neditor/dialogs/emotion/images/jx2/j_0011.gif&quot; title=&quot;undefined&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;当然&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;如果你只是想要查看占用某一个端口的进程&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;你自己就可以做到&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;使用cmd命令：&lt;br/&gt;&lt;/p&gt;&lt;pre class=&quot;brush:ps;toolbar:false&quot; style=&quot;text-align: center;&quot;&gt;Netstat&amp;nbsp;–ano|findstr&amp;nbsp;“&amp;lt;端口号&amp;gt;”&lt;/pre&gt;&lt;p style=&quot;text-align: center;&quot;&gt;是的，如果你的需求仅仅是如此，你可以关闭本篇文章了&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;https://blog.baiyun.work/zb_users/plugin/Neditor/dialogs/emotion/images/jx2/j_0010.gif&quot; title=&quot;undefined&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;但是，如果你想要知道某一个经常在侦听哪些端口呢？&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;于是我开发了这款小工具&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;“白云系统端口工具”&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;https://blog.baiyun.work/zb_users/plugin/Neditor/dialogs/emotion/images/jx2/j_0003.gif&quot; title=&quot;undefined&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;使用本工具&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;你可以搜索指定的端口，指定的PID，指定的进程名&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;https://blog.baiyun.work/zb_users/plugin/Neditor/dialogs/emotion/images/jx2/j_0007.gif&quot; title=&quot;undefined&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;展示图：&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;https://blog.baiyun.work/zb_users/upload/2022/03/202203240010457855291.png&quot; style=&quot;&quot; title=&quot;QQ截图20220314011404.png&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;https://blog.baiyun.work/zb_users/upload/2022/03/202203240010504455597.png&quot; style=&quot;&quot; title=&quot;QQ截图20220314010937.png&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;下载地址：&lt;img src=&quot;https://blog.baiyun.work/zb_users/plugin/Neditor/dialogs/attachment/fileTypeImages/icon_rar.gif&quot; style=&quot;vertical-align: middle; margin-right: 2px;&quot;/&gt;&lt;a href=&quot;https://blog.baiyun.work/zb_users/upload/2024/06/202406270047355225786.zip&quot; title=&quot;白云-系统端口工具2.0.zip&quot; style=&quot;font-size: 12px; color: rgb(0, 102, 204);&quot;&gt;白云-系统端口工具2.0.zip&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;腾讯哈勃查毒链接：&lt;a href=&quot;https://habo.qq.com/file/showdetail?pk=ADcGb11tB2AIOFs6U2oHYQ&quot; target=&quot;_blank&quot; title=&quot;腾讯哈勃&quot;&gt;https://habo.qq.com/file/showdetail?pk=ADcGb11tB2AIOFs6U2oHYQ&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 14 Mar 2022 00:58:52 +0800</pubDate></item><item><title>奇奇怪怪！ 一个蛮怪的时间调整软件</title><link>https://blog.baiyun.work/?id=13</link><description>&lt;p style=&quot;text-align: center;&quot;&gt;Emm，怎么说呢&lt;img src=&quot;https://blog.baiyun.work/zb_users/plugin/Neditor/dialogs/emotion/images/jx2/j_0010.gif&quot; title=&quot;undefined&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;我们班的希沃教学机关闭不了北京时间同步&lt;img src=&quot;https://blog.baiyun.work/zb_users/plugin/Neditor/dialogs/emotion/images/tsj/t_0025.gif&quot; title=&quot;undefined&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;然后我们学校又从来都不用标准的北京时间&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;所以导致班级里的一体机一直和学校的时间都存在着一个时差&lt;/p&gt;&lt;p&gt;&lt;br/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;于是这个软件就诞生了&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;img src=&quot;https://blog.baiyun.work/zb_users/upload/2021/11/202111040127373765631.jpg&quot; alt=&quot;1.jpg&quot; title=&quot;1.jpg&quot;/&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;它会开机启动，同步北京时间后根据设置的时差对系统时间进行调整&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;嗯，大概就是这样一个奇怪的软件了&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;查毒链接：&lt;a href=&quot;https://habo.qq.com/file/showdetail?pk=ADQGb11pB2YIMVs6U2oHZg&quot; target=&quot;_blank&quot;&gt;https://habo.qq.com/file/showdetail?pk=ADQGb11pB2YIMVs6U2oHZg&lt;/a&gt;&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;下载：&lt;img src=&quot;https://blog.baiyun.work/zb_users/plugin/Neditor/dialogs/attachment/fileTypeImages/icon_rar.gif&quot; style=&quot;vertical-align: middle; margin-right: 2px;&quot;/&gt;&lt;a href=&quot;https://blog.baiyun.work/zb_users/upload/2024/02/202402111944188640251.zip&quot; title=&quot;白云校时大师.zip&quot; style=&quot;font-size: 12px; color: rgb(0, 102, 204);&quot;&gt;白云校时大师.zip&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 04 Nov 2021 01:16:26 +0800</pubDate></item><item><title>网易云网页播放器调用案例</title><link>https://blog.baiyun.work/?id=12</link><description>&lt;p style=&quot;text-align: center;&quot;&gt;&lt;strong&gt;&lt;span style=&quot;font-size: 24px; font-family: 微软雅黑, &amp;quot;Microsoft YaHei&amp;quot;;&quot;&gt;----单曲----&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;代码：&lt;/p&gt;&lt;pre class=&quot;brush:html;toolbar:false&quot;&gt;&amp;lt;iframe&amp;nbsp;frameborder=&amp;quot;no&amp;quot;&amp;nbsp;border=&amp;quot;0&amp;quot;&amp;nbsp;marginwidth=&amp;quot;0&amp;quot;&amp;nbsp;marginheight=&amp;quot;0&amp;quot;&amp;nbsp;width=&amp;quot;100%&amp;quot;&amp;nbsp;height=&amp;quot;86&amp;quot;&amp;nbsp;src=&amp;quot;https://music.163.com/outchain/player?type=2&amp;amp;id=1822082665&amp;amp;auto=1&amp;amp;height=66&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/pre&gt;&lt;p style=&quot;text-align: left;&quot;&gt;[已启用自动播放]&lt;/p&gt;&lt;p style=&quot;text-align: left;&quot;&gt;效果：&lt;/p&gt;&lt;p style=&quot;text-align: center;&quot;&gt;&lt;iframe frameborder=&quot;no&quot; border=&quot;0&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot; width=&quot;100%&quot; height=&quot;86&quot; src=&quot;https://music.163.com/outchain/player?type=2&amp;id=1822082665&amp;auto=1&amp;height=66&quot;&gt;&lt;/iframe&gt;&lt;strong style=&quot;text-align: center; white-space: normal;&quot;&gt;&lt;span style=&quot;font-size: 24px;&quot;&gt;----歌单----&lt;/span&gt;&lt;/strong&gt;&lt;/p&gt;&lt;p&gt;代码：&lt;/p&gt;&lt;pre class=&quot;brush:html;toolbar:false&quot;&gt;&amp;lt;iframe&amp;nbsp;src=&amp;quot;http://music.163.com/outchain/player?type=0&amp;amp;id=439899290&amp;amp;auto=0&amp;amp;height=430&amp;quot;&amp;nbsp;width=&amp;quot;100%&amp;quot;&amp;nbsp;height=&amp;quot;450&amp;quot;&amp;nbsp;frameborder=&amp;quot;no&amp;quot;&amp;nbsp;marginwidth=&amp;quot;0&amp;quot;&amp;nbsp;marginheight=&amp;quot;0&amp;quot;&amp;gt;&amp;lt;/iframe&amp;gt;&lt;/pre&gt;&lt;p&gt;[未启用自动播放]&lt;/p&gt;&lt;p&gt;效果：&lt;/p&gt;&lt;p&gt;&lt;iframe src=&quot;http://music.163.com/outchain/player?type=0&amp;id=439899290&amp;auto=0&amp;height=430&quot; width=&quot;100%&quot; height=&quot;450&quot; frameborder=&quot;no&quot; marginwidth=&quot;0&quot; marginheight=&quot;0&quot;&gt;&lt;/iframe&gt;&lt;/p&gt;</description><pubDate>Fri, 26 Feb 2021 02:48:07 +0800</pubDate></item></channel></rss>