利用 HaProxy 实现中继(中转/端口转发)加速
1.安装HaProxy
# Debian/Ubuntu系统:
apt-get -y install haproxy
# Centos系统:
yum -y install haproxy
2.配置文件
路径为:/etc/haproxy/haproxy.cfg
global
ulimit-n 51200
defaults
log global
mode tcp
option dontlognull
timeout connect 5000
timeout client 50000
timeout server 50000
frontend ss-in
bind *:nat机的端口
default_backend ss-out
backend ss-out
server server1 服务器IP:端口 maxconn 20480
(*)支持ipv6转发
3.相关命令
# 启动haproxy
/etc/init.d/haproxy start
# 停止haproxy
/etc/init.d/haproxy stop
# 如果你是 CentOS 7 系统,那么用这些命令:
# 启动haproxy
systemctl start haproxy.service
# 启动haproxy
systemctl stop haproxy.service
版权声明:
作者:亦灵一梦
链接:https://blog.haokaikai.cn/2020/jingpin/linuxabb/947.html
来源:开心博客
文章版权归作者所有,未经允许请勿转载。
THE END
1
二维码
海报
利用 HaProxy 实现中继(中转/端口转发)加速
1.安装HaProxy
# Debian/Ubuntu系统:
apt-get -y install haproxy
# Centos系统:
yum -y install haproxy
2.配置文件
路径为:/etc/haproxy/haproxy.cfg
gl……