简介: Tor的路由主要分为3部分:网桥-中继-出口,也可以理解成入口节点-中间节点-出口节点,本文搭建的是入口节点 。
1、安装
apt -y update apt -y install tor obfs4proxy
2、配置Tor
nano /etc/tor/torrc
BridgeRelay 1 ORPort 9001 ServerTransportPlugin obfs4 exec /usr/bin/obfs4proxy ExtORPort auto # 这里的obfs4混淆使用随机端口,确保你的机器防火墙是关闭状态 ContactInfo [email protected] # 邮箱地址,用于联系节点维护人员 Nickname SB # 节点的昵称,可以自己随便填写 例如:
上面配置完成后,一个公开的tor节点就配置好了,当然如果你想要配置一个私人的节点,那你可以在上面配置的基础上再加几行:
PublishServerDescriptor 0
AccountingMax 100 GB #限制节点流量100G/月
AccountingStart month 1 00:00 #每月刷新流量
3、启动
配置完成之后重启tor/设置开机自启:
systemctl restart tor systemctl enable tor
4、验证
- 下载tor浏览器: https://www.torproject.org/download/
- 配置连接
打开浏览器,点击配置
- 如下填写节点信息,然后连接
- 现在我打开自己的博客站,查看详情,网桥就是我们搭建的tor网桥