说明:网站服务器在国外的如果延迟很高,网络爆炸,会造成国内访问放慢,可以使用CDN
加速,自建教程查看:使用Nginx反向代理,自建CDN加速节点,不过设置方法对于新手很不友好,这里再说个方法,可以使用rinetd
转发端口来加速网站。当然也可以用来加速一些55r
等DaiL
。
安装
1、安装依赖
#CentOS系统
yum -y install gcc make
#Debian/Ubuntu系统
apt update
apt install gcc make -y
2、安装rinetd
#下载rinetd
wget https://boutell.com/rinetd/http/rinetd.tar.gz
#解压
tar -zxvf rinetd.tar.gz
#创建手册目录
mkdir -p /usr/man/man8
#进入目录
cd rinetd
#编译安装
make && make install
设置
接下来设置TCP
端口转发。
1、新建rinetd
配置文件
vi /etc/rinetd.conf
2、添加转发配置
#源IP一般填0.0.0.0
源IP 源端口 目标IP 目标端口
如果是转发https
网站,则填入下面参数,自行修改。
0.0.0.0 80 100.61.126.101 80
0.0.0.0 443 100.61.126.101 443
意思是将本地80/443
端口转发到100.61.126.101
的80/443
端口。
3、启动rinetd
rinetd -c /etc/rinetd.conf
启动后可以输入netstat -apn|grep 'rinetd'
查看是否运行正常。
注意还需要在自己服务器防火墙放行对应的源端口,否则无法正常使用用。
#防火墙关闭
service iptables stop
#CentOS 7
systemctl stop firewalld.service
systemctl disable firewalld.service
这时候可以修改本地host
文件,位置C:\Windows\System32\drivers\etc\hosts
,添加:
源IP 转发的网站
#如
100.600.100.101 moerats.com
打开网站测试下速度。如果没问题,效果不错,就可以更改网站的DNS
解析了,指向源IP
地址即可。
说明:如果加速网站,请使用延迟低的服务器转发,建议ping
下本地到源IP
延迟,和源IP
到目标IP
延迟,如果加起来延迟过高,效果不好,就别转了,浪费时间。如果效果好,建议2
个服务器都安装魔改BBR
。