2025年6月23日,免费V2Ray节点大放送!10个订阅地址+20个高速免费节点,VPN、WinXray、2rayNG、BifrostV、ClashMellow、Qv2ray等工具随时可用,享受高质量代理带来的畅快感受!clash飞机场, 科学上网翻墙无费获取节点, 免费上网梯子, 无费梯子, 免费代理
一、说明介绍与机场推荐
全球节点更新啦!涵盖美国、新加坡、加拿大、香港、欧洲、日本、韩国等地,提供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=56ea5497ce20e4ffd577802d9aaee684
https://so.xfxssr.me/api/v1/client/subscribe?token=162bcfbf4adbe9fd3a7fd7e996b3e199
https://so.xfxssr.me/api/v1/client/subscribe?token=86083d8f2c010e820dbbe769592096c0
https://so.xfxssr.me/api/v1/client/subscribe?token=5de95878d5da9d51c4d56d78e144a04e
https://so.xfxssr.me/api/v1/client/subscribe?token=c0e52da2ccfc9634eb4724143c3dc607
https://so.xfxssr.me/api/v1/client/subscribe?token=2143e8ce0b39b9e8bc807113e39f0443
https://so.xfxssr.me/api/v1/client/subscribe?token=651e4c2808578016a90466890f7d7a40
https://so.xfxssr.me/api/v1/client/subscribe?token=6c3fcc16ae61435b1012997180298ab4
https://so.xfxssr.me/api/v1/client/subscribe?token=75d0a39167ca4ac3407a5cd53df99e92
https://so.xfxssr.me/api/v1/client/subscribe?token=749696766d5062d8d3cfd1899ce25f58
测试速度超快,看油管4k无压力
200个免费节点分享
https://cloud.xfxdesk.com/s/b9xT6
分割线
如何设置 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)连接,避免断连。