Cloudflare CDN 关闭 IPv6

Cloudflare 关闭 IPv6,源站可以获取到用户客户端的真实IPv4地址,从而做一些处理。# 关闭 IPv6 curl -X PATCH "https://api.cloudflare.com/client/v4/zones/xxxxxxxxxx/settings/ipv6" \ -H "X-Auth-Email: yourmail@mail.com"

- 阅读全文 -

检测网络连通性 generate_204 服务地址大全

可用于检测当前网络的真实延迟。服务商连接备注Googlehttp://www.google-analytics.com/generate_204国外Googlehttp://www.google.com/generate_204国外Applehttp://captive.apple.com国外Cloudflarehttp://cp.cloudflare.com/国外小米http://connect

- 阅读全文 -

CentOS 安装 oh-my-zsh

第三方 shell 终端,美到极致,推荐娱乐和普通使用。1.安装 zshyum -y install zsh2.切换默认 shell 为 zshchsh -s /bin/zsh重启机器立即生效,也可以等切换主题后再 reboot 重启。3.安装 on my zshcurl sh -c "$(curl -fsSL https://raw.githubusercontent.com/robb

- 阅读全文 -

iptables 防火墙端口限速

某些 VPS 带宽长时间超速,容易引发厂商主动 QOS 甚至被短时间的断网。 使用 iptables 防火墙对端口进行适当程度的限速。需要安装 iptables,注意限速规则 Rule ,不要受到其他 Rule 规则的影响!iptables 8080端口限速命令:iptables -A OUTPUT -p tcp --sport 8080-m limit --limit 1000/s --lim

- 阅读全文 -