2025年7月9号!共享免费的V2Ray节点,10个订阅地址,20个免费的高速节点,支持流行的Clash、V2rayN,秒速接入,终生免费 VPN,开启全新的网络体验,更容易获得优质的代理,免费梯子,更快更稳!Shadowsocks,Trojan机场,科技互联网爬墙,免费梯子,免费代理商,永久免费代理商

山猫分享

一、说明介绍与机场推荐

全球节点更新啦!涵盖美国、新加坡、加拿大、香港、欧洲、日本、韩国等地,提供10个全新订阅链接,轻松接入V2Ray/Clash/小火箭等科学上网工具,简单复制、粘贴即畅享全球网络自由!只需复制以下节点数据,导入或粘贴至v2ray/iso小火箭/winxray、2rayNG、BifrostV、Clash、Kitsunebi、V2rayN、V2rayW、Clash、V2rayS、Mellow、Qv2ray等科学上网工具,即可直接使用!

二,自用机场推荐

包月(不限时)最低5元起150GB流量:点我了解详情

同步电报群:https://t.me/xfxssr

永久发布页地址,防丢失https://sulinkcloud.github.io/

三,节点列表和测试速度

https://so.xfxssr.me/api/v1/client/subscribe?token=10c6aab8676a4f19aeff4869eff88ca3

https://so.xfxssr.me/api/v1/client/subscribe?token=a36c85c0119247dfa3ca9a53cdcfc221

https://so.xfxssr.me/api/v1/client/subscribe?token=1ebf3f2ed3f4fd39e249ddb7a937d95a

https://so.xfxssr.me/api/v1/client/subscribe?token=02fe3b9f010e2b683161c1af8ade68ee

https://so.xfxssr.me/api/v1/client/subscribe?token=44198fb238cf4aae2b596128a8f253f7

https://so.xfxssr.me/api/v1/client/subscribe?token=eb2890868a45cfb51ccd7b3d149eca0c

https://so.xfxssr.me/api/v1/client/subscribe?token=3ff73ade6145ca21da7fbb63871871e0

https://so.xfxssr.me/api/v1/client/subscribe?token=eb7b46efce42fb5045a654063224d3e2

https://so.xfxssr.me/api/v1/client/subscribe?token=56de383eb1b121023ad8a6fbd26f3931

https://so.xfxssr.me/api/v1/client/subscribe?token=f548798b1770723e474caae47e31789a

clash verge 测试速度超快,看油管4k无压力

200个免费节点分享

Cloudreve

分割线

如何设置 Linux 服务器防火墙(UFW)?

解答步骤:

检查 UFW 状态:

bash

sudo ufw status

若显示 “inactive”,需先启用:sudo ufw enable。

允许常用端口:

允许 SSH(22 端口):sudo ufw allow ssh

允许 HTTP(80)和 HTTPS(443):

bash

sudo ufw allow 80

sudo ufw allow 443

允许自定义端口(如 3306 MySQL):sudo ufw allow 3306/tcp

拒绝所有未授权访问:

bash

sudo ufw default deny incoming

sudo ufw default allow outgoing

查看规则并重启:

bash

sudo ufw rules

sudo systemctl restart ufw

临时禁用防火墙(调试时):

bash

sudo ufw disable

注意:生产环境禁用前需确保已通过其他方式(如 VPN)连接,避免断连。

评论

标题和URL已复制