除夕和初一的两次IP阻断,让主服务器不得不更换IP,为了避免再次被阻断,准备使用中转。
- 主服务器:us.minirplus.com
- 中转服务器:tak.minirplus.com
设置中转
在中转机的user-config.json中增加1090端口的additional_ports和redirect配置
1 2 3 4 5 6 7 8 9 10 |
"additional_ports" : { "1090": { "passwd": "", "method": "", "protocol": "", "protocol_param": "#", "obfs": "", "obfs_param": "" }}, "redirect": ["*:1090#us.minirplus.com:1080"], |
*:1090表示中转对外开放1090端口,将所有流量转发到主服务器us.minirplus.com的1080端口
在中转机的ufw中增加规则打开1090端口
1 |
ufw allow 1090 |
接着在主服务器的ufw防火墙中增加规则,对中转机打开1080端口
1 |
ufw allow from 3.112.223.181 to any port 1080 |
3.112.223.181是中转服务器的IP,1080是中转中配置的端口
重启中转服务
在节点配置中,将原本的主服务器的配置中的服务器地址更换为中转机的配置,端口更换为中转机的端口,其余保持不变即可。
There are no comments yet