2020年02月面板财务报表
Author Archive | minirplus
关于随机端口恢复至固定端口
最近因为适配Shadowrocket的节点信息显示,将端口改为随机端口,最近几天发现阻断较平时严重,遂决定恢复至固定端口,解决节点信息显示的方案将另外寻找
如何在Windows10中配合RAX200开启LACP
之前的方法已经在新版Windows10中失效,输入命令会显示
1 2 3 4 5 6 7 |
New-NetLbfoTeam : The LBFO feature is not currently enabled, or LBFO is not supported on this SKU. At line:1 char:1 + New-NetLbfoTeam NIC TEAMING -teamingMode LACP + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (MSFT_NetLbfoTeam:root/StandardCimv2/MSFT_NetLbfoTeam) [New-NetLbfoTeam], CimException + FullyQualifiedErrorId : MI RESULT 1,New-NetLbfoTeam |
根据Microsoft支持页面显示,目前新版Windows10已去除链路聚合功能,由第三方自行开发该功能。
订阅节点信息更新已恢复
之前关于Shadowrocket刷新订阅无法更新备注的问题中提到的因软件更新无法刷新节点使用情况的BUG已修复
Debian配置范围端口转发
配置转发
49152~65535 –> 989
1 |
iptables -t nat -A PREROUTING -p tcp --dport 49152:65535 -j REDIRECT --to-ports 989 |
验证
1 |
iptables -t nat -L --line-number |
开启ufw(不需要,因为iptables已绕过ufw)
1 |
ufw allow 49152:65535 |
删除
1 |
iptables -t nat -D PREROUTING 2 |